Searched refs:category (Results 1 - 25 of 115) sorted by relevance

12345

/freebsd-current/crypto/openssl/include/openssl/
H A Dtrace.h28 * categories. For every trace category, the application can register a separate
30 * created for this category. This channel consists essentially of an internal
34 * The ALL category can be used as a fallback category to register a single
61 /* Returns the trace category number for the given |name| */
64 /* Returns the trace category name for the given |num| */
72 * Enables tracing for the given |category| by providing a BIO sink
74 * trace channel is removed and tracing for the category is disabled.
78 int OSSL_trace_set_channel(int category, BIO* channel);
81 * Attach a prefix and a suffix to the given |category|, t
[all...]
/freebsd-current/contrib/diff/lib/
H A Dhard-locale.c35 hard_locale (int category) argument
42 char const *p = setlocale (category, 0);
58 if (((p = setlocale (category, "C"))
60 || ((p = setlocale (category, "POSIX"))
65 setlocale (category, locale);
/freebsd-current/crypto/openssl/crypto/
H A Dtrace.c60 int category; member in struct:trace_data_st
68 size_t cnt = ctx->callback(buf, num, ctx->category, OSSL_TRACE_CTRL_WRITE,
93 ctx->callback("", 0, ctx->category, cmd, ctx->data);
173 /* We use one trace channel for each trace category */
193 static int trace_attach_cb(int category, int type, const void *data) argument
197 OSSL_TRACE2(TRACE, "Attach channel %p to category '%s'\n",
198 data, trace_categories[category].name);
201 OSSL_TRACE2(TRACE, "Attach prefix \"%s\" to category '%s'\n",
202 (const char *)data, trace_categories[category].name);
205 OSSL_TRACE2(TRACE, "Attach suffix \"%s\" to category '
214 trace_detach_cb(int category, int type, const void *data) argument
242 set_trace_data(int category, int type, BIO **channel, const char **prefix, const char **suffix, int (*attach_cb)(int, int, const void *), int (*detach_cb)(int, int, const void *)) argument
338 int category; local
357 OSSL_trace_set_channel(int category, BIO *channel) argument
368 trace_attach_w_callback_cb(int category, int type, const void *data) argument
391 OSSL_trace_set_callback(int category, OSSL_trace_cb callback, void *data) argument
427 OSSL_trace_set_prefix(int category, const char *prefix) argument
437 OSSL_trace_set_suffix(int category, const char *suffix) argument
448 ossl_trace_get_category(int category) argument
458 OSSL_trace_enabled(int category) argument
469 OSSL_trace_begin(int category) argument
503 OSSL_trace_end(int category, BIO * channel) argument
[all...]
/freebsd-current/sys/fs/tarfs/
H A Dtarfs_dbg.h50 #define TARFS_DPF(category, fmt, ...) \
52 if ((tarfs_debug & TARFS_DEBUG_##category) != 0) \
55 #define TARFS_DPF_IFF(category, cond, fmt, ...) \
58 && (tarfs_debug & TARFS_DEBUG_##category) != 0) \
62 #define TARFS_DPF(category, fmt, ...)
63 #define TARFS_DPF_IFF(category, cond, fmt, ...)
/freebsd-current/crypto/openssl/test/testutil/
H A Dtestutil_init.c23 int category, int cmd, void *vdata)
37 hex, OSSL_trace_get_category_name(category));
70 static void setup_trace_category(int category) argument
76 if (OSSL_trace_enabled(category))
87 || OSSL_trace_set_callback(category, internal_trace_cb,
92 "warning: unable to setup trace callback for category '%s'.\n",
93 OSSL_trace_get_category_name(category));
95 OSSL_trace_set_callback(category, NULL, NULL);
119 int category = OSSL_trace_get_category_num(item); local
121 if (category
22 internal_trace_cb(const char *buf, size_t cnt, int category, int cmd, void *vdata) argument
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/DataFormatters/
H A DDataVisualization.cpp77 bool DataVisualization::Categories::GetCategory(ConstString category, argument
80 entry = GetFormatManager().GetCategory(category, allow_create);
92 void DataVisualization::Categories::Add(ConstString category) { argument
93 GetFormatManager().GetCategory(category);
96 bool DataVisualization::Categories::Delete(ConstString category) { argument
97 GetFormatManager().DisableCategory(category);
98 return GetFormatManager().DeleteCategory(category);
105 void DataVisualization::Categories::Clear(ConstString category) { argument
106 GetFormatManager().GetCategory(category)->Clear(eFormatCategoryItemSummary);
109 void DataVisualization::Categories::Enable(ConstString category, argument
122 Disable(ConstString category) argument
133 Enable( const lldb::TypeCategoryImplSP &category, TypeCategoryMap::Position pos) argument
142 Disable( const lldb::TypeCategoryImplSP &category) argument
[all...]
H A DTypeCategoryMap.cpp48 TypeCategoryImplSP category; local
49 if (!Get(category_name, category))
51 return Enable(category, pos);
56 TypeCategoryImplSP category; local
57 if (!Get(category_name, category))
59 return Disable(category);
62 bool TypeCategoryMap::Enable(TypeCategoryImplSP category, Position pos) { argument
64 if (category.get()) {
67 m_active_categories.push_front(category);
69 m_active_categories.push_back(category);
84 Disable(TypeCategoryImplSP category) argument
215 lldb::TypeCategoryImplSP category = *begin; local
[all...]
/freebsd-current/lib/libc/locale/
H A Dsetlocale.c67 * Current locales for each category
97 setlocale(int category, const char *locale) argument
102 if (category < LC_ALL || category >= _LC_LAST) {
107 return (category != LC_ALL ?
108 current_categories[category] : currentlocale());
120 if (category == LC_ALL) {
130 env = __get_locale_env(category);
135 (void)strcpy(new_categories[category], env);
137 } else if (category !
224 loadlocale(int category) argument
280 __get_locale_env(int category) argument
[all...]
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dlocale.inc33 // [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 Dcompare.inc12 // [cmp.categories], comparison category types
25 // [cmp.common], common comparison category type
/freebsd-current/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DDataVisualization.h81 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);
H A DTypeCategoryMap.h52 bool Enable(lldb::TypeCategoryImplSP category, Position pos = Default);
54 bool Disable(lldb::TypeCategoryImplSP category);
/freebsd-current/contrib/llvm-project/libcxx/include/__system_error/
H A Derror_code.h77 _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
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() <
[all...]
H A Derror_condition.h86 _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-current/contrib/ntp/libntp/lib/isc/include/isc/
H A Dlog.h92 * structures names each category, and the id value is initialized by calling
158 * Do not log directly to DEFAULT. Use another category. When in doubt,
205 * the category/module specification of isc_log_[v]write[1] that is compiled
328 *\li A category should only be registered once, but no mechanism enforces
356 * \li There are references to each category in the logging context,
422 * the default logging category can be changed by redefining
424 * logging category can be changed with only one additional function
469 const isc_logcategory_t *category,
472 * Associate a named logging channel with a category and module that
481 *\li Specifying a very large number of channels for a category wil
[all...]
/freebsd-current/sys/dev/rtwn/
H A Dif_rtwn_fw.h36 uint8_t category; member in struct:r92c_fw_hdr
/freebsd-current/contrib/llvm-project/libcxx/src/
H A Derror_category.cpp34 return *this == code.category() && code.value() == condition;
/freebsd-current/usr.sbin/bluetooth/bthidcontrol/
H A Dbthidcontrol.c48 static struct bthid_command * find_bthid_command(char const *command, struct bthid_command *category);
49 static void print_bthid_command(struct bthid_command *category);
171 /* Try to find command in specified category */
173 find_bthid_command(char const *command, struct bthid_command *category) argument
177 for (c = category; c->command != NULL; c++) {
192 /* Print commands in specified category */
194 print_bthid_command(struct bthid_command *category) argument
198 for (c = category; c->command != NULL; c++)
/freebsd-current/cddl/usr.sbin/dtrace/tests/tools/
H A Dgentest.sh7 usage: sh $(basename $0) [-e <excludes>] <category> [<testfiles>]
11 category: The test category, in the form of <arch>/<feature>. For example,
12 "common/aggs" is the test category for D aggregations.
13 testfiles: The test files for the tests in the specified category.
/freebsd-current/contrib/ntp/sntp/libopts/
H A Dgettext.h151 int category)
153 const char *translation = dcgettext (domain, msg_ctxt_id, category);
171 int category)
174 dcngettext (domain, msg_ctxt_id, msgid_plural, n, category);
214 int category)
234 translation = dcgettext (domain, msg_ctxt_id, category);
262 int category)
282 translation = dcngettext (domain, msg_ctxt_id, msgid_plural, n, category);
149 pgettext_aux(const char *domain, const char *msg_ctxt_id, const char *msgid, int category) argument
168 npgettext_aux(const char *domain, const char *msg_ctxt_id, const char *msgid, const char *msgid_plural, unsigned long int n, int category) argument
212 dcpgettext_expr(const char *domain, const char *msgctxt, const char *msgid, int category) argument
259 dcnpgettext_expr(const char *domain, const char *msgctxt, const char *msgid, const char *msgid_plural, unsigned long int n, int category) argument
/freebsd-current/crypto/openssl/apps/
H A Dopenssl.c105 int category, int cmd, void *vdata)
124 OSSL_trace_get_category_name(category));
167 static void setup_trace_category(int category) argument
173 if (OSSL_trace_enabled(category))
183 || OSSL_trace_set_callback(category, internal_trace_cb,
188 "warning: unable to setup trace callback for category '%s'.\n",
189 OSSL_trace_get_category_name(category));
191 OSSL_trace_set_callback(category, NULL, NULL);
215 int category = OSSL_trace_get_category_num(item); local
217 if (category
104 internal_trace_cb(const char *buf, size_t cnt, int category, int cmd, void *vdata) argument
[all...]
/freebsd-current/contrib/kyua/cli/
H A Dcmd_help.cpp116 const std::string& category = (*iter).first; local
120 category, text::table(2)));
121 text::table& table = command_tables.find(category)->second;
150 const std::string& category = (*iter).first; local
153 (category.empty() ? "Generic" : category));
154 ui->out_table(command_tables.find(category)->second, formatter, " ");
/freebsd-current/usr.sbin/bluetooth/l2control/
H A Dl2control.c177 /* Try to find command in specified category */
179 find_l2cap_command(char const *command, struct l2cap_command *category) argument
183 for (c = category; c->command != NULL; c++) {
198 /* Print commands in specified category */
200 print_l2cap_command(struct l2cap_command *category) argument
204 for (c = category; c->command != NULL; c++)
/freebsd-current/usr.sbin/bluetooth/sdpcontrol/
H A Dsdpcontrol.c176 /* Try to find command in specified category */
178 find_sdp_command(char const *command, struct sdp_command *category) argument
182 for (c = category; c->command != NULL; c++) {
197 /* Print commands in specified category */
199 print_sdp_command(struct sdp_command *category) argument
203 for (c = category; c->command != NULL; c++)
/freebsd-current/usr.sbin/bsdconfig/share/packages/
H A Dindex.awk23 function print_category(category, npkgs, desc)
25 cat = category
26 # Accent the category if the first page has been
62 # Produce package counts for each category

Completed in 210 milliseconds

12345