/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() 173 /* We use one trace channel for each trace category */ 193 static int trace_attach_cb(int category, int type, const void *data) in trace_attach_cb() argument 197 OSSL_TRACE2(TRACE, "Attach channel %p to category '%s'\n", in trace_attach_cb() 198 data, trace_categories[category].name); in trace_attach_cb() 201 OSSL_TRACE2(TRACE, "Attach prefix \"%s\" to category '%s'\n", in trace_attach_cb() 202 (const char *)data, trace_categories[category].name); in trace_attach_cb() 205 OSSL_TRACE2(TRACE, "Attach suffix \"%s\" to category '%s'\n", in trace_attach_cb() [all …]
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | trace.h | 28 * 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|, to be printed at the 89 int OSSL_trace_set_prefix(int category, const char *prefix); [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/MCTargetDesc/ |
H A D | SPIRVBaseInfo.cpp | 22 OperandCategory::OperandCategory Category; member 30 OperandCategory::OperandCategory Category; member 36 OperandCategory::OperandCategory Category; member 57 getSymbolicOperandMnemonic(SPIRV::OperandCategory::OperandCategory Category, in getSymbolicOperandMnemonic() argument 60 SPIRV::lookupSymbolicOperandByCategoryAndValue(Category, Value); in getSymbolicOperandMnemonic() 64 if (Category != SPIRV::OperandCategory::ImageOperandOperand && in getSymbolicOperandMnemonic() 65 Category != SPIRV::OperandCategory::FPFastMathModeOperand && in getSymbolicOperandMnemonic() 66 Category != SPIRV::OperandCategory::SelectionControlOperand && in getSymbolicOperandMnemonic() 67 Category != SPIRV::OperandCategory::LoopControlOperand && in getSymbolicOperandMnemonic() 68 Category != SPIRV::OperandCategory::FunctionControlOperand && in getSymbolicOperandMnemonic() [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/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/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_set_channel.pod | 15 int category, int cmd, void *data); 17 void OSSL_trace_set_channel(int category, BIO *bio); 18 void OSSL_trace_set_prefix(int category, const char *prefix); 19 void OSSL_trace_set_suffix(int category, const char *suffix); 20 void OSSL_trace_set_callback(int category, OSSL_trace_cb cb, void *data); 30 Every category can be enabled individually by attaching a so called 32 to which the application can write the tracing output for this category. 43 OSSL_trace_set_channel() is used to enable the given trace C<category> 58 I<category> by giving it the tracer callback I<cb> with the associated 72 the given I<category>. [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/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() 92 "warning: unable to setup trace callback for category '%s'.\n", 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() [all …]
|
/freebsd/cddl/usr.sbin/dtrace/tests/tools/ |
H A D | gentest.sh | 7 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. 30 atf_set 'descr' 'DTrace test ${CATEGORY}/${tfile}' 71 CATEGORY=$1 73 if ! expr "$CATEGORY" : '[^/]*/[^/]*' >/dev/null 2>&1; then 76 FEATURE=$(basename ${CATEGORY}) 77 ARCH=$(dirname ${CATEGORY}) 83 EXFAILS=$(echo -e "$EXFAIL" | grep "^${CATEGORY}/" | xargs basename -a) [all …]
|
/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/lib/libc/locale/ |
H A D | setlocale.c | 54 * Category names for getenv() 67 * Current locales for each category 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() [all …]
|
H A D | setlocale.3 | 42 .Fn setlocale "int category" "const char *locale" 99 Sets the generic locale category for native language, local customs 144 .Fa category 153 .Fa category 158 .Bl -tag -width /usr/share/locale/locale/category -compact 159 .It Pa $PATH_LOCALE/ Ns Em locale/category 160 .It Pa /usr/share/locale/ Ns Em locale/category 163 and the category 164 .Em category .
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | Timer.h | 25 class Category { 27 explicit Category(const char *category_name); 36 std::atomic<Category *> m_next; 38 Category(const Category &) = delete; 39 const Category &operator=(const Category &) = delete; 43 Timer(Category &category, const char *format, ...) 67 Category &m_category; 84 static ::lldb_private::Timer::Category _cat(LLVM_PRETTY_FUNCTION); \ 87 static ::lldb_private::Timer::Category _cat(LLVM_PRETTY_FUNCTION); \
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ComparisonCategories.h | 9 // This file defines the Comparison Category enum and data types, which 43 /// strong_ordering are collectively termed the comparison category types. 59 /// Get the comparison category that should be used when comparing values of 65 /// comparison. These values map onto instances of comparison category types 97 /// the comparison category result type. 103 /// A map containing the comparison category result decls from the 117 /// The declaration for the comparison category type from the 121 /// The Kind of the comparison category type 130 "comparison category does not contain the specified result kind"); in getValueInfo() 150 /// for this category. Specifically it lowers strong equality results to [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Basic/ |
H A D | NoSanitizeList.cpp | 31 StringRef Category) const { in containsGlobal() 32 return SSCL->inSection(Mask, "global", GlobalName, Category); in containsGlobal() 36 StringRef Category) const { in containsType() 37 return SSCL->inSection(Mask, "type", MangledTypeName, Category); in containsType() 46 StringRef Category) const { in containsFile() 47 return SSCL->inSection(Mask, "src", FileName, Category); in containsFile() 51 StringRef Category) const { in containsMainFile() 52 return SSCL->inSection(Mask, "mainfile", FileName, Category); in containsMainFile() 56 StringRef Category) const { in containsLocation() 58 containsFile(Mask, SM.getFilename(SM.getFileLoc(Loc)), Category); in containsLocation()
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | OSSL_trace_enabled.3 | 152 \& int OSSL_trace_enabled(int category); 154 \& BIO *OSSL_trace_begin(int category); 155 \& void OSSL_trace_end(int category, BIO *channel); 158 \& OSSL_TRACE_BEGIN(category) { 162 \& OSSL_TRACE_CANCEL(category); 166 \& } OSSL_TRACE_END(category); 169 \& OSSL_TRACE1(category, format, arg1) 170 \& OSSL_TRACE2(category, format, arg1, arg2) 172 \& OSSL_TRACE9(category, format, arg1, ..., arg9) 174 \& /* check whether a trace category is enabled */ [all …]
|
/freebsd/contrib/ntp/libntp/lib/isc/include/isc/ |
H A D | log.h | 92 * 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 will have [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...] |
/freebsd/lib/libpmc/pmu-events/arch/x86/jaketown/ |
H A D | jkt-metrics.json | 3 …"BriefDescription": "This category represents fraction of slots where the processor's Frontend und… 7 …"PublicDescription": "This category represents fraction of slots where the processor's Frontend un… 10 …"BriefDescription": "This category represents fraction of slots where the processor's Frontend und… 14 …"PublicDescription": "This category represents fraction of slots where the processor's Frontend un… 17 …"BriefDescription": "This category represents fraction of slots wasted due to incorrect speculatio… 21 …category represents fraction of slots wasted due to incorrect speculations. This include slots use… 24 …"BriefDescription": "This category represents fraction of slots wasted due to incorrect speculatio… 28 …category represents fraction of slots wasted due to incorrect speculations. This include slots use… 31 …"BriefDescription": "This category represents fraction of slots where no uops are being delivered … 36 …"PublicDescription": "This category represents fraction of slots where no uops are being delivered… [all …]
|
/freebsd/contrib/ntp/sntp/libopts/ |
H A D | gettext.h | 72 # define dcgettext(Domainname, Msgid, Category) \ argument 73 ((void) (Category), dgettext (Domainname, Msgid)) 83 # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \ argument 84 ((void) (Category), dngettext (Domainname, Msgid1, Msgid2, N)) 127 #define dcpgettext(Domainname, Msgctxt, Msgid, Category) \ argument 128 pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, Category) 138 #define dcnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N, Category) \ argument 139 npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, Category) 151 int category) in pgettext_aux() argument 153 const char *translation = dcgettext (domain, msg_ctxt_id, category); in pgettext_aux() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang-c/ |
H A D | CXDiagnostic.h | 206 * Display the category number associated with this diagnostic, if any. 208 * The category number is displayed within brackets after the diagnostic text. 210 * \c -fdiagnostics-show-category=id. 215 * Display the category name associated with this diagnostic, if any. 217 * The category name is displayed within brackets after the diagnostic text. 219 * \c -fdiagnostics-show-category=name. 286 * Retrieve the category number for this diagnostic. 290 * retrieves the category number for the given diagnostic. 292 * \returns The number of the category that contains this diagnostic, or zero 298 * Retrieve the name of a particular diagnostic category. This [all …]
|
/freebsd/lib/libpmc/pmu-events/arch/x86/sandybridge/ |
H A D | snb-metrics.json | 3 …"BriefDescription": "This category represents fraction of slots where the processor's Frontend und… 7 …"PublicDescription": "This category represents fraction of slots where the processor's Frontend un… 10 …"BriefDescription": "This category represents fraction of slots where the processor's Frontend und… 14 …"PublicDescription": "This category represents fraction of slots where the processor's Frontend un… 17 …"BriefDescription": "This category represents fraction of slots wasted due to incorrect speculatio… 21 …category represents fraction of slots wasted due to incorrect speculations. This include slots use… 24 …"BriefDescription": "This category represents fraction of slots wasted due to incorrect speculatio… 28 …category represents fraction of slots wasted due to incorrect speculations. This include slots use… 31 …"BriefDescription": "This category represents fraction of slots where no uops are being delivered … 36 …"PublicDescription": "This category represents fraction of slots where no uops are being delivered… [all …]
|