Home
last modified time | relevance | path

Searched refs:enabled (Results 1 – 25 of 1607) sorted by relevance

12345678910>>...65

/freebsd/crypto/openssl/crypto/bio/
H A Dbio_sock2.c128 int enabled = 0; in BIO_connect() local
129 size_t enabledlen = sizeof(enabled); in BIO_connect()
132 if (sysctlbyname(OSSL_TFO_SYSCTL_CLIENT, &enabled, &enabledlen, NULL, 0) < 0) { in BIO_connect()
137 if (!(enabled & OSSL_TFO_CLIENT_FLAG)) { in BIO_connect()
142 int enabled = 0; in BIO_connect()
143 size_t enabledlen = sizeof(enabled); in BIO_connect()
146 if (sysctlbyname(OSSL_TFO_SYSCTL, &enabled, &enabledlen, NULL, 0) < 0) { in BIO_connect()
151 if (!(enabled & OSSL_TFO_CLIENT_FLAG)) { in BIO_connect()
379 int enabled = 0; in BIO_listen() local
380 size_t enabledlen = sizeof(enabled); in BIO_listen()
[all …]
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_map.c116 dtrace_eprobedesc_t *enabled, *nenabled; local
152 if ((enabled = malloc(sizeof (dtrace_eprobedesc_t))) == NULL)
155 bzero(enabled, sizeof (dtrace_eprobedesc_t));
156 enabled->dtepd_epid = id;
157 enabled->dtepd_nrecs = 1;
160 if (dt_ioctl(dtp, DTRACEIOC_EPROBE, enabled) == -1) {
162 if (dt_ioctl(dtp, DTRACEIOC_EPROBE, &enabled) == -1) {
165 free(enabled);
169 if (DTRACE_SIZEOF_EPROBEDESC(enabled) != sizeof (*enabled)) {
175 malloc(DTRACE_SIZEOF_EPROBEDESC(enabled))) != NULL)
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/
H A Dtst.Enable.ksh.out1 …legalStateException: Not all compiled probes are enabled. Compiled description dtrace:::END not en…
2 java.lang.IllegalStateException: program already enabled
3 java.lang.IllegalStateException: program already enabled
4 …galStateException: Not all compiled probes are enabled. Compiled description syscall:::return not
5 java.lang.IllegalStateException: program already enabled
H A Dtst.StateMachine.ksh.out3 enabled: false
16 enabled: false
22 enabled: false
24 … compiled probes are enabled. Compiled description syscall:::entry { @[execname] = count(); } tick…
27 enabled: true
37 enabled: false
49 enabled: false
54 enabled: false
/freebsd/contrib/kyua/drivers/
H A Dlist_tests_helpers.cpp82 std::string enabled; in ATF_INIT_TEST_CASES() local
86 enabled = "config_in_head crash_list no_properties some_properties"; in ATF_INIT_TEST_CASES()
88 enabled = tests; in ATF_INIT_TEST_CASES()
90 if (enabled.find("config_in_head") != std::string::npos) in ATF_INIT_TEST_CASES()
92 if (enabled.find("crash_list") != std::string::npos) in ATF_INIT_TEST_CASES()
94 if (enabled.find("no_properties") != std::string::npos) in ATF_INIT_TEST_CASES()
96 if (enabled.find("some_properties") != std::string::npos) in ATF_INIT_TEST_CASES()
/freebsd/contrib/kyua/bootstrap/
H A Datf_helpers.cpp57 std::string enabled; in ATF_INIT_TEST_CASES() local
61 enabled = "fails passes skips"; in ATF_INIT_TEST_CASES()
63 enabled = tests; in ATF_INIT_TEST_CASES()
65 if (enabled.find("fails") != std::string::npos) in ATF_INIT_TEST_CASES()
67 if (enabled.find("passes") != std::string::npos) in ATF_INIT_TEST_CASES()
69 if (enabled.find("skips") != std::string::npos) in ATF_INIT_TEST_CASES()
/freebsd/sys/contrib/dev/iwlwifi/mvm/
H A Doffloading.c49 u32 enabled = 0, size; in iwl_mvm_send_proto_offload() local
116 enabled |= IWL_D3_PROTO_IPV6_VALID; in iwl_mvm_send_proto_offload()
143 enabled |= IWL_D3_PROTO_IPV6_VALID; in iwl_mvm_send_proto_offload()
165 enabled |= IWL_D3_PROTO_IPV6_VALID; in iwl_mvm_send_proto_offload()
170 if (offload_ns && (enabled & IWL_D3_PROTO_IPV6_VALID)) in iwl_mvm_send_proto_offload()
171 enabled |= IWL_D3_PROTO_OFFLOAD_NS; in iwl_mvm_send_proto_offload()
197 enabled |= IWL_D3_PROTO_OFFLOAD_ARP | IWL_D3_PROTO_IPV4_VALID; in iwl_mvm_send_proto_offload()
204 enabled |= IWL_D3_PROTO_OFFLOAD_BTM; in iwl_mvm_send_proto_offload()
207 common->enabled = cpu_to_le32(enabled); in iwl_mvm_send_proto_offload()
/freebsd/contrib/pam-krb5/tests/data/scripts/trace/
H A Dsupported26 DEBUG enabled trace logging to %0
31 DEBUG enabled trace logging to %0
35 DEBUG enabled trace logging to %0
38 DEBUG enabled trace logging to %0
43 DEBUG enabled trace logging to %0
48 DEBUG enabled trace logging to %0
53 DEBUG enabled trace logging to %0
56 DEBUG enabled trace logging to %0
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.def48 CODEGENOPT(DataSections , 1, 0, Benign) ///< Set when -fdata-sections is enabled.
72 CODEGENOPT(DisableRedZone , 1, 0, Benign) ///< Set when -mno-red-zone is enabled.
94 CODEGENOPT(FunctionSections , 1, 0, Benign) ///< Set when -ffunction-sections is enabled.
95 CODEGENOPT(BBAddrMap , 1, 0, Benign) ///< Set when -fbasic-block-address-map is enabled.
97 ///< enabled.
99 ///< -finstrument-functions-after-inlining is enabled.
101 ///< -finstrument-function-entry-bare is enabled.
113 ///< enabled.
114 CODEGENOPT(StackSizeSection , 1, 0, Benign) ///< Set when -fstack-size-section is enabled.
116 ///< Set when -femit-compact-unwind-non-canonical is enabled.
[all …]
/freebsd/sys/netipsec/
H A Dsubr_ipsec.c236 type ret = (type)ipsec_kmod_enter(&sc->enabled); \
239 ipsec_kmod_exit(&sc->enabled); \
271 .enabled = 0,
295 KASSERT(tcp_ipsec_support->enabled == 0, ("TCP-MD5 already enabled")); in IPSEC_KMOD_METHOD()
297 tcp_ipsec_support->enabled |= IPSEC_MODULE_ENABLED; in IPSEC_KMOD_METHOD()
304 if (tcp_ipsec_support->enabled & IPSEC_MODULE_ENABLED) { in tcpmd5_support_disable()
305 ipsec_kmod_drain(&tcp_ipsec_support->enabled); in tcpmd5_support_disable()
317 .enabled = 0,
325 .enabled = 0,
401 KASSERT(sc->enabled == 0, ("IPsec already enabled")); in ipsec_support_enable()
[all …]
/freebsd/contrib/expat/tests/
H A Druntests.c102 for (int enabled = 0; enabled <= 1; ++enabled) { in main() local
104 g_reparseDeferralEnabledDefault = enabled; in main()
106 g_chunkSize, enabled); in main()
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Defi.h44 bool enabled = false; in __efi_enabled() local
50 enabled = efi_boot; in __efi_enabled()
52 enabled = preload_search_info(preload_kmdp, in __efi_enabled()
60 return (enabled); in __efi_enabled()
/freebsd/usr.sbin/pkg/
H A DFreeBSD.conf.quarterly-release6 # echo "FreeBSD-ports: { enabled: no }" >> /usr/local/etc/pkg/repos/FreeBSD.conf
7 # echo "FreeBSD-ports-kmods: { enabled: no }" >> /usr/local/etc/pkg/repos/FreeBSD.conf
17 enabled: yes
24 enabled: yes
31 enabled: no
H A DFreeBSD.conf.latest6 # echo "FreeBSD-ports: { enabled: no }" >> /usr/local/etc/pkg/repos/FreeBSD.conf
7 # echo "FreeBSD-ports-kmods: { enabled: no }" >> /usr/local/etc/pkg/repos/FreeBSD.conf
17 enabled: yes
24 enabled: yes
31 enabled: no
H A DFreeBSD.conf.quarterly7 # echo "FreeBSD-ports: { enabled: no }" >> /usr/local/etc/pkg/repos/FreeBSD.conf
8 # echo "FreeBSD-ports-kmods: { enabled: no }" >> /usr/local/etc/pkg/repos/FreeBSD.conf
18 enabled: yes
25 enabled: yes
32 enabled: no
/freebsd/sys/dev/ice/
H A Dice_fw_logging.c156 bool enabled; in ice_sysctl_fwlog_set_cfg_options() local
158 enabled = !!(cfg->options & option); in ice_sysctl_fwlog_set_cfg_options()
160 error = sysctl_handle_bool(oidp, &enabled, 0, req); in ice_sysctl_fwlog_set_cfg_options()
164 if (enabled) in ice_sysctl_fwlog_set_cfg_options()
228 u8 enabled; in ice_sysctl_fwlog_register() local
238 enabled = true; in ice_sysctl_fwlog_register()
240 enabled = false; in ice_sysctl_fwlog_register()
242 error = sysctl_handle_bool(oidp, &enabled, 0, req); in ice_sysctl_fwlog_register()
249 if (enabled) { in ice_sysctl_fwlog_register()
/freebsd/sys/dev/ixgbe/
H A Dixgbe_fw_logging.c59 bool enabled; in ixgbe_sysctl_fwlog_set_cfg_options() local
61 enabled = !!(cfg->options & option); in ixgbe_sysctl_fwlog_set_cfg_options()
63 error = sysctl_handle_bool(oidp, &enabled, 0, req); in ixgbe_sysctl_fwlog_set_cfg_options()
67 if (enabled) in ixgbe_sysctl_fwlog_set_cfg_options()
131 u8 enabled; in ixgbe_sysctl_fwlog_register() local
136 enabled = true; in ixgbe_sysctl_fwlog_register()
138 enabled = false; in ixgbe_sysctl_fwlog_register()
140 error = sysctl_handle_bool(oidp, &enabled, 0, req); in ixgbe_sysctl_fwlog_register()
144 if (enabled) { in ixgbe_sysctl_fwlog_register()
/freebsd/contrib/processor-trace/libipt/src/
H A Dpt_insn_decoder.c54 decoder->enabled = 0; in pt_insn_reset()
80 if (!decoder->enabled) in pt_insn_status()
202 if (!decoder->enabled) in pt_insn_tick()
313 decoder->enabled = 1; in pt_insn_start()
783 if (!decoder->enabled) in pt_insn_proceed_postponed()
1122 if (decoder->enabled) in pt_insn_check_ip_event()
1135 if (decoder->enabled) in pt_insn_check_ip_event()
1151 if (!ev->ip_suppressed && decoder->enabled && in pt_insn_check_ip_event()
1158 if (!ev->ip_suppressed && decoder->enabled && in pt_insn_check_ip_event()
1179 if (decoder->enabled) in pt_insn_check_ip_event()
[all …]
/freebsd/sys/dev/random/
H A Drdseed.c62 static bool enabled = true; variable
63 SYSCTL_BOOL(_kern_random_rdseed, OID_AUTO, enabled, CTLFLAG_RDTUN, &enabled, 0,
112 if (has_rdseed && enabled) { in rdseed_modevent()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dompt-general.cpp467 printf("ompt_pre_init(): ompt_enabled = %d\n", ompt_enabled.enabled);
488 ompt_enabled.enabled = !!ompt_start_tool_result->initialize(
492 if (!ompt_enabled.enabled) {
521 if (ompt_enabled.enabled) {
605 if (!ompt_enabled.enabled)
637 if (!ompt_enabled.enabled)
644 if (!ompt_enabled.enabled)
660 if (!ompt_enabled.enabled)
670 if (!ompt_enabled.enabled)
747 if (!ompt_enabled.enabled || __kmp_get_gtid() < 0)
[all …]
/freebsd/crypto/openssl/ssl/quic/
H A Dqlog.c38 size_t enabled[NUM_ENABLED_W]; member
246 int enabled) in ossl_qlog_set_event_type_enabled() argument
251 bit_set(qlog->enabled, event_type, enabled); in ossl_qlog_set_event_type_enabled()
260 return bit_get(qlog->enabled, event_type) != 0; in ossl_qlog_enabled()
640 static void filter_apply(size_t *enabled, int add, in filter_apply() argument
648 bit_set(enabled, QLOG_EVENT_TYPE_##e_cat##_##e_name, add); in filter_apply()
689 size_t cat_l, event_l, enabled[NUM_ENABLED_W]; in ossl_qlog_set_filter() local
692 memcpy(enabled, qlog->enabled, sizeof(enabled)); in ossl_qlog_set_filter()
714 filter_apply(enabled, add, NULL, 0, NULL, 0); in ossl_qlog_set_filter()
727 filter_apply(enabled, add, cat, cat_l, event, event_l); in ossl_qlog_set_filter()
[all …]
/freebsd/contrib/bmake/unit-tests/
H A Dvarname-make_stack_trace.mk20 @MAKE_STACK_TRACE=yes ${MAKE} -f ${MAKEFILE} enabled-compat || :
21 @MAKE_STACK_TRACE=yes ${MAKE} -f ${MAKEFILE} -j1 enabled-parallel || :
34 enabled-compat: .PHONY
38 enabled-parallel: .PHONY
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Dst,sta32x.txt23 If specified, the clock will be enabled when the codec is probed,
31 If parameter is missing, mode 0 will be enabled.
44 If present, thermal warning recovery is enabled.
47 If present, fault detect recovery is enabled.
50 If present, thermal warning adjustment is enabled.
53 If present, then fault recovery will be enabled.
68 power output is enabled.
79 If present, automatic invalid input detect mute is enabled.
/freebsd/contrib/arm-optimized-routines/string/test/
H A Dmte.h31 static int enabled = -1; in mte_enabled() local
32 if (enabled == -1) in mte_enabled()
38 enabled = (res == 0); in mte_enabled()
40 return enabled; in mte_enabled()
/freebsd/sys/kern/
H A Dkern_sharedpage.c147 uint32_t enabled, idx; in timehands_update() local
149 enabled = tc_fill_vdso_timehands(&th); in timehands_update()
162 if (enabled) in timehands_update()
171 tk->tk_enabled = enabled; in timehands_update()
180 uint32_t enabled, idx; in timehands_update32() local
182 enabled = tc_fill_vdso_timehands32(&th); in timehands_update32()
195 if (enabled) in timehands_update32()
199 tk->tk_enabled = enabled; in timehands_update32()

12345678910>>...65