Lines Matching defs:errnum
10096 * associated with 'errnum'.
10129 #define DEBUG_STRERROR_ENTER(errnum, in_locale) \
10131 "my_strerror called with errnum %d;" \
10133 errnum, in_locale))
10161 Perl_my_strerror(pTHX_ const int errnum, utf8ness_t * utf8ness)
10165 DEBUG_STRERROR_ENTER(errnum, 0);
10167 const char *errstr = savepv(strerror_l(errnum, PL_C_locale_obj));
10185 Perl_my_strerror(pTHX_ const int errnum, utf8ness_t * utf8ness)
10189 DEBUG_STRERROR_ENTER(errnum, IN_LC(categories[WHICH_LC_INDEX]));
10196 const char *errstr = savepv(strerror_l(errnum, which_obj));
10210 Perl_my_strerror(pTHX_ const int errnum, utf8ness_t * utf8ness)
10214 DEBUG_STRERROR_ENTER(errnum, IN_LC(LC_MESSAGES));
10218 errstr = savepv(strerror_l(errnum, PL_C_locale_obj));
10227 errstr = savepv(strerror_l(errnum, cur));
10249 Perl_my_strerror(pTHX_ const int errnum, utf8ness_t * utf8ness)
10253 DEBUG_STRERROR_ENTER(errnum, 0);
10255 const char *errstr = savepv(Strerror(errnum));
10272 Perl_my_strerror(pTHX_ const int errnum, utf8ness_t * utf8ness)
10276 DEBUG_STRERROR_ENTER(errnum, IN_LC(categories[WHICH_LC_INDEX]));
10280 errstr = savepv(Strerror(errnum));
10291 errstr = savepv(Strerror(errnum));
10313 Perl_my_strerror(pTHX_ const int errnum, utf8ness_t * utf8ness)
10317 DEBUG_STRERROR_ENTER(errnum, IN_LC(LC_MESSAGES));
10330 const char *errstr = savepv(Strerror(errnum));