Home
last modified time | relevance | path

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

12345678910>>...63

/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()
57 * Skip tentative address when ns offload is enabled to avoid in iwl_mvm_send_proto_offload()
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 in iwl_mvm_send_proto_offload()
48 u32 enabled = 0, size; iwl_mvm_send_proto_offload() local
[all...]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.def57 CODEGENOPT(DataSections , 1, 0) ///< Set when -fdata-sections is enabled.
81 CODEGENOPT(DisableRedZone , 1, 0) ///< Set when -mno-red-zone is enabled.
102 CODEGENOPT(FunctionSections , 1, 0) ///< Set when -ffunction-sections is enabled.
103 CODEGENOPT(BBAddrMap , 1, 0) ///< Set when -fbasic-block-address-map is enabled.
105 ///< enabled.
107 ///< -finstrument-functions-after-inlining is enabled.
109 ///< -finstrument-function-entry-bare is enabled.
119 ///< enabled.
120 CODEGENOPT(StackSizeSection , 1, 0) ///< Set when -fstack-size-section is enabled.
122 ///< 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/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()
425 /* Possibly dump the firmware message to the console, if enabled */
[all...]
/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/contrib/llvm-project/openmp/runtime/src/
H A Dompt-general.cpp462 printf("ompt_pre_init(): ompt_enabled = %d\n", ompt_enabled.enabled);
483 ompt_enabled.enabled = !!ompt_start_tool_result->initialize(
487 if (!ompt_enabled.enabled) {
515 if (ompt_enabled.enabled) {
597 if (!ompt_enabled.enabled)
629 if (!ompt_enabled.enabled)
636 if (!ompt_enabled.enabled)
652 if (!ompt_enabled.enabled)
662 if (!ompt_enabled.enabled)
739 if (!ompt_enabled.enabled || __kmp_get_gtid() < 0)
[all …]
/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.
H A Dst,sta350.txt27 If parameter is missing, mode 0 will be enabled.
40 If present, thermal warning recovery is enabled.
43 If present, thermal warning adjustment is enabled.
46 If present, then fault recovery will be enabled.
64 If present, overcurrent warning adjustment is enabled.
72 power output is enabled.
87 If present, automatic invalid input detect mute is enabled.
100 enabled.
/freebsd/sys/kern/
H A Dkern_sharedpage.c148 uint32_t enabled, idx; in timehands_update() local
150 enabled = tc_fill_vdso_timehands(&th); in timehands_update()
163 if (enabled) in timehands_update()
172 tk->tk_enabled = enabled; in timehands_update()
181 uint32_t enabled, idx; in timehands_update32() local
183 enabled = tc_fill_vdso_timehands32(&th); in timehands_update32()
196 if (enabled) in timehands_update32()
200 tk->tk_enabled = enabled; in timehands_update32()
/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/contrib/wpa/wpa_supplicant/
H A Dwpas_kay.c47 static int wpas_enable_protect_frames(void *wpa_s, bool enabled) in wpas_enable_protect_frames() argument
49 return wpa_drv_enable_protect_frames(wpa_s, enabled); in wpas_enable_protect_frames()
53 static int wpas_enable_encrypt(void *wpa_s, bool enabled) in wpas_enable_encrypt() argument
55 return wpa_drv_enable_encrypt(wpa_s, enabled); in wpas_enable_encrypt()
59 static int wpas_set_replay_protect(void *wpa_s, bool enabled, u32 window) in wpas_set_replay_protect() argument
61 return wpa_drv_set_replay_protect(wpa_s, enabled, window); in wpas_set_replay_protect()
71 static int wpas_enable_controlled_port(void *wpa_s, bool enabled) in wpas_enable_controlled_port() argument
73 return wpa_drv_enable_controlled_port(wpa_s, enabled); in wpas_enable_controlled_port()
/freebsd/sys/dev/pwm/controller/allwinner/
H A Daw_pwm.c87 bool enabled; member
167 sc->enabled = true; in aw_pwm_attach()
341 if (enable && sc->enabled) in aw_pwm_channel_enable()
352 sc->enabled = enable; in aw_pwm_channel_enable()
358 aw_pwm_channel_is_enabled(device_t dev, u_int channel, bool *enabled) in aw_pwm_channel_is_enabled() argument
364 *enabled = sc->enabled; in aw_pwm_channel_is_enabled()
/freebsd/contrib/opencsd/decoder/source/mem_acc/
H A Dtrc_mem_acc_mapper.cpp90 if (m_cache.enabled() && bReadFromCurr) in ReadTargetMemory()
125 if (m_cache.enabled()) in InvalidateMemAccCache()
138 if (m_cache.enabled()) in RemoveAllAccessors()
142 if (m_cache.enabled()) in RemoveAllAccessors()
153 if (m_cache.enabled()) in RemoveAccessorByAddress()
158 if (m_cache.enabled()) in RemoveAccessorByAddress()
/freebsd/contrib/sqlite3/
H A Dconfigure.ac41 # Both are enabled by default. If, after command line processing both are
42 # still enabled, the script searches for editline first and automatically
123 AC_MSG_RESULT([enabled])
139 AC_MSG_RESULT([enabled])
154 AC_MSG_RESULT([enabled])
168 AC_MSG_RESULT([enabled])
185 AC_MSG_RESULT([enabled])
200 AC_MSG_RESULT([enabled])
210 [--enable-debug], [build with debugging features enabled [default=no]])],
/freebsd/contrib/file/magic/Magdir/
H A Dsmile15 # Bit 1 (mask 0x02): Whether shared String value checking was enabled during encoding, default …
16 # Bit 0 (mask 0x01): Whether shared property name checking was enabled during encoding, default…
30 >3 byte&0x02 0x02 shared String values enabled,
32 >3 byte&0x01 0x01 shared field names enabled
/freebsd/sys/dev/pwm/controller/rockchip/
H A Drk_pwm.c120 bool enabled; member
180 sc->enabled = true; in rk_pwm_attach()
347 if (enable && sc->enabled) in rk_pwm_channel_enable()
355 sc->enabled = enable; in rk_pwm_channel_enable()
361 rk_pwm_channel_is_enabled(device_t dev, u_int channel, bool *enabled) in rk_pwm_channel_is_enabled() argument
367 *enabled = sc->enabled; in rk_pwm_channel_is_enabled()
/freebsd/contrib/wpa/src/pae/
H A Dieee802_1x_secy_ops.c28 int secy_cp_control_protect_frames(struct ieee802_1x_kay *kay, bool enabled) in secy_cp_control_protect_frames() argument
44 return ops->enable_protect_frames(ops->ctx, enabled); in secy_cp_control_protect_frames()
48 int secy_cp_control_encrypt(struct ieee802_1x_kay *kay, bool enabled) in secy_cp_control_encrypt() argument
64 return ops->enable_encrypt(ops->ctx, enabled); in secy_cp_control_encrypt()
68 int secy_cp_control_replay(struct ieee802_1x_kay *kay, bool enabled, u32 win) in secy_cp_control_replay() argument
84 return ops->set_replay_protect(ops->ctx, enabled, win); in secy_cp_control_replay()
136 int secy_cp_control_enable_port(struct ieee802_1x_kay *kay, bool enabled) in secy_cp_control_enable_port() argument
152 return ops->enable_controlled_port(ops->ctx, enabled); in secy_cp_control_enable_port()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DTerminal.cpp76 llvm::Error Terminal::SetEcho(bool enabled) { in SetEcho() argument
84 if (enabled) in SetEcho()
92 llvm::Error Terminal::SetCanonical(bool enabled) { in SetCanonical() argument
100 if (enabled) in SetCanonical()
379 llvm::Error Terminal::SetHardwareFlowControl(bool enabled) { in SetHardwareFlowControl() argument
388 if (enabled) in SetHardwareFlowControl()
392 if (enabled) in SetHardwareFlowControl()

12345678910>>...63