Lines Matching defs:error
33 #include "error.h"
35 const char*pa_strerror(int error) {
45 [PA_ERR_PROTOCOL] = N_("Protocol error"),
48 [PA_ERR_INTERNAL] = N_("Internal error"),
58 [PA_ERR_UNKNOWN] = N_("Unknown error code"),
63 [PA_ERR_IO] = N_("Input/Output error"),
69 if (error < 0)
70 error = -error;
72 if (error >= PA_ERR_MAX)
75 return _(errortab[error]);