Symbol: locale_t
include/ctype.h
100
int isgraph_l(int, locale_t);
include/ctype.h
101
int islower_l(int, locale_t);
include/ctype.h
102
int isprint_l(int, locale_t);
include/ctype.h
103
int ispunct_l(int, locale_t);
include/ctype.h
104
int isspace_l(int, locale_t);
include/ctype.h
105
int isupper_l(int, locale_t);
include/ctype.h
106
int isxdigit_l(int, locale_t);
include/ctype.h
107
int tolower_l(int, locale_t);
include/ctype.h
108
int toupper_l(int, locale_t);
include/ctype.h
221
isalnum_l(int _c, locale_t _l __attribute__((__unused__)))
include/ctype.h
227
isalpha_l(int _c, locale_t _l __attribute__((__unused__)))
include/ctype.h
233
isblank_l(int _c, locale_t _l __attribute__((__unused__)))
include/ctype.h
239
iscntrl_l(int _c, locale_t _l __attribute__((__unused__)))
include/ctype.h
245
isdigit_l(int _c, locale_t _l __attribute__((__unused__)))
include/ctype.h
251
isgraph_l(int _c, locale_t _l __attribute__((__unused__)))
include/ctype.h
257
islower_l(int _c, locale_t _l __attribute__((__unused__)))
include/ctype.h
263
isprint_l(int _c, locale_t _l __attribute__((__unused__)))
include/ctype.h
269
ispunct_l(int _c, locale_t _l __attribute__((__unused__)))
include/ctype.h
275
isspace_l(int _c, locale_t _l __attribute__((__unused__)))
include/ctype.h
281
isupper_l(int _c, locale_t _l __attribute__((__unused__)))
include/ctype.h
287
isxdigit_l(int _c, locale_t _l __attribute__((__unused__)))
include/ctype.h
293
tolower_l(int _c, locale_t _l __attribute__((__unused__)))
include/ctype.h
299
toupper_l(int _c, locale_t _l __attribute__((__unused__)))
include/ctype.h
95
int isalnum_l(int, locale_t);
include/ctype.h
96
int isalpha_l(int, locale_t);
include/ctype.h
97
int isblank_l(int, locale_t);
include/ctype.h
98
int iscntrl_l(int, locale_t);
include/ctype.h
99
int isdigit_l(int, locale_t);
include/langinfo.h
84
char *nl_langinfo_l(nl_item, locale_t);
include/locale.h
105
locale_t duplocale(locale_t);
include/locale.h
106
void freelocale(locale_t);
include/locale.h
107
locale_t newlocale(int, const char *, locale_t);
include/locale.h
108
locale_t uselocale(locale_t);
include/locale.h
95
#define LC_GLOBAL_LOCALE ((locale_t)-1)
include/string.h
112
int strcoll_l(const char *, const char *, locale_t);
include/string.h
113
char *strerror_l(int, locale_t);
include/string.h
117
size_t strxfrm_l(char *__restrict, const char *__restrict, size_t, locale_t)
include/strings.h
78
int strcasecmp_l(const char *, const char *, locale_t);
include/strings.h
79
int strncasecmp_l(const char *, const char *, size_t, locale_t);
include/time.h
161
const struct tm *__restrict, locale_t)
include/wchar.h
175
int wcscoll_l(const wchar_t *, const wchar_t *, locale_t);
include/wchar.h
178
int wcscasecmp_l(const wchar_t *, const wchar_t *, locale_t);
include/wchar.h
181
int wcsncasecmp_l(const wchar_t *, const wchar_t *, size_t, locale_t);
include/wchar.h
182
size_t wcsxfrm_l(wchar_t *, const wchar_t *, size_t, locale_t);
include/wctype.h
100
wint_t towupper_l(wint_t, locale_t);
include/wctype.h
101
wctrans_t wctrans_l(const char *, locale_t);
include/wctype.h
102
wctype_t wctype_l(const char *, locale_t);
include/wctype.h
85
int iswalnum_l(wint_t, locale_t);
include/wctype.h
86
int iswalpha_l(wint_t, locale_t);
include/wctype.h
87
int iswblank_l(wint_t, locale_t);
include/wctype.h
88
int iswcntrl_l(wint_t, locale_t);
include/wctype.h
89
int iswdigit_l(wint_t, locale_t);
include/wctype.h
90
int iswgraph_l(wint_t, locale_t);
include/wctype.h
91
int iswlower_l(wint_t, locale_t);
include/wctype.h
92
int iswprint_l(wint_t, locale_t);
include/wctype.h
93
int iswpunct_l(wint_t, locale_t);
include/wctype.h
94
int iswspace_l(wint_t, locale_t);
include/wctype.h
95
int iswupper_l(wint_t, locale_t);
include/wctype.h
96
int iswxdigit_l(wint_t, locale_t);
include/wctype.h
97
int iswctype_l(wint_t, wctype_t, locale_t);
include/wctype.h
98
wint_t towctrans_l(wint_t, wctrans_t, locale_t);
include/wctype.h
99
wint_t towlower_l(wint_t, locale_t);
lib/libc/hidden/ctype.h
46
__only_inline int isalnum_l(int _c, locale_t _l);
lib/libc/hidden/ctype.h
47
__only_inline int isalpha_l(int _c, locale_t _l);
lib/libc/hidden/ctype.h
48
__only_inline int iscntrl_l(int _c, locale_t _l);
lib/libc/hidden/ctype.h
49
__only_inline int isdigit_l(int _c, locale_t _l);
lib/libc/hidden/ctype.h
50
__only_inline int isgraph_l(int _c, locale_t _l);
lib/libc/hidden/ctype.h
51
__only_inline int islower_l(int _c, locale_t _l);
lib/libc/hidden/ctype.h
52
__only_inline int isprint_l(int _c, locale_t _l);
lib/libc/hidden/ctype.h
53
__only_inline int ispunct_l(int _c, locale_t _l);
lib/libc/hidden/ctype.h
54
__only_inline int isspace_l(int _c, locale_t _l);
lib/libc/hidden/ctype.h
55
__only_inline int isupper_l(int _c, locale_t _l);
lib/libc/hidden/ctype.h
56
__only_inline int isxdigit_l(int _c, locale_t _l);
lib/libc/hidden/ctype.h
57
__only_inline int tolower_l(int _c, locale_t _l);
lib/libc/hidden/ctype.h
58
__only_inline int toupper_l(int _c, locale_t _l);
lib/libc/hidden/ctype.h
59
__only_inline int isblank_l(int _c, locale_t _l);
lib/libc/locale/duplocale.c
23
locale_t
lib/libc/locale/duplocale.c
24
duplocale(locale_t oldloc)
lib/libc/locale/freelocale.c
10
freelocale(locale_t oldloc __attribute((__unused__)))
lib/libc/locale/isctype_l.c
105
isxdigit_l(int c, locale_t locale __attribute__((__unused__)))
lib/libc/locale/isctype_l.c
112
tolower_l(int c, locale_t locale __attribute__((__unused__)))
lib/libc/locale/isctype_l.c
119
toupper_l(int c, locale_t locale __attribute__((__unused__)))
lib/libc/locale/isctype_l.c
28
isalnum_l(int c, locale_t locale __attribute__((__unused__)))
lib/libc/locale/isctype_l.c
35
isalpha_l(int c, locale_t locale __attribute__((__unused__)))
lib/libc/locale/isctype_l.c
42
isblank_l(int c, locale_t locale __attribute__((__unused__)))
lib/libc/locale/isctype_l.c
49
iscntrl_l(int c, locale_t locale __attribute__((__unused__)))
lib/libc/locale/isctype_l.c
56
isdigit_l(int c, locale_t locale __attribute__((__unused__)))
lib/libc/locale/isctype_l.c
63
isgraph_l(int c, locale_t locale __attribute__((__unused__)))
lib/libc/locale/isctype_l.c
70
islower_l(int c, locale_t locale __attribute__((__unused__)))
lib/libc/locale/isctype_l.c
77
isprint_l(int c, locale_t locale __attribute__((__unused__)))
lib/libc/locale/isctype_l.c
84
ispunct_l(int c, locale_t locale __attribute__((__unused__)))
lib/libc/locale/isctype_l.c
91
isspace_l(int c, locale_t locale __attribute__((__unused__)))
lib/libc/locale/isctype_l.c
98
isupper_l(int c, locale_t locale __attribute__((__unused__)))
lib/libc/locale/iswctype_l.c
101
iswcntrl_l(wint_t c, locale_t locale)
lib/libc/locale/iswctype_l.c
107
iswdigit_l(wint_t c, locale_t locale)
lib/libc/locale/iswctype_l.c
113
iswgraph_l(wint_t c, locale_t locale)
lib/libc/locale/iswctype_l.c
119
iswlower_l(wint_t c, locale_t locale)
lib/libc/locale/iswctype_l.c
125
iswprint_l(wint_t c, locale_t locale)
lib/libc/locale/iswctype_l.c
131
iswpunct_l(wint_t c, locale_t locale)
lib/libc/locale/iswctype_l.c
137
iswspace_l(wint_t c, locale_t locale)
lib/libc/locale/iswctype_l.c
143
iswupper_l(wint_t c, locale_t locale)
lib/libc/locale/iswctype_l.c
149
iswxdigit_l(wint_t c, locale_t locale)
lib/libc/locale/iswctype_l.c
155
towupper_l(wint_t c, locale_t locale)
lib/libc/locale/iswctype_l.c
161
towlower_l(wint_t c, locale_t locale)
lib/libc/locale/iswctype_l.c
168
wctrans_l(const char *charclass, locale_t locale)
lib/libc/locale/iswctype_l.c
192
locale_t locale __attribute__((__unused__)))
lib/libc/locale/iswctype_l.c
198
iswctype_l(wint_t c, wctype_t charclass, locale_t locale)
lib/libc/locale/iswctype_l.c
50
static _RuneLocale *__runelocale(locale_t);
lib/libc/locale/iswctype_l.c
51
static int __isctype_wl(wint_t, _RuneType, locale_t);
lib/libc/locale/iswctype_l.c
59
__runelocale(locale_t locale)
lib/libc/locale/iswctype_l.c
72
__isctype_wl(wint_t c, _RuneType f, locale_t locale)
lib/libc/locale/iswctype_l.c
83
iswalnum_l(wint_t c, locale_t locale)
lib/libc/locale/iswctype_l.c
89
iswalpha_l(wint_t c, locale_t locale)
lib/libc/locale/iswctype_l.c
95
iswblank_l(wint_t c, locale_t locale)
lib/libc/locale/newlocale.c
24
locale_t
lib/libc/locale/newlocale.c
25
newlocale(int mask, const char *locname, locale_t oldloc)
lib/libc/locale/nl_langinfo_l.c
24
nl_langinfo_l(nl_item item, locale_t locale)
lib/libc/locale/rune.h
44
#define _LOCALE_NONE (locale_t)0
lib/libc/locale/rune.h
45
#define _LOCALE_C (locale_t)1
lib/libc/locale/rune.h
46
#define _LOCALE_UTF8 (locale_t)2
lib/libc/locale/uselocale.c
24
locale_t
lib/libc/locale/uselocale.c
25
uselocale(locale_t newloc)
lib/libc/locale/wcscoll_l.c
14
locale_t locale __attribute__((__unused__)))
lib/libc/locale/wcsxfrm_l.c
11
locale_t locale __attribute__((__unused__)))
lib/libc/locale/wctype.c
72
wctype_l(const char *property, locale_t locale __attribute__((__unused__)))
lib/libc/string/strcasecmp_l.c
11
locale_t locale __attribute__((__unused__)))
lib/libc/string/strcasecmp_l.c
18
locale_t locale __attribute__((__unused__)))
lib/libc/string/strcoll_l.c
11
locale_t locale __attribute__((__unused__)))
lib/libc/string/strerror_l.c
24
strerror_l(int errnum, locale_t locale)
lib/libc/string/strxfrm_l.c
11
locale_t locale __attribute__((__unused__)))
lib/libc/string/wcscasecmp_l.c
33
wcscasecmp_l(const wchar_t *s1, const wchar_t *s2, locale_t locale)
lib/libc/string/wcscasecmp_l.c
47
wcsncasecmp_l(const wchar_t *s1, const wchar_t *s2, size_t n, locale_t locale)
lib/libc/time/strftime_l.c
11
locale_t locale __attribute__((__unused__)))
regress/lib/libc/locale/uselocale/uselocale.c
108
#define FUNCPARA nl_item item, locale_t locale
regress/lib/libc/locale/uselocale/uselocale.c
117
#define FUNCPARA int c, locale_t locale
regress/lib/libc/locale/uselocale/uselocale.c
127
#define FUNCPARA wint_t wc, locale_t locale
regress/lib/libc/locale/uselocale/uselocale.c
136
#define FUNCPARA wint_t wc, wctype_t charclass, locale_t locale
regress/lib/libc/locale/uselocale/uselocale.c
144
#define FUNCPARA wint_t wc, wctrans_t charmap, locale_t locale
regress/lib/libc/locale/uselocale/uselocale.c
152
#define FUNCPARA const wchar_t *s1, const wchar_t *s2, locale_t locale
regress/lib/libc/locale/uselocale/uselocale.c
161
locale_t locale
regress/lib/libc/locale/uselocale/uselocale.c
30
#define _LOCALE_NONE (locale_t)0
regress/lib/libc/locale/uselocale/uselocale.c
31
#define _LOCALE_C (locale_t)1
regress/lib/libc/locale/uselocale/uselocale.c
32
#define _LOCALE_UTF8 (locale_t)2
regress/lib/libc/locale/uselocale/uselocale.c
33
#define _LOCALE_BAD (locale_t)3
regress/lib/libc/locale/uselocale/uselocale.c
93
TESTFUNC(newlocale, locale_t, "%d, %s, %p", "%p", TOPT_ERR)
regress/lib/libc/locale/uselocale/uselocale.c
95
#define FUNCPARA locale_t locale
regress/lib/libc/locale/uselocale/uselocale.c
97
TESTFUNC(duplocale, locale_t, "%p", "%p", TOPT_ERR)
regress/lib/libc/locale/uselocale/uselocale.c
98
TESTFUNC(uselocale, locale_t, "%p", "%p", TOPT_ERR)