Lines Matching defs:error
65 int error;
93 pa_context_error *error;
288 void pa_context_fail(pa_context *c, int error);
289 int pa_context_set_error(const pa_context *c, int error);
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)