Searched refs:errnum (Results 1 – 7 of 7) sorted by relevance
/picolibc-latest/newlib/libc/string/ |
D | xpg_strerror_r.c | 9 __xpg_strerror_r (int errnum, 14 __xpg_strerror_r (int errnum, in __xpg_strerror_r() argument 23 error = _strerror_r (errnum, 1, &result); in __xpg_strerror_r()
|
D | strerrorlen_s.c | 40 strerrorlen_s(__errno_t errnum) in strerrorlen_s() argument 42 return strnlen_s(_strerror_r(errnum, 0, NULL), MAX_ERROR_MSG); in strerrorlen_s()
|
D | strerror.c | 410 int errnum, in _strerror_r() argument 416 switch (errnum) in _strerror_r() 906 if (&_user_strerror == NULL || (error = _user_strerror (errnum, internal, errptr)) == 0) in _strerror_r() 915 strerror (int errnum) in strerror() argument 917 return _strerror_r (errnum, 0, NULL); in strerror() 921 strerror_l (int errnum, locale_t locale) in strerror_l() argument 925 return _strerror_r (errnum, 0, NULL); in strerror_l()
|
D | strerror_r.c | 70 strerror_r (int errnum, in strerror_r() argument 74 char *error = _strerror_r (errnum, 1, NULL); in strerror_r()
|
D | strerror_s.c | 43 strerror_s(char *buf, rsize_t buflen, __errno_t errnum) in strerror_s() argument 58 const char *cp = _strerror_r(errnum, 0, NULL); in strerror_s()
|
D | string_private.h | 42 char *_strerror_r(int errnum, int internal, int *errptr);
|
/picolibc-latest/newlib/libc/include/sys/ |
D | errno.h | 42 _user_strerror (int errnum,
|