/third_party/pulseaudio/src/daemon/ |
H A D | ohos_daemon-conf.c | 111 ,.rlimit_fsize = { .value = 0, .is_set = false }, 112 .rlimit_data = { .value = 0, .is_set = false }, 113 .rlimit_stack = { .value = 0, .is_set = false }, 114 .rlimit_core = { .value = 0, .is_set = false } 116 ,.rlimit_rss = { .value = 0, .is_set = false } 119 ,.rlimit_nproc = { .value = 0, .is_set = false } 122 ,.rlimit_nofile = { .value = 256, .is_set = true } 125 ,.rlimit_memlock = { .value = 0, .is_set = false } 128 ,.rlimit_as = { .value = 0, .is_set = false } 131 ,.rlimit_locks = { .value = 0, .is_set [all...] |
H A D | daemon-conf.c | 111 ,.rlimit_fsize = { .value = 0, .is_set = false }, 112 .rlimit_data = { .value = 0, .is_set = false }, 113 .rlimit_stack = { .value = 0, .is_set = false }, 114 .rlimit_core = { .value = 0, .is_set = false } 116 ,.rlimit_rss = { .value = 0, .is_set = false } 119 ,.rlimit_nproc = { .value = 0, .is_set = false } 122 ,.rlimit_nofile = { .value = 256, .is_set = true } 125 ,.rlimit_memlock = { .value = 0, .is_set = false } 128 ,.rlimit_as = { .value = 0, .is_set = false } 131 ,.rlimit_locks = { .value = 0, .is_set [all...] |
H A D | daemon-conf.h | 53 bool is_set; member
|
/third_party/rust/crates/clap/src/builder/ |
H A D | command.rs | 666 if self.settings.is_set(AppSettings::Multicall) { in try_get_matches_from_mut() 694 if !self.settings.is_set(AppSettings::NoBinaryName) { in try_get_matches_from_mut() 3346 pub(crate) fn is_set(&self, s: AppSettings) -> bool { in get_visible_aliases() 3347 self.settings.is_set(s) || self.g_settings.is_set(s) in get_visible_aliases() 3355 if self.is_set(AppSettings::ColorNever) { in get_color() 3358 } else if self.is_set(AppSettings::ColorAlways) { in get_color() 3562 self.is_set(AppSettings::NoBinaryName) in is_no_binary_name_set() 3567 self.is_set(AppSettings::IgnoreErrors) 3572 self.is_set(AppSetting in is_dont_delimit_trailing_values_set() [all...] |
H A D | arg.rs | 825 pub(crate) fn is_set(&self, s: ArgSettings) -> bool { 826 self.settings.is_set(s) 3937 self.is_set(ArgSettings::Required) in is_required_set() 3950 self.is_set(ArgSettings::AllowHyphenValues) in is_allow_hyphen_values_set() 3955 self.is_set(ArgSettings::AllowNegativeNumbers) in is_allow_negative_numbers_set() 3990 self.is_set(ArgSettings::Global) in is_global_set() 3995 self.is_set(ArgSettings::NextLineHelp) in is_next_line_help_set() 4000 self.is_set(ArgSettings::Hidden) in is_hide_set() 4005 self.is_set(ArgSettings::HideDefaultValue) in is_hide_default_value_set() 4010 self.is_set(ArgSetting in is_hide_possible_values_set() [all...] |
/third_party/rust/crates/proc-macro-error/proc-macro-error-attr/src/ |
H A D | lib.rs | 62 if settings.is_set(ProcMacroHack) { in impl_proc_macro_error() 66 if !(settings.is_set(AllowNotMacro) || is_proc_macro) { in impl_proc_macro_error() 88 let is_proc_macro_hack = settings.is_set(ProcMacroHack); in gen_body() 89 let closure = if settings.is_set(AssertUnwindSafe) { in gen_body() 104 let is_proc_macro_hack = settings.is_set(ProcMacroHack); in gen_body()
|
H A D | settings.rs | 65 pub(crate) fn is_set(&self, setting: Setting) -> bool {
|
/third_party/rust/crates/nix/test/ |
H A D | test_sched.rs | 11 if initial_affinity.is_set(field).unwrap() { in test_sched_affinity() 28 updated_affinity.is_set(field).unwrap(), in test_sched_affinity()
|
/third_party/python/Lib/ |
H A D | threading.py | 568 def is_set(self): member in Event 575 This method is deprecated, use is_set() instead. 579 warnings.warn('isSet() is deprecated, use is_set() instead', 581 return self.is_set() 927 if self._started.is_set(): 951 if self._started.is_set(): 1106 if not self._started.is_set(): 1194 if self._is_stopped or not self._started.is_set(): 1218 if self._started.is_set(): 1393 if not self.finished.is_set() [all...] |
/third_party/mesa3d/src/mapi/glapi/gen/ |
H A D | glX_proto_size.py | 108 def is_set( self ): member in glx_enum_function 353 if (ef.is_set() and self.emit_set) or (not ef.is_set() and self.emit_get): 391 if (ef.is_set() and self.emit_set) or (not ef.is_set() and self.emit_get):
|
/third_party/rust/crates/rustix/tests/process/ |
H A D | cpu_set.rs | 8 if set.is_set(i) { in test_cpu_set()
|
/third_party/rust/crates/rustix/src/process/ |
H A D | sched.rs | 37 pub fn is_set(&self, field: usize) -> bool { in is_set() functions
|
/third_party/node/deps/v8/tools/clusterfuzz/foozzie/ |
H A D | v8_commands.py | 147 if timeout_event.is_set():
|
/third_party/python/Lib/test/ |
H A D | lock_tests.py | 371 self.assertFalse(evt.is_set()) 373 self.assertTrue(evt.is_set()) 375 self.assertTrue(evt.is_set()) 377 self.assertFalse(evt.is_set()) 379 self.assertFalse(evt.is_set())
|
H A D | test_queue.py | 66 if not thread.startedEvent.is_set(): 88 if not thread.startedEvent.is_set():
|
/third_party/python/Lib/multiprocessing/ |
H A D | synchronize.py | 327 def is_set(self): member in Event 357 set_status = 'set' if self.is_set() else 'unset'
|
H A D | managers.py | 175 while not self.stop_event.is_set(): 249 while not self.stop_event.is_set(): 1089 _exposed_ = ('is_set', 'set', 'clear', 'wait') 1090 def is_set(self): member in EventProxy 1091 return self._callmethod('is_set')
|
/third_party/rust/crates/nix/src/ |
H A D | sched.rs | 190 pub fn is_set(&self, field: usize) -> Result<bool> { in is_set() functions 292 /// if cpu_set.is_set(0).unwrap() {
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-module.h | 54 bool is_set() const { return offset_ != 0; } in is_set() function in v8::internal::wasm::WireBytesRef 117 bool is_set() const { return kind() != kEmpty; } in is_set() function in v8::internal::wasm::ConstantExpression
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_locks.py | 303 self.assertFalse(ev.is_set()) 356 self.assertFalse(ev.is_set()) 359 self.assertTrue(ev.is_set()) 362 self.assertFalse(ev.is_set()) 379 self.assertFalse(ev.is_set())
|
/third_party/skia/third_party/externals/freetype/src/sdf/ |
H A D | ftsdf.c | 850 FT_Bool is_set = 0; in get_control_box() local 861 is_set = 1; in get_control_box() 865 if ( is_set ) in get_control_box() 888 is_set = 1; in get_control_box() 893 if ( is_set ) in get_control_box()
|
/third_party/mesa3d/src/broadcom/vulkan/ |
H A D | v3dv_device.c | 405 bool is_set; member 414 info->is_set = info->fd != -1; in v3dv_drm_handle_device() 415 if (!info->is_set) { in v3dv_drm_handle_device() 426 info->is_set = false; in v3dv_drm_handle_device() 487 .is_set = false, in create_display_fd_wayland() 522 if (!info.is_set) in create_display_fd_wayland()
|
/third_party/python/Lib/asyncio/ |
H A D | locks.py | 178 def is_set(self): member in Event
|
/third_party/rust/crates/regex/src/ |
H A D | exec.rs | 234 let is_set = self.options.pats.len() > 1; in parse() 258 } else if is_set && expr.is_anchored_start() { in parse() 275 } else if is_set && expr.is_anchored_end() { in parse()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | memory-lowering.cc | 108 if (allocate_operator_.is_set()) return; in EnsureAllocateOperator() 121 if (wasm_instance_node_.is_set()) return wasm_instance_node_.get(); in GetWasmInstanceNode()
|