| /freebsd/crypto/openssl/include/openssl/ |
| H A D | trace.h | 81 int OSSL_trace_set_channel(int category, BIO *channel); 92 int OSSL_trace_set_prefix(int category, const char *prefix); 93 int OSSL_trace_set_suffix(int category, const char *suffix); 107 int category, int cmd, void *data); 126 int OSSL_trace_set_callback(int category, OSSL_trace_cb callback, void *data); 135 int OSSL_trace_enabled(int category); 154 BIO *OSSL_trace_begin(int category); 155 void OSSL_trace_end(int category, BIO *channel); 204 #define OSSL_TRACE_BEGIN(category) \ argument 206 BIO *trc_out = OSSL_trace_begin(OSSL_TRACE_CATEGORY_##category); \ [all …]
|
| /freebsd/crypto/openssl/crypto/ |
| H A D | trace.c | 61 int category; member 69 size_t cnt = ctx->callback(buf, num, ctx->category, OSSL_TRACE_CTRL_WRITE, in trace_write() 94 ctx->callback("", 0, ctx->category, cmd, ctx->data); in trace_ctrl() 199 static int trace_attach_cb(int category, int type, const void *data) in trace_attach_cb() argument 204 data, trace_categories[category].name); in trace_attach_cb() 208 (const char *)data, trace_categories[category].name); in trace_attach_cb() 212 (const char *)data, trace_categories[category].name); in trace_attach_cb() 220 static int trace_detach_cb(int category, int type, const void *data) in trace_detach_cb() argument 225 data, trace_categories[category].name); in trace_detach_cb() 229 (const char *)data, trace_categories[category].name); in trace_detach_cb() [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() 94 OSSL_trace_get_category_name(category)); in setup_trace_category() 97 OSSL_trace_set_callback(category, NULL, NULL); in setup_trace_category() 121 int category = OSSL_trace_get_category_num(item); in setup_trace() local 123 if (category == OSSL_TRACE_CATEGORY_ALL) { in setup_trace() 124 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/crypto/openssl/doc/man3/ |
| H A D | OSSL_trace_enabled.pod | 20 int OSSL_trace_enabled(int category); 22 BIO *OSSL_trace_begin(int category); 23 void OSSL_trace_end(int category, BIO *channel); 26 OSSL_TRACE_BEGIN(category) { 30 OSSL_TRACE_CANCEL(category); 34 } OSSL_TRACE_END(category); 37 OSSL_TRACE(category, text) 38 OSSL_TRACE1(category, format, arg1) 39 OSSL_TRACE2(category, format, arg1, arg2) 41 OSSL_TRACE9(category, format, arg1, ..., arg9) [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/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/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/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/crypto/openssl/apps/lib/ |
| H A D | log.c | 71 void trace_log_message(int category, in trace_log_message() argument 79 category = -1; /* disabling trace output in addition to logging */ in trace_log_message() 81 if (category >= 0 && OSSL_trace_enabled(category)) { in trace_log_message() 82 BIO *out = OSSL_trace_begin(category); in trace_log_message() 93 OSSL_trace_end(category, out); in trace_log_message()
|
| /freebsd/crypto/openssl/apps/ |
| H A D | openssl.c | 107 int category, int cmd, void *vdata) in internal_trace_cb() argument 126 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() 190 OSSL_trace_get_category_name(category)); in setup_trace_category() 192 OSSL_trace_set_callback(category, NULL, NULL); in setup_trace_category() 216 int category = OSSL_trace_get_category_num(item); in setup_trace() local 218 if (category == OSSL_TRACE_CATEGORY_ALL) { in setup_trace() 219 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/lib/libc/gen/ |
| H A D | uexterr_format.c | 25 cat_to_filename(int category) in cat_to_filename() argument 27 if (category < 0 || category >= nitems(cat_to_filenames) || in cat_to_filename() 28 cat_to_filenames[category] == NULL) in cat_to_filename() 30 return (cat_to_filenames[category]); in cat_to_filename()
|
| /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()
|