Home
last modified time | relevance | path

Searched refs:category (Results 1 – 25 of 554) sorted by relevance

12345678910>>...23

/illumos-gate/usr/src/uts/common/io/rsm/
H A Drsmka_pathmanager.c187 static int category = RSM_PATH_MANAGER | RSM_KERNEL_AGENT; variable
209 DBG_PRINTF((category, RSM_DEBUG_VERBOSE, in rsmka_pathmanager_init()
226 DBG_PRINTF((category, RSM_DEBUG_VERBOSE, in rsmka_pathmanager_init()
233 DBG_PRINTF((category, RSM_DEBUG_VERBOSE, in rsmka_pathmanager_cleanup()
273 DBG_PRINTF((category, RSM_DEBUG_VERBOSE, in rsmka_pathmanager_cleanup()
283 DBG_PRINTF((category, RSM_DEBUG_VERBOSE, in rsmka_set_my_nodeid()
320 DBG_PRINTF((category, RSM_DEBUG_VERBOSE, "do_deferred_work enter\n")); in do_deferred_work()
360 DBG_PRINTF((category, RSM_DEBUG, in do_deferred_work()
402 DBG_PRINTF((category, RSM_DEBUG, in do_deferred_work()
459 DBG_PRINTF((category, RSM_DEBUG, in do_deferred_work()
[all …]
H A Drsm.c309 extern void dbg_printf(int category, int level, char *fmt, ...);
726 DBG_DEFINE(category, RSM_KERNEL_AGENT | RSM_DDI); in rsm_attach()
728 DBG_PRINTF((category, RSM_DEBUG_VERBOSE, "rsm_attach enter\n")); in rsm_attach()
735 DBG_PRINTF((category, RSM_ERR, in rsm_attach()
741 DBG_PRINTF((category, RSM_ERR, in rsm_attach()
787 DBG_PRINTF((category, RSM_DEBUG_VERBOSE, in rsm_attach()
793 DBG_PRINTF((category, RSM_DEBUG, "rsm_attach rsm_hash_size: %d\n", in rsm_attach()
802 DBG_PRINTF((category, RSM_ERR, in rsm_attach()
812 DBG_PRINTF((category, RSM_DEBUG_VERBOSE, in rsm_attach()
822 DBG_PRINTF((category, RSM_ERR, in rsm_attach()
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/comp/
H A Dsetlocale.c157 native_setlocale(int category, const char* locale) in native_setlocale() argument
170 if (category == LC_MESSAGES) in native_setlocale()
172 sys = uwin_setlocale(category, usr); in native_setlocale()
174 …sfprintf(sfstderr, "locale uwin %17s %-24s %-24s\n", lc_categories[lcindex(category, 0)].name, usr… in native_setlocale()
2320 register int category = cp->internal; in set_numeric() local
2332 if (!LCINFO(category)->data) in set_numeric()
2343 LCINFO(category)->data = (void*)dp; in set_numeric()
2411 default_setlocale(int category, const char* locale) in default_setlocale() argument
2423 return (locales[1]->flags & (1<<category)) ? locales[1]->name : locales[0]->name; in default_setlocale()
2438 _sys_setlocale(int category, const char* locale) in _sys_setlocale() argument
[all …]
/illumos-gate/usr/src/lib/libresolv2/common/isc/
H A Dlogging.c236 log_check(log_context lc, int category, int level) { in log_check() argument
250 if (category < 0 || category > lc->num_categories) in log_check()
251 category = 0; /*%< use default */ in log_check()
252 lcl = lc->categories[category]; in log_check()
254 category = 0; in log_check()
266 log_vwrite(log_context lc, int category, int level, const char *format, in log_vwrite() argument
294 if (category < 0 || category > lc->num_categories) in log_vwrite()
295 category = 0; /*%< use default */ in log_vwrite()
296 original_category = category; in log_vwrite()
297 lcl = lc->categories[category]; in log_vwrite()
[all …]
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dlocaleimpl.c220 locdata_get_cache(int category, const char *locname) in locdata_get_cache() argument
224 if (category < 0 || category >= LC_ALL) in locdata_get_cache()
229 loc = cache_data[category]; in locdata_get_cache()
241 for (loc = cat_data[category]; loc != NULL; loc = loc->l_next) { in locdata_get_cache()
266 loc = (*loaders[category])(locname); in locdata_get_cache()
279 cache_data[category] = loc; in locdata_get_cache()
282 loc->l_next = cat_data[category]; in locdata_get_cache()
283 cat_data[category] = loc; in locdata_get_cache()
310 locdata_get(int category, const char *locname) in locdata_get() argument
320 locname = get_locale_env(category); in locdata_get()
[all …]
H A Dsetlocale.c68 setlocale(int category, const char *locname) in setlocale() argument
74 if (category < 0 || category > LC_ALL) { in setlocale()
80 return (current_locale(___global_locale, category)); in setlocale()
82 mask = (category == LC_ALL ? LC_ALL_MASK : (1 << category)); in setlocale()
120 return (current_locale(loc, category)); in setlocale()
/illumos-gate/usr/src/contrib/mDNSResponder/mDNSShared/
H A DmDNSDebug.c57 mDNSlocal void LogMsgWithLevelv(os_log_t category, os_log_type_t level, const char *format, va_list… in LogMsgWithLevelv() argument
61 os_log_with_type(category ? category : mDNSLogCategory_Default, level, "%{private}s", buffer); in LogMsgWithLevelv()
64 mDNSlocal void LogMsgWithLevelv(const char *category, mDNSLogLevel_t level, const char *format, va_… in LogMsgWithLevelv() argument
69 if (category) mDNS_snprintf_add(&dst, lim, "%s: ", category); in LogMsgWithLevelv()
97 mDNSexport void LogMsgWithLevel(mDNSLogCategory_t category, mDNSLogLevel_t level, const char *forma… in LogMsg_()
98 LOG_HELPER_BODY(category, level) in LogMsg_()
/illumos-gate/usr/src/cmd/bnu/
H A Dgetargs.c168 _uu_setlocale(int category, char *locale) in _uu_setlocale() argument
174 if ((tmp = setlocale(category, NULL)) == NULL) in _uu_setlocale()
186 if (setlocale(category, locale) == NULL) { in _uu_setlocale()
197 _uu_resetlocale(int category, char *locale) in _uu_resetlocale() argument
201 (void) setlocale(category, locale); in _uu_resetlocale()
/illumos-gate/usr/src/lib/libpkg/common/
H A Dgpkglist.c271 is_not_valid_category(char **category, char *progname) in is_not_valid_category() argument
274 if (is_same_CATEGORY(category, "system")) in is_not_valid_category()
289 is_not_valid_length(char **category) in is_not_valid_length() argument
293 for (i = 0; category[i] != NULL; i++) { in is_not_valid_length()
294 if (strlen(category[i]) > MAX_CAT_LEN) in is_not_valid_length()
310 is_same_CATEGORY(char **category, char *persistent_category) in is_same_CATEGORY() argument
323 for (i = 0; category[i] != NULL; i++) { in is_same_CATEGORY()
325 if (strcasecmp(category[i], pers_catgs[j]) == 0) { in is_same_CATEGORY()
/illumos-gate/usr/src/cmd/cmd-inet/sbin/dhcpinfo/
H A Ddhcpinfo.c124 optnum.category = entry->ds_category; in main()
130 optnum.category = ITAB_CAT_STANDARD | ITAB_CAT_SITE; in main()
141 optnum.category = ITAB_CAT_VENDOR; in main()
145 optnum.category |= ITAB_CAT_V6; in main()
147 entry = inittab_getbycode(optnum.category, ITAB_CONS_INFO, in main()
155 optnum.category = entry->ds_category; in main()
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/
H A Drt.sh297 category=
330 category=
401 if [[ $cat != $category ]]
403 category=$cat
404 unit="$main $category"
441 category=
/illumos-gate/usr/src/cmd/localedef/
H A Dscanner.c65 static int category = T_END; variable
459 if ((category != T_CHARMAP) && (category != T_WIDTH)) { in get_wide()
506 if (category == T_END) { in get_symbol()
521 if ((category != T_CHARMAP) && in get_symbol()
549 return (category); in get_category()
581 category = T_END; in consume_token()
588 category = last_kw; in consume_token()
/illumos-gate/usr/src/lib/libc/port/i18n/
H A Dgettext.c168 dcgettext(const char *domain, const char *msg_id, const int category) in dcgettext() argument
175 res = _real_gettext_u(domain, msg_id, NULL, 0, category, 0, NULL); in dcgettext()
212 unsigned long int n, int category) in dcngettext() argument
219 res = _real_gettext_u(domain, msgid1, msgid2, n, category, 1, NULL); in dcngettext()
/illumos-gate/usr/src/cmd/svr4pkg/pkgchk/
H A Dmain.c150 char **category = NULL; in main() local
291 if ((category = get_categories(catg_arg)) == NULL) { in main()
294 } else if (is_not_valid_length(category)) { in main()
358 pkg = gpkglist(pkgdir, all_pkgs, category); in main()
416 pkg = gpkglist(spooldir, all_pkgs, category); in main()
423 pkgcnt ? pkg : all_pkgs, category); in main()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/port/
H A Dmc.c57 mcfind(const char* locale, const char* catalog, int category, int nls, char* path, size_t size) in mcfind() argument
75 if ((category = lcindex(category, 1)) < 0) in mcfind()
77 if (!(lc = locale ? lcmake(locale) : locales[category])) in mcfind()
155 v = lc_categories[category].name; in mcfind()
169 …if (category != AST_LC_MESSAGES && strneq(p, lc_messages, sizeof(lc_messages) - 1) && p[sizeof(lc_… in mcfind()
190 …if (s = pathpath(file, "", (!catalog && category == AST_LC_MESSAGES) ? PATH_READ : (PATH_REGULAR|P… in mcfind()
/illumos-gate/usr/src/cmd/locale/
H A Dlocale.c87 static int print_category(int category, int cflag, int kflag);
256 int category; member
278 int category; member
726 return (print_category(locale_name[i].category, in print_locale_info()
751 if (first_flag && cflag && key[i].category != LC_LOCDEF) { in print_keyword()
754 locale_name[key[i].category].name); in print_keyword()
985 print_category(int category, int cflag, int kflag) in print_category() argument
990 if (category == LC_ALL) { in print_category()
1000 locale_name[category].name); in print_category()
1004 if (key[i].category == category) { in print_category()
/illumos-gate/usr/src/cmd/perl/contrib/Sun/Solaris/Utils/
H A DUtils.xs72 dcgettext(domainname, msgid, category)
75 int category
/illumos-gate/usr/src/uts/common/sys/rsm/
H A Drsm.h123 extern void dbg_printf(int category, int level, char *fmt, ...);
126 #define DBG_ADDCATEGORY(var, category) (var |= (category)) argument
131 #define DBG_ADDCATEGORY(var, category)
/illumos-gate/usr/src/cmd/iconv/
H A Dscanner.c57 static int category = T_END; variable
120 category = T_END; in reset_scanner()
376 if (category == T_END) { in get_symbol()
434 category = T_END; in consume_token()
441 category = last_kw; in consume_token()
/illumos-gate/usr/src/uts/common/io/cxgbe/t4nex/
H A Dosdep.h48 #define CH_MSG(sc, level, category, fmt, ...) argument
50 #define CH_DBG(sc, category, fmt, ...) cxgb_printf(sc->dip, CE_NOTE, ##__VA_ARGS__) argument
52 #define CH_DBG(sc, category, fmt, ...) argument
/illumos-gate/usr/src/lib/libdhcputil/common/
H A Ddhcp_inittab.c322 char *category, *spacep; in parse_entry() local
343 category = strpbrk(fields[ITAB_NAME], " \t"); in parse_entry()
344 if (category == NULL) in parse_entry()
351 while (isspace(*category)) in parse_entry()
352 category++; in parse_entry()
354 spacep = strpbrk(category, " \t"); in parse_entry()
356 category = spacep; in parse_entry()
364 spacep = category - 1; in parse_entry()
380 fields[ITAB_CAT] = category; in parse_entry()
1684 category_to_code(const char *category) in category_to_code() argument
[all …]
/illumos-gate/usr/src/cmd/scadm/sparc/mpxu/common/
H A Deventlog.c49 int category; in getEventLogMessage() local
54 category = eventId >> 16; in getEventLogMessage()
57 alertCategory = rsc_alerts[category]; in getEventLogMessage()
/illumos-gate/usr/src/cmd/latencytop/
H A Dlatencytop.trans40 # disable_category <category name> : do not count and display <category name>
/illumos-gate/usr/src/lib/libdhcputil/
H A DREADME.inittab66 option_name category, code, type, granularity, maximum, consumers
72 category unique and ideally should be unique across all categories.
76 `category' is one of STANDARD, SITE, VENDOR, FIELD, or INTERNAL and
81 option, without a category. however, in the case of internal
84 should be per-category unique and the STANDARD and SITE fields
113 category (i.e., defined by the DHCP standard), and is option code
133 requests any fields with the VENDOR category. (VENDOR information
199 matching the given name or code for the provided category and the
/illumos-gate/usr/src/uts/common/sys/fibre-channel/fca/emlxs/
H A Demlxs_sdapi.h278 uint32_t category,
286 uint32_t category,

12345678910>>...23