Lines Matching defs:context
53 static pa_context *context = NULL;
76 context = pa_context_new(api, name);
77 fail_unless(context != NULL);
79 pa_context_set_state_callback(context, context_state_callback, try);
81 /* Connect the context */
82 if (pa_context_connect(context, NULL, 0, NULL) < 0) {
95 fail_unless(context != NULL);
106 pa_context_disconnect(context);
107 context = NULL;
187 pa_context_unref(context);
188 context = NULL;