| /linux-6.15/fs/ntfs3/ |
| H A D | dir.c | 522 static int ntfs_dir_count(struct inode *dir, bool *is_empty, size_t *dirs, in ntfs_dir_count() argument 536 if (is_empty) in ntfs_dir_count() 537 *is_empty = true; in ntfs_dir_count() 568 if (is_empty) { in ntfs_dir_count() 569 *is_empty = false; in ntfs_dir_count() 614 bool is_empty = false; in dir_is_empty() local 616 ntfs_dir_count(dir, &is_empty, NULL, NULL); in dir_is_empty() 618 return is_empty; in dir_is_empty()
|
| /linux-6.15/drivers/staging/greybus/ |
| H A D | audio_manager.c | 89 int is_empty; in gb_audio_manager_remove_all() local 99 is_empty = list_empty(&modules_list); in gb_audio_manager_remove_all() 103 if (!is_empty) in gb_audio_manager_remove_all()
|
| /linux-6.15/drivers/tty/serial/ |
| H A D | sifive.c | 375 static char __ssp_receive_char(struct sifive_serial_port *ssp, char *is_empty) in __ssp_receive_char() argument 382 if (!is_empty) in __ssp_receive_char() 385 *is_empty = (v & SIFIVE_SERIAL_RXDATA_EMPTY_MASK) >> in __ssp_receive_char() 405 char is_empty; in __ssp_receive_chars() local 410 ch = __ssp_receive_char(ssp, &is_empty); in __ssp_receive_chars() 411 if (is_empty) in __ssp_receive_chars() 714 char is_empty, ch; in sifive_serial_poll_get_char() local 716 ch = __ssp_receive_char(ssp, &is_empty); in sifive_serial_poll_get_char() 717 if (is_empty) in sifive_serial_poll_get_char()
|
| /linux-6.15/drivers/staging/media/atomisp/pci/runtime/queue/src/ |
| H A D | queue.c | 330 int ia_css_queue_is_empty(ia_css_queue_t *qhandle, bool *is_empty) in ia_css_queue_is_empty() argument 334 if ((!qhandle) || (!is_empty)) in ia_css_queue_is_empty() 342 *is_empty = ia_css_circbuf_is_empty(&qhandle->desc.cb_local); in ia_css_queue_is_empty() 355 *is_empty = ia_css_circbuf_desc_is_empty(&cb_desc); in ia_css_queue_is_empty()
|
| /linux-6.15/security/landlock/ |
| H A D | ruleset.c | 644 bool is_empty; in landlock_unmask_layers() local 650 is_empty = true; in landlock_unmask_layers() 654 is_empty = is_empty && !(*layer_masks)[access_bit]; in landlock_unmask_layers() 656 if (is_empty) in landlock_unmask_layers()
|
| /linux-6.15/rust/kernel/ |
| H A D | uaccess.rs | 207 pub fn is_empty(&self) -> bool { in is_empty() method 315 pub fn is_empty(&self) -> bool { in is_empty() method
|
| H A D | str.rs | 24 pub const fn is_empty(&self) -> bool { in is_empty() method 212 if self.0.is_empty() { in len_with_nul() 223 pub const fn is_empty(&self) -> bool { in is_empty() method 251 if bytes.is_empty() { in from_bytes_with_nul()
|
| H A D | security.rs | 40 pub fn is_empty(&self) -> bool { in is_empty() method
|
| H A D | list.rs | 247 pub fn is_empty(&self) -> bool { in is_empty() method 463 if self.is_empty() { in push_all_back() 466 } else if !other.is_empty() { in push_all_back()
|
| H A D | firmware.rs | 292 if !this.module_name.is_empty() { in push_module_name()
|
| /linux-6.15/fs/ubifs/ |
| H A D | recovery.c | 50 static int is_empty(void *buf, int len) in is_empty() function 161 if (!is_empty(buf, min_t(int, len, sz))) { in get_master_node() 171 if (!is_empty(buf, len)) in get_master_node() 414 return is_empty(p, check_len); in is_last_write() 466 if (is_empty(buf + skip, len - skip)) in no_more_nodes() 479 if (is_empty(buf + skip, len - skip)) in no_more_nodes() 685 } else if (!is_empty(buf, len)) { in ubifs_recover_leb() 924 if (err || !is_empty(sbuf, len)) { in recover_head()
|
| /linux-6.15/drivers/edac/ |
| H A D | bluefield_edac.c | 286 int is_empty = 1, i; in bluefield_edac_init_dimms() local 299 is_empty = 0; in bluefield_edac_init_dimms() 336 if (is_empty) in bluefield_edac_init_dimms()
|
| /linux-6.15/tools/testing/selftests/net/tcp_ao/ |
| H A D | rst.c | 213 bool is_empty = true; in test_wait_fds() local 228 is_empty = false; in test_wait_fds() 230 if (is_empty) in test_wait_fds()
|
| /linux-6.15/drivers/staging/media/atomisp/pci/runtime/queue/interface/ |
| H A D | ia_css_queue.h | 100 bool *is_empty);
|
| /linux-6.15/kernel/cgroup/ |
| H A D | cpuset-v1.c | 291 bool is_empty; in cpuset1_hotplug_update_tasks() local 309 is_empty = cpumask_empty(cs->cpus_allowed) || in cpuset1_hotplug_update_tasks() 317 if (is_empty && cs->css.cgroup->nr_populated_csets && in cpuset1_hotplug_update_tasks()
|
| /linux-6.15/rust/kernel/alloc/ |
| H A D | layout.rs | 98 pub const fn is_empty(&self) -> bool { in is_empty() method
|
| /linux-6.15/rust/pin-init/internal/src/ |
| H A D | pinned_drop.rs | 10 assert!(!toks.is_empty()); in pinned_drop()
|
| H A D | zeroable.rs | 23 let mut in_generic = !impl_generics.is_empty(); in derive()
|
| H A D | pin_data.rs | 37 if !ty_generics.is_empty() { in pin_data()
|
| /linux-6.15/fs/xfs/ |
| H A D | xfs_bmap_util.h | 55 int *is_empty);
|
| /linux-6.15/drivers/md/dm-vdo/indexer/ |
| H A D | volume.h | 137 bool *is_empty);
|
| /linux-6.15/rust/macros/ |
| H A D | kunit.rs | 13 if attr.is_empty() { in kunit_tests()
|
| /linux-6.15/drivers/net/wireless/intel/iwlwifi/dvm/ |
| H A D | eeprom.c | 840 bool is_empty = false; in iwl_is_otp_empty() local 846 is_empty = true; in iwl_is_otp_empty() 850 is_empty = true; in iwl_is_otp_empty() 853 return is_empty; in iwl_is_otp_empty()
|
| /linux-6.15/drivers/gpu/drm/xe/ |
| H A D | xe_guc_relay.c | 766 bool is_empty; in relay_needs_worker() local 769 is_empty = list_empty(&relay->incoming_actions); in relay_needs_worker() 772 return !is_empty; in relay_needs_worker()
|
| /linux-6.15/drivers/usb/serial/ |
| H A D | mxuport.c | 573 bool is_empty = true; in mxuport_tx_empty() local 591 is_empty = false; in mxuport_tx_empty() 595 return is_empty; in mxuport_tx_empty()
|