Lines Matching defs:context
25 #include <pulse/context.h>
156 pa_context *context;
255 pa_context *context;
298 #define PA_CHECK_VALIDITY(context, expression, error) \
301 return -pa_context_set_error((context), (error)); \
304 #define PA_CHECK_VALIDITY_RETURN_ANY(context, expression, error, value) \
307 pa_context_set_error((context), (error)); \
312 #define PA_CHECK_VALIDITY_RETURN_NULL(context, expression, error) \
313 PA_CHECK_VALIDITY_RETURN_ANY(context, expression, error, NULL)
315 #define PA_FAIL(context, error) \
317 return -pa_context_set_error((context), (error)); \
320 #define PA_FAIL_RETURN_ANY(context, error, value) \
322 pa_context_set_error((context), (error)); \
326 #define PA_FAIL_RETURN_NULL(context, error) \
327 PA_FAIL_RETURN_ANY(context, error, NULL)