Searched refs:uselocale (Results 1 - 25 of 54) sorted by relevance

123

/illumos-gate/usr/src/lib/libc/port/locale/
H A Dmbsinit.c30 return (mbsinit_l(s, uselocale(NULL)));
H A Dtolower.c41 return (isascii(c) ? __trans_lower[c] : tolower_l(c, uselocale(NULL)));
48 return (isascii(c) ? __trans_upper[c] : toupper_l(c, uselocale(NULL)));
H A Dbtowc.c60 return (btowc_l(c, uselocale(NULL)));
H A Dmblen.c56 return (mblen_l(s, n, uselocale(NULL)));
H A Dtowlower.c90 change_case_ext(uselocale(NULL), wc, 1) :
91 uselocale(NULL)->runelocale->__maplower[wc]);
109 change_case_ext(uselocale(NULL), wc, 0) :
110 uselocale(NULL)->runelocale->__mapupper[wc]);
H A Dwcswidth.c63 return (wcswidth_l(pwcs, n, uselocale(NULL)));
H A Dwctob.c52 return (wctob_l(c, uselocale(NULL)));
H A Dwctomb.c54 return (wctomb_l(s, wchar, uselocale(NULL)));
H A Dfgetwc.c100 return (_fgetwc_unlocked_l(fp, uselocale(NULL)));
114 locale_t loc = uselocale(NULL);
133 locale_t loc = uselocale(NULL);
H A Dmbrlen.c49 return (mbrlen_l(s, n, ps, uselocale(NULL)));
H A Dmbrtowc.c50 return (mbrtowc_l(pwc, s, n, ps, uselocale(NULL)));
H A Dmbsrtowcs.c54 return (mbsrtowcs_l(dst, src, len, ps, uselocale(NULL)));
H A Dmbstowcs.c52 return (mbstowcs_l(pwcs, s, n, uselocale(NULL)));
H A Dmbtowc.c56 return (mbtowc_l(pwc, s, n, uselocale(NULL)));
H A Dwcrtomb.c51 return (wcrtomb_l(s, wc, ps, uselocale(NULL)));
H A Dwcsrtombs.c53 return (wcsrtombs_l(dst, src, len, ps, uselocale(NULL)));
H A Dwcstombs.c53 return (wcstombs_l(s, pwcs, n, uselocale(NULL)));
H A Dwcwidth.c72 return (wcwidth_l(wc, uselocale(NULL)));
H A Dwctrans.c64 return (towctrans_l(wc, desc, uselocale(NULL)));
97 return (wctrans_l(charclass, uselocale(NULL)));
H A Dwcscasecmp.c62 return (wcscasecmp_l(s1, s2, uselocale(NULL)));
83 return (wcsncasecmp_l(s1, s2, n, uselocale(NULL)));
H A Dstrcasecmp.c72 /* would be nice to avoid uselocale()... but I don't see how */
73 return (strcasecmp_l(s1, s2, uselocale(NULL)));
H A Dstrcasestr.c78 return (strcasestr_l(s1, s2, uselocale(NULL)));
/illumos-gate/usr/src/test/libc-tests/tests/priv_gettext/
H A Dpriv_gettext.c68 (void) uselocale(loc);
71 (void) uselocale(LC_GLOBAL_LOCALE);
80 (void) uselocale(loc);
83 (void) uselocale(LC_GLOBAL_LOCALE);
/illumos-gate/usr/src/test/libc-tests/tests/catopen/
H A Dcatopen.c67 (void) uselocale(loc);
70 (void) uselocale(LC_GLOBAL_LOCALE);
81 (void) uselocale(loc);
/illumos-gate/usr/src/test/libc-tests/tests/strerror/
H A Dstrerror.c37 * + strerror() honors the global locale before uselocale
88 (void) uselocale(loc);
93 (void) uselocale(LC_GLOBAL_LOCALE);

Completed in 79 milliseconds

123