/freebsd/crypto/openssl/crypto/ |
H A D | trace.c | 60 int category; member 68 size_t cnt = ctx->callback(buf, num, ctx->category, OSSL_TRACE_CTRL_WRITE, in trace_write() 93 ctx->callback("", 0, ctx->category, cmd, ctx->data); in trace_ctrl() 193 static int trace_attach_cb(int category, int type, const void *data) in trace_attach_cb() argument 198 data, trace_categories[category].name); in trace_attach_cb() 202 (const char *)data, trace_categories[category].name); in trace_attach_cb() 206 (const char *)data, trace_categories[category].name); in trace_attach_cb() 214 static int trace_detach_cb(int category, int type, const void *data) in trace_detach_cb() argument 219 data, trace_categories[category].name); in trace_detach_cb() 223 (const char *)data, trace_categories[category].name); in trace_detach_cb() [all …]
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | trace.h | 78 int OSSL_trace_set_channel(int category, BIO* channel); 89 int OSSL_trace_set_prefix(int category, const char *prefix); 90 int OSSL_trace_set_suffix(int category, const char *suffix); 104 int category, int cmd, void *data); 123 int OSSL_trace_set_callback(int category, OSSL_trace_cb callback, void *data); 132 int OSSL_trace_enabled(int category); 151 BIO *OSSL_trace_begin(int category); 152 void OSSL_trace_end(int category, BIO *channel); 201 # define OSSL_TRACE_BEGIN(category) \ argument 203 BIO *trc_out = OSSL_trace_begin(OSSL_TRACE_CATEGORY_##category); \ [all …]
|
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
H A D | DataVisualization.cpp | 77 bool DataVisualization::Categories::GetCategory(ConstString category, in GetCategory() argument 80 entry = GetFormatManager().GetCategory(category, allow_create); in GetCategory() 92 void DataVisualization::Categories::Add(ConstString category) { in Add() argument 93 GetFormatManager().GetCategory(category); in Add() 96 bool DataVisualization::Categories::Delete(ConstString category) { in Delete() argument 97 GetFormatManager().DisableCategory(category); in Delete() 98 return GetFormatManager().DeleteCategory(category); in Delete() 105 void DataVisualization::Categories::Clear(ConstString category) { in Clear() argument 106 GetFormatManager().GetCategory(category)->Clear(eFormatCategoryItemSummary); in Clear() 109 void DataVisualization::Categories::Enable(ConstString category, in Enable() argument [all …]
|
H A D | TypeCategoryMap.cpp | 60 TypeCategoryImplSP category; in Enable() local 61 if (!Get(category_name, category)) in Enable() 63 return Enable(category, pos); in Enable() 68 TypeCategoryImplSP category; in Disable() local 69 if (!Get(category_name, category)) in Disable() 71 return Disable(category); in Disable() 74 bool TypeCategoryMap::Enable(TypeCategoryImplSP category, Position pos) { in Enable() argument 76 if (category.get()) { in Enable() 79 m_active_categories.push_front(category); in Enable() 81 m_active_categories.push_back(category); in Enable() [all …]
|
/freebsd/lib/libc/locale/ |
H A D | setlocale.c | 97 setlocale(int category, const char *locale) in setlocale() argument 102 if (category < LC_ALL || category >= _LC_LAST) { in setlocale() 107 return (category != LC_ALL ? in setlocale() 108 current_categories[category] : currentlocale()); in setlocale() 120 if (category == LC_ALL) { in setlocale() 130 env = __get_locale_env(category); in setlocale() 135 (void)strcpy(new_categories[category], env); in setlocale() 137 } else if (category != LC_ALL) { in setlocale() 142 (void)strcpy(new_categories[category], locale); in setlocale() 182 if (category != LC_ALL) in setlocale() [all …]
|
/freebsd/crypto/openssl/test/testutil/ |
H A D | testutil_init.c | 23 int category, int cmd, void *vdata) in internal_trace_cb() argument 37 hex, OSSL_trace_get_category_name(category)); in internal_trace_cb() 70 static void setup_trace_category(int category) in setup_trace_category() argument 76 if (OSSL_trace_enabled(category)) in setup_trace_category() 87 || OSSL_trace_set_callback(category, internal_trace_cb, in setup_trace_category() 93 OSSL_trace_get_category_name(category)); in setup_trace_category() 95 OSSL_trace_set_callback(category, NULL, NULL); in setup_trace_category() 119 int category = OSSL_trace_get_category_num(item); in setup_trace() local 121 if (category == OSSL_TRACE_CATEGORY_ALL) { in setup_trace() 122 while (++category < OSSL_TRACE_CATEGORY_NUM) in setup_trace() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
H A D | OMP.td | 496 let category = CA_Declarative; 503 let category = CA_Executable; 507 let category = CA_Informational; 511 let category = OMP_Assumes.category; 532 let category = CA_Executable; 536 let category = CA_Executable; 540 let category = CA_Informational; 550 let category = CA_Declarative; 554 let category = CA_Declarative; 561 let category = CA_Executable; [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__system_error/ |
H A D | error_code.h | 77 _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; } in value() 93 return __x.category() == __y.category() && __x.value() == __y.value(); 97 return __x.category().equivalent(__x.value(), __y) || __y.category().equivalent(__x, __y.value()); 121 return __x.category() < __y.category() || (__x.category() == __y.category() && __x.value() < __y.value()); 127 if (auto __c = __x.category() < 79 _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; } category() function [all...] |
H A D | error_condition.h | 86 _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; } 97 return __x.category() == __y.category() && __x.value() == __y.value(); 107 return __x.category() < __y.category() || (__x.category() == __y.category() && __x.value() < __y.value()); 114 if (auto __c = __x.category() <=> __y.category(); __c != 0)
|
/freebsd/sys/fs/tarfs/ |
H A D | tarfs_dbg.h | 50 #define TARFS_DPF(category, fmt, ...) \ argument 52 if ((tarfs_debug & TARFS_DEBUG_##category) != 0) \ 55 #define TARFS_DPF_IFF(category, cond, fmt, ...) \ argument 58 && (tarfs_debug & TARFS_DEBUG_##category) != 0) \ 62 #define TARFS_DPF(category, fmt, ...) argument 63 #define TARFS_DPF_IFF(category, cond, fmt, ...) argument
|
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
H A D | DataVisualization.h | 81 static bool GetCategory(ConstString category, 88 static void Add(ConstString category); 90 static bool Delete(ConstString category); 94 static void Clear(ConstString category); 96 static void Enable(ConstString category, 101 static void Disable(ConstString category); 105 static void Enable(const lldb::TypeCategoryImplSP &category, 108 static void Disable(const lldb::TypeCategoryImplSP &category);
|
/freebsd/usr.sbin/bsdconfig/share/packages/ |
H A D | categories.subr | 45 # f_category_desc_get $category [$var_to_set] 47 # Fetch the description of a given category. Returns success if a match was 50 # If $var_to_set is missing or NULL, the category description is printed to 58 # Return failure if $category 70 # f_category_desc_set $category $desc 72 # Store a description in-association with a category. $category should be 74 # whitespace. Returns success unless $category is NULL or no arguments. Use the 75 # f_category_desc_get() routine with the same $category to retrieve the stored 80 local category="$1" desc="$2" 82 [ "$category" ] || return $FAILURE [all …]
|
H A D | packages.subr | 76 # category name if its index has been cached, adding the number of installed 77 # packages for each category, and adding the number _selected_ packages for 78 # each category. 87 local var_to_set="$1" category cat desc help varcat menu_buf n 90 category="${1%\*}" desc="${2%%; *}" help="$3" 93 cat="${category# }" # Trim lead space inserted by sort-method 96 # Add number of installed packages for this category (if any) 104 # Add number of selected packages for this category (if any) 112 # Re-Add asterisk to the category if its index has been cached 113 f_isset _index_page_${varcat}_1 && category="$category*" [all …]
|
/freebsd/contrib/ntp/libntp/lib/isc/include/isc/ |
H A D | log.h | 469 const isc_logcategory_t *category, 568 isc_log_write(isc_log_t *lctx, isc_logcategory_t *category, 607 isc_log_vwrite(isc_log_t *lctx, isc_logcategory_t *category, 619 isc_log_write1(isc_log_t *lctx, isc_logcategory_t *category, 630 isc_log_vwrite1(isc_log_t *lctx, isc_logcategory_t *category, 652 isc_log_iwrite(isc_log_t *lctx, isc_logcategory_t *category, 659 isc_log_ivwrite(isc_log_t *lctx, isc_logcategory_t *category, 666 isc_log_iwrite1(isc_log_t *lctx, isc_logcategory_t *category, 673 isc_log_ivwrite1(isc_log_t *lctx, isc_logcategory_t *category,
|
/freebsd/contrib/diff/lib/ |
H A D | hard-locale.c | 35 hard_locale (int category) in hard_locale() argument 42 char const *p = setlocale (category, 0); in hard_locale() 58 if (((p = setlocale (category, "C")) in hard_locale() 60 || ((p = setlocale (category, "POSIX")) in hard_locale() 65 setlocale (category, locale); in hard_locale()
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | OSSL_trace_enabled.pod | 19 int OSSL_trace_enabled(int category); 21 BIO *OSSL_trace_begin(int category); 22 void OSSL_trace_end(int category, BIO *channel); 25 OSSL_TRACE_BEGIN(category) { 29 OSSL_TRACE_CANCEL(category); 33 } OSSL_TRACE_END(category); 36 OSSL_TRACE1(category, format, arg1) 37 OSSL_TRACE2(category, format, arg1, arg2) 39 OSSL_TRACE9(category, format, arg1, ..., arg9) 41 /* check whether a trace category is enabled */ [all …]
|
H A D | OSSL_trace_get_category_num.pod | 17 OSSL_trace_get_category_num() gives the category number corresponding 20 OSSL_trace_get_category_name() gives the category name corresponding 25 OSSL_trace_get_category_num() returns the category number if the given 26 C<name> is a recognised category name, otherwise -1. 28 OSSL_trace_get_category_name() returns the category name if the given 29 C<num> is a recognised category number, otherwise NULL.
|
/freebsd/crypto/openssl/apps/ |
H A D | openssl.c | 105 int category, int cmd, void *vdata) in internal_trace_cb() argument 124 OSSL_trace_get_category_name(category)); in internal_trace_cb() 167 static void setup_trace_category(int category) in setup_trace_category() argument 173 if (OSSL_trace_enabled(category)) in setup_trace_category() 183 || OSSL_trace_set_callback(category, internal_trace_cb, in setup_trace_category() 189 OSSL_trace_get_category_name(category)); in setup_trace_category() 191 OSSL_trace_set_callback(category, NULL, NULL); in setup_trace_category() 215 int category = OSSL_trace_get_category_num(item); in setup_trace() local 217 if (category == OSSL_TRACE_CATEGORY_ALL) { in setup_trace() 218 while (++category < OSSL_TRACE_CATEGORY_NUM) in setup_trace() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenACC/ |
H A D | ACC.td | 271 let category = CA_Executable; 297 let category = CA_Executable; 313 let category = CA_Declarative; 340 let category = CA_Executable; 370 let category = CA_Executable; 399 let category = CA_Executable; 420 let category = CA_Executable; 426 let category = CA_Executable; 437 let category = CA_Executable; 454 let category = CA_Declarative; [all …]
|
/freebsd/usr.sbin/bluetooth/bthidcontrol/ |
H A D | bthidcontrol.c | 48 …tic struct bthid_command * find_bthid_command(char const *command, struct bthid_command *category); 49 static void print_bthid_command(struct bthid_command *category); 173 find_bthid_command(char const *command, struct bthid_command *category) in find_bthid_command() argument 177 for (c = category; c->command != NULL; c++) { in find_bthid_command() 194 print_bthid_command(struct bthid_command *category) in print_bthid_command() argument 198 for (c = category; c->command != NULL; c++) in print_bthid_command()
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | locale.inc | 33 // [category.ctype], ctype 41 // [category.numeric], numeric 47 // [category.collate], collation 51 // [category.time], date and time 58 // [category.monetary], money 65 // [category.messages], message retrieval
|
H A D | locale.cppm |
|
/freebsd/contrib/ntp/sntp/libopts/ |
H A D | gettext.h | 151 int category) in pgettext_aux() argument 153 const char *translation = dcgettext (domain, msg_ctxt_id, category); in pgettext_aux() 171 int category) in npgettext_aux() argument 174 dcngettext (domain, msg_ctxt_id, msgid_plural, n, category); in npgettext_aux() 214 int category) in dcpgettext_expr() argument 234 translation = dcgettext (domain, msg_ctxt_id, category); in dcpgettext_expr() 262 int category) in dcnpgettext_expr() argument 282 translation = dcngettext (domain, msg_ctxt_id, msgid_plural, n, category); in dcnpgettext_expr()
|
/freebsd/contrib/ntp/libntp/lib/isc/ |
H A D | log.c | 241 isc_log_doit(isc_log_t *lctx, isc_logcategory_t *category, 789 const isc_logcategory_t *category, in isc_log_usechannel() argument 802 REQUIRE(category == NULL || category->id < lctx->category_count); in isc_log_usechannel() 813 if (category != NULL) in isc_log_usechannel() 814 result = assignchannel(lcfg, category->id, module, channel); in isc_log_usechannel() 831 isc_log_write(isc_log_t *lctx, isc_logcategory_t *category, in isc_log_write() argument 841 isc_log_doit(lctx, category, module, level, ISC_FALSE, in isc_log_write() 847 isc_log_vwrite(isc_log_t *lctx, isc_logcategory_t *category, in isc_log_vwrite() argument 854 isc_log_doit(lctx, category, module, level, ISC_FALSE, in isc_log_vwrite() 859 isc_log_write1(isc_log_t *lctx, isc_logcategory_t *category, in isc_log_write1() argument [all …]
|
/freebsd/contrib/kyua/cli/ |
H A D | cmd_help.cpp | 116 const std::string& category = (*iter).first; in general_help() local 120 category, text::table(2))); in general_help() 121 text::table& table = command_tables.find(category)->second; in general_help() 150 const std::string& category = (*iter).first; in general_help() local 153 (category.empty() ? "Generic" : category)); in general_help() 154 ui->out_table(command_tables.find(category)->second, formatter, " "); in general_help()
|