/third_party/pulseaudio/src/daemon/ |
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 = false } [all …]
|
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 = false } [all …]
|
D | daemon-conf.h | 53 bool is_set; member
|
/third_party/rust/crates/clap/src/builder/ |
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 is_set() method 3347 self.settings.is_set(s) || self.g_settings.is_set(s) in is_set() 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) in is_ignore_errors_set() 3572 self.is_set(AppSettings::DontDelimitTrailingValues) in is_dont_delimit_trailing_values_set() 3577 self.is_set(AppSettings::DisableVersionFlag) in is_disable_version_flag_set() [all …]
|
D | arg.rs | 825 pub(crate) fn is_set(&self, s: ArgSettings) -> bool { in is_set() method 826 self.settings.is_set(s) in is_set() 3936 self.is_set(ArgSettings::Required) in is_required_set() 3949 self.is_set(ArgSettings::AllowHyphenValues) in is_allow_hyphen_values_set() 3954 self.is_set(ArgSettings::AllowNegativeNumbers) in is_allow_negative_numbers_set() 3989 self.is_set(ArgSettings::Global) in is_global_set() 3994 self.is_set(ArgSettings::NextLineHelp) in is_next_line_help_set() 3999 self.is_set(ArgSettings::Hidden) in is_hide_set() 4004 self.is_set(ArgSettings::HideDefaultValue) in is_hide_default_value_set() 4009 self.is_set(ArgSettings::HidePossibleValues) in is_hide_possible_values_set() [all …]
|
/third_party/rust/crates/proc-macro-error/proc-macro-error-attr/src/ |
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()
|
D | settings.rs | 65 pub(crate) fn is_set(&self, setting: Setting) -> bool { in is_set() method
|
/third_party/rust/crates/nix/test/ |
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/ |
D | threading.py | 546 def is_set(self): member in Event 559 return self.is_set() 898 if self._started.is_set(): 922 if self._started.is_set(): 1083 if not self._started.is_set(): 1171 if self._is_stopped or not self._started.is_set(): 1195 if self._started.is_set(): 1370 if not self.finished.is_set(): 1414 assert not self._is_stopped and self._started.is_set()
|
/third_party/mesa3d/src/mapi/glapi/gen/ |
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/ |
D | cpu_set.rs | 8 if set.is_set(i) { in test_cpu_set()
|
/third_party/rust/crates/rustix/src/process/ |
D | sched.rs | 37 pub fn is_set(&self, field: usize) -> bool { in is_set() method
|
/third_party/python/Lib/test/ |
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())
|
D | test_queue.py | 64 if not thread.startedEvent.is_set(): 86 if not thread.startedEvent.is_set():
|
D | _test_multiprocessing.py | 678 self.assertTrue(evt.is_set()) 706 self.assertTrue(evt.is_set()) 723 self.assertTrue(evt.is_set()) 764 self.assertTrue(evt2.is_set()) 768 self.assertTrue(evt.is_set()) 1619 self.assertEqual(event.is_set(), False) 1631 self.assertEqual(event.is_set(), True) 1725 assert self._can_exit.is_set() 5532 assert obj.is_set() 5541 assert not o.is_set()
|
/third_party/python/Lib/test/test_asyncio/ |
D | test_locks.py | 310 self.assertFalse(ev.is_set()) 363 self.assertFalse(ev.is_set()) 366 self.assertTrue(ev.is_set()) 369 self.assertFalse(ev.is_set()) 386 self.assertFalse(ev.is_set())
|
/third_party/rust/crates/nix/src/ |
D | sched.rs | 190 pub fn is_set(&self, field: usize) -> Result<bool> { in is_set() method
|
/third_party/mesa3d/src/broadcom/vulkan/ |
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/ |
D | locks.py | 178 def is_set(self): member in Event
|
/third_party/skia/third_party/externals/freetype/src/sdf/ |
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/freetype/src/sdf/ |
D | ftsdf.c | 862 FT_Bool is_set = 0; in get_control_box() local 873 is_set = 1; in get_control_box() 877 if ( is_set ) in get_control_box() 900 is_set = 1; in get_control_box() 905 if ( is_set ) in get_control_box()
|
/third_party/rust/crates/regex/src/ |
D | exec.rs | 234 let is_set = self.options.pats.len() > 1; in parse() localVariable 258 } else if is_set && expr.is_anchored_start() { in parse() 275 } else if is_set && expr.is_anchored_end() { in parse()
|
/third_party/python/Lib/multiprocessing/ |
D | managers.py | 175 while not self.stop_event.is_set(): 249 while not self.stop_event.is_set(): 1086 def is_set(self): member in EventProxy
|
D | synchronize.py | 327 def is_set(self): member in Event
|
/third_party/rust/crates/clap/src/ |
D | macros.rs | 588 pub(crate) fn is_set(&self, s: $settings) -> bool {
|