/src/distrib/utils/libhack/ |
setlocale.c | 21 setlocale(category, locale) 22 int category; 25 if (category < 0 || category >= _LC_LAST)
|
/src/lib/libc/compat/arch/hppa/locale/ |
compat_setlocale32.c | 46 __setlocale_mb_len_max_32(int category, const char *locale) 52 return __setlocale(category, locale);
|
/src/lib/libc/compat/include/ |
locale.h | 47 compat_setlocale(int category, const char *locale) __RENAME(setlocale);
|
/src/lib/libc/compat/locale/ |
compat_setlocale1.c | 48 compat_setlocale(int category, const char *locale) 54 return __setlocale(category, locale);
|
compat_setlocale32.c | 54 __setlocale_mb_len_max_32(int category, const char *locale) 60 return __setlocale(category, locale);
|
/src/lib/libintl/ |
libintl.h | 43 #define dcpgettext_expr(domainname, msgctxt, msgid, category) \ 44 dcpgettext((domainname), (msgctxt), (msgid), (category)) 49 #define dcnpgettext_expr(domainname, msgctxt, msgid1, msgid2, n, category) \ 50 dcnpgettext((domainname), (msgctxt), (msgid1), (msgid2), (n), (category))
|
gettext.c | 97 dcgettext(const char *domainname, const char *msgid, int category) 100 return dcngettext(domainname, msgid, NULL, 1UL, category); 134 int category) 137 return pgettext_impl(domainname, msgctxt, msgid, NULL, 1UL, category); 158 const char *msgid2, unsigned long int n, int category) 161 return pgettext_impl(domainname, msgctxt, msgid1, msgid2, n, category); 166 const char *msgid2, unsigned long int n, int category) 176 msgid2, n, category); 192 * lookup internationalized message on database locale/category/domainname 204 * domainname. category is usually LC_MESSAGES [all...] |
/src/lib/libc/locale/ |
setlocale.c | 137 _find_category(int category) 149 if (category >= LC_ALL && category < _LC_LAST) 150 return all_categories[category]; 155 _get_locale_env(const char *category) 163 name = (const char *)getenv(category); 176 __setlocale(int category, const char *name) 183 sl = _find_category(category); 196 setlocale(int category, const char *locale) 202 return __setlocale(category, locale) [all...] |
nl_langinfo.c | 180 int category; local in function:nl_langinfo_l 186 category = langinfo_category[item]; 187 if (category == 0) 191 memcpy(&s, (char *)loc->part_impl[category] + offset, sizeof(s));
|
/src/usr.bin/mklocale/ |
mklocaledb.c | 230 const category_t *category = NULL; local in function:mklocaledb 243 category = &lc_monetary; 245 category = &lc_numeric; 247 category = &lc_time; 249 category = &lc_messages; 256 if (_db_factory_add32_by_s(df, category->vers_sym, category->version)) 258 token = &category->tokens[0]; 276 if (_db_factory_serialize(df, category->magic, &r))
|
/src/distrib/sets/ |
fmt-list | 108 local category_align, prefix, fullname, flags_align, category, flags = 111 category_align, prefix, fullname, category = 140 category = category, 153 assert_equals(entry.category, "category") 163 assert_equals(entry.category, "cat") 238 return tabwidth(entry.category) 269 -- The flags are already aligned, 4 tabs to the right of the category. 289 return tabwidth(entry.category) [all...] |
/src/tests/net/if_l2tp/ |
t_l2tp.sh | 422 category=$1 427 name="l2tp_${category}_${lan_mode}over${wan_mode}" 436 ${category}_setup ${lan_mode} ${wan_mode} 437 ${category}_test ${lan_mode} ${wan_mode} 438 ${category}_teardown ${lan_mode} ${wan_mode} 450 category=$1 453 add_test ${category} "${desc}" ipv4 ipv4 454 add_test ${category} "${desc}" ipv4 ipv6 455 add_test ${category} "${desc}" ipv6 ipv4 456 add_test ${category} "${desc}" ipv6 ipv [all...] |
/src/tests/net/if_gif/ |
t_gif.sh | 744 category=$1 749 name="gif_${category}_${inner}over${outer}" 758 ${category}_setup ${inner} ${outer} 759 ${category}_test ${inner} ${outer} 760 ${category}_teardown ${inner} ${outer} 772 category=$1 775 add_test ${category} "${desc}" ipv4 ipv4 776 add_test ${category} "${desc}" ipv4 ipv6 777 add_test ${category} "${desc}" ipv6 ipv4 778 add_test ${category} "${desc}" ipv6 ipv [all...] |
/src/sys/external/bsd/drm2/dist/drm/ |
drm_print.c | 62 MODULE_PARM_DESC(debug, "Enable debug output, where each bit enables a debug category.\n" 339 void drm_dev_dbg(const struct device *dev, enum drm_debug_category category, 346 if (!(__drm_debug & category)) 364 if (!drm_debug_enabled(category)) 383 void __drm_dbg(enum drm_debug_category category, const char *format, ...) 389 if (!(__drm_debug & category)) 403 if (!drm_debug_enabled(category))
|
/src/sys/external/bsd/drm2/dist/include/drm/ |
drm_print.h | 259 * Each of the DRM debug logging macros use a specific category, and the logging 263 * Each DRM_DEBUG_<CATEGORY> macro logs to DRM_UT_<CATEGORY> category, except 267 * category being enabled by a bit: 322 static inline bool drm_debug_enabled(enum drm_debug_category category) 324 return unlikely(__drm_debug & category); 337 void drm_dev_dbg(const struct device *dev, enum drm_debug_category category, 398 #define _DRM_DEV_DEFINE_DEBUG_RATELIMITED(dev, category, fmt, ...) \ 404 drm_dev_dbg(dev, category, fmt, ##__VA_ARGS__); [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/scripts/ |
cpplint.py | 102 To suppress false-positive errors of a certain category, add a 103 'NOLINT(category)' comment to the line. NOLINT or NOLINT(*) 119 Specify a comma-separated list of category-filters to apply: only 120 error messages whose category names pass the filters will be printed. 121 (Category names are printed with the message and look like 138 is provided for each category like 'build/class'. 159 # If you add a new error message with a new category, add it to the list 226 # The default state of the category filter. This is overrided by the --filter= 376 category = matched.group(1) 377 if category in (None, '(*)'): # => "suppress all [all...] |
/src/share/locale/ctype/ |
gen_ctype_utf8.pl | 165 my $general_category = $charinfo->{category}; 406 return 1 if $charinfo->{category} eq 'Co'; 408 return 0 if $charinfo->{category} eq 'Mn'; 409 return 0 if $charinfo->{category} eq 'Me'; 410 return 0 if index( $charinfo->{category}, 'C' ) == 0;
|
/src/tests/net/if_ipsec/ |
t_ipsec.sh | 913 local category=$1 921 name="ipsecif_${category}_${inner}over${outer}_${proto}_${_algo}" 930 ${category}_setup ${inner} ${outer} ${proto} ${algo} 931 ${category}_test ${inner} ${outer} 932 ${category}_teardown ${inner} ${outer} 944 local category=$1 948 add_test ${category} "${desc}" ipv4 ipv4 esp $algo 949 add_test ${category} "${desc}" ipv4 ipv6 esp $algo 950 add_test ${category} "${desc}" ipv6 ipv4 esp $algo 951 add_test ${category} "${desc}" ipv6 ipv6 esp $alg [all...] |
/src/sys/arch/mac68k/nubus/ |
if_sm_nubus.c | 77 if (na->category == NUBUS_CATEGORY_NETWORK &&
|
nubus.h | 34 * Category: What is the main purpose of this card? 35 * Type: Within this overall category, what kind of card? 40 * Category 3 (display) 206 u_int16_t category; member in struct:_nubus_type 364 u_int16_t category; member in struct:nubus_attach_args
|
nubus.c | 215 if (slottype.category == NUBUS_CATEGORY_DISPLAY) { 244 na_args.category = slottype.category; 282 na->category, na->type, na->drsw, na->drhw);
|
if_sn_nubus.c | 77 if (na->category == NUBUS_CATEGORY_NETWORK &&
|
if_ae_nubus.c | 94 if (na->category == NUBUS_CATEGORY_NETWORK &&
|
if_netdock_nubus.c | 205 if (na->category == NETDOCK_NUBUS_CATEGORY && 212 if (na->category == ETHERMICRODOCK_NUBUS_CATEGORY &&
|
/src/usr.bin/xlint/llib/ |
llib-lstdc | 90 char *(setlocale)(int category, const char *locale);
|