Home
last modified time | relevance | path

Searched refs:errnum (Results 1 – 12 of 12) sorted by relevance

/linux-4.4.14/tools/perf/util/
Dtarget.c115 int target__strerror(struct target *target, int errnum, in target__strerror() argument
123 if (errnum >= 0) { in target__strerror()
124 const char *err = strerror_r(errnum, buf, buflen); in target__strerror()
132 if (errnum < __TARGET_ERRNO__START || errnum >= __TARGET_ERRNO__END) in target__strerror()
135 idx = errnum - __TARGET_ERRNO__START; in target__strerror()
138 switch (errnum) { in target__strerror()
Dtarget.h49 int target__strerror(struct target *target, int errnum, char *buf, size_t buflen);
Ddso.c1338 int idx, errnum = dso->load_errno; in dso__strerror_load() local
1352 if (errnum >= 0) { in dso__strerror_load()
1353 const char *err = strerror_r(errnum, buf, buflen); in dso__strerror_load()
1361 if (errnum < __DSO_LOAD_ERRNO__START || errnum >= __DSO_LOAD_ERRNO__END) in dso__strerror_load()
1364 idx = errnum - __DSO_LOAD_ERRNO__START; in dso__strerror_load()
/linux-4.4.14/drivers/edac/
Di7300_edac.c357 u32 errnum, error_reg; in i7300_process_error_global() local
369 errnum = find_first_bit(&errors, in i7300_process_error_global()
371 specific = GET_ERR_FROM_TABLE(ferr_global_hi_name, errnum); in i7300_process_error_global()
372 is_fatal = ferr_global_hi_is_fatal(errnum); in i7300_process_error_global()
385 errnum = find_first_bit(&errors, in i7300_process_error_global()
387 specific = GET_ERR_FROM_TABLE(ferr_global_lo_name, errnum); in i7300_process_error_global()
388 is_fatal = ferr_global_lo_is_fatal(errnum); in i7300_process_error_global()
412 u32 errnum, value, error_reg; in i7300_process_fbd_error() local
428 errnum = find_first_bit(&errors, in i7300_process_fbd_error()
430 specific = GET_ERR_FROM_TABLE(ferr_fat_fbd_name, errnum); in i7300_process_fbd_error()
[all …]
Di5400_edac.c523 int errnum; in i5400_proccess_non_recoverable_info() local
556 errnum = find_first_bit(&allErrors, ARRAY_SIZE(error_name)); in i5400_proccess_non_recoverable_info()
561 bank, buf_id, ras, cas, allErrors, error_name[errnum]); in i5400_proccess_non_recoverable_info()
587 int errnum; in i5400_process_nonfatal_error_info() local
622 errnum = find_first_bit(&allErrors, ARRAY_SIZE(error_name)); in i5400_process_nonfatal_error_info()
633 allErrors, error_name[errnum]); in i5400_process_nonfatal_error_info()
644 errnum = find_first_bit(&allErrors, ARRAY_SIZE(error_name)); in i5400_process_nonfatal_error_info()
650 branch >> 1, allErrors, error_name[errnum]); in i5400_process_nonfatal_error_info()
Di7core_edac.c1713 u32 errnum = find_first_bit(&error, 32); in i7core_mce_output_error() local
1745 switch (errnum) { in i7core_mce_output_error()
/linux-4.4.14/drivers/staging/lustre/include/linux/libcfs/
Dlibcfs_debug.h239 #define LCONSOLE_ERROR_MSG(errnum, format, ...) CDEBUG_LIMIT(D_CONSOLE | D_ERROR, \ argument
240 "%x-%x: " format, errnum, LERRCHKSUM(errnum), ## __VA_ARGS__)
/linux-4.4.14/include/xen/interface/io/
Dxs_wire.h43 int errnum; member
/linux-4.4.14/sound/isa/wavefront/
Dwavefront_synth.c232 wavefront_errorstr (int errnum) in wavefront_errorstr() argument
238 if (wavefront_errors[i].errno == errnum) { in wavefront_errorstr()
/linux-4.4.14/tools/lib/traceevent/
Devent-parse.h710 int pevent_strerror(struct pevent *pevent, enum pevent_errno errnum,
Devent-parse.c6033 enum pevent_errno errnum, char *buf, size_t buflen) in pevent_strerror() argument
6038 if (errnum >= 0) { in pevent_strerror()
6039 msg = strerror_r(errnum, buf, buflen); in pevent_strerror()
6048 if (errnum <= __PEVENT_ERRNO__START || in pevent_strerror()
6049 errnum >= __PEVENT_ERRNO__END) in pevent_strerror()
6052 idx = errnum - __PEVENT_ERRNO__START - 1; in pevent_strerror()
/linux-4.4.14/drivers/xen/xenbus/
Dxenbus_xs.c140 return xsd_errors[i].errnum; in get_error()