Searched refs:errnum (Results 1 – 10 of 10) sorted by relevance
/tools/lib/traceevent/ |
D | tep_strerror.c | 30 enum tep_errno errnum, char *buf, size_t buflen) in tep_strerror() argument 38 if (errnum >= 0) { in tep_strerror() 39 int err = strerror_r(errnum, buf, buflen); in tep_strerror() 44 if (errnum <= __TEP_ERRNO__START || in tep_strerror() 45 errnum >= __TEP_ERRNO__END) in tep_strerror() 48 idx = errnum - __TEP_ERRNO__START - 1; in tep_strerror()
|
D | event-parse.h | 543 int tep_strerror(struct tep_handle *tep, enum tep_errno errnum,
|
/tools/perf/util/ |
D | target.c | 116 int target__strerror(struct target *target, int errnum, in target__strerror() argument 124 if (errnum >= 0) { in target__strerror() 125 str_error_r(errnum, buf, buflen); in target__strerror() 129 if (errnum < __TARGET_ERRNO__START || errnum >= __TARGET_ERRNO__END) in target__strerror() 132 idx = errnum - __TARGET_ERRNO__START; in target__strerror() 135 switch (errnum) { in target__strerror()
|
D | target.h | 50 int target__strerror(struct target *target, int errnum, char *buf, size_t buflen);
|
D | dso.c | 1350 int idx, errnum = dso->load_errno; in dso__strerror_load() local 1364 if (errnum >= 0) { in dso__strerror_load() 1365 const char *err = str_error_r(errnum, buf, buflen); in dso__strerror_load() 1373 if (errnum < __DSO_LOAD_ERRNO__START || errnum >= __DSO_LOAD_ERRNO__END) in dso__strerror_load() 1376 idx = errnum - __DSO_LOAD_ERRNO__START; in dso__strerror_load()
|
D | annotate.h | 382 int errnum, char *buf, size_t buflen);
|
D | annotate.c | 1601 int errnum, char *buf, size_t buflen) in symbol__strerror_disassemble() argument 1607 if (errnum >= 0) { in symbol__strerror_disassemble() 1608 str_error_r(errnum, buf, buflen); in symbol__strerror_disassemble() 1612 switch (errnum) { in symbol__strerror_disassemble() 1648 scnprintf(buf, buflen, "Internal error: Invalid %d error code\n", errnum); in symbol__strerror_disassemble()
|
/tools/lib/ |
D | str_error_r.c | 21 char *str_error_r(int errnum, char *buf, size_t buflen) in str_error_r() argument 23 int err = strerror_r(errnum, buf, buflen); in str_error_r() 25 snprintf(buf, buflen, "INTERNAL ERROR: strerror_r(%d, [buf], %zd)=%d", errnum, buflen, err); in str_error_r()
|
/tools/include/linux/ |
D | string.h | 31 char *str_error_r(int errnum, char *buf, size_t buflen);
|
/tools/testing/selftests/powerpc/tm/ |
D | tm-unavailable.c | 37 #define err_at_line(status, errnum, format, ...) \ argument 38 error_at_line(status, errnum, __FILE__, __LINE__, format ##__VA_ARGS__)
|