| /linux/tools/testing/selftests/damon/ |
| H A D | sysfs.sh | 41 if [ "$to_ensure" = "exist" ] && [ ! -d "$dir" ] 57 if [ "$to_ensure" = "exist" ] 80 ensure_dir "$range_dir" "exist" 81 ensure_file "$range_dir/min" "exist" 600 82 ensure_file "$range_dir/max" "exist" 600 88 ensure_dir "$tried_regions_dir" "exist" 89 ensure_file "$tried_regions_dir/total_bytes" "exist" "400" 95 ensure_dir "$stats_dir" "exist" 98 ensure_file "$stats_dir/$f" "exist" "400" 105 ensure_file "$filter_dir/type" "exist" "60 [all...] |
| /linux/net/ceph/ |
| H A D | string_table.c | 13 struct ceph_string *cs, *exist; in ceph_find_or_create_string() local 17 exist = NULL; in ceph_find_or_create_string() 21 exist = rb_entry(*p, struct ceph_string, node); in ceph_find_or_create_string() 22 ret = ceph_compare_string(exist, str, len); in ceph_find_or_create_string() 29 exist = NULL; in ceph_find_or_create_string() 31 if (exist && !kref_get_unless_zero(&exist->kref)) { in ceph_find_or_create_string() 32 rb_erase(&exist->node, &string_tree); in ceph_find_or_create_string() 33 RB_CLEAR_NODE(&exist->node); in ceph_find_or_create_string() 34 exist = NULL; in ceph_find_or_create_string() 37 if (exist) in ceph_find_or_create_string() [all …]
|
| /linux/tools/testing/selftests/bpf/prog_tests/ |
| H A D | fd_array.c | 188 /* maps should still exist when original file descriptors are closed */ in check_fd_array_cnt__fd_array_ok() 191 if (!ASSERT_EQ(map_exists(map_ids[0]), true, "map_ids[0] should exist")) in check_fd_array_cnt__fd_array_ok() 193 if (!ASSERT_EQ(map_exists(map_ids[1]), true, "map_ids[1] should exist")) in check_fd_array_cnt__fd_array_ok() 227 /* maps should still exist when original file descriptors are closed */ in check_fd_array_cnt__duplicated_maps() 230 if (!ASSERT_EQ(map_exists(map_ids[0]), true, "map should exist")) in check_fd_array_cnt__duplicated_maps() 232 if (!ASSERT_EQ(map_exists(map_ids[1]), true, "map should exist")) in check_fd_array_cnt__duplicated_maps() 263 /* map should still exist when original file descriptor is closed */ in check_fd_array_cnt__referenced_maps_in_fd_array() 265 if (!ASSERT_EQ(map_exists(map_ids[0]), true, "map should exist")) in check_fd_array_cnt__referenced_maps_in_fd_array() 313 /* btf should still exist when original file descriptor is closed */ in check_fd_array_cnt__referenced_btfs() 323 if (!ASSERT_EQ(btf_exists(btf_id), true, "btf should exist")) in check_fd_array_cnt__referenced_btfs()
|
| /linux/tools/testing/selftests/liveupdate/ |
| H A D | liveupdate.c | 57 * closed without errors. Skips if the device does not exist. 64 SKIP(return, "%s does not exist.", LIVEUPDATE_DEV); in TEST_F() 83 SKIP(return, "%s does not exist.", LIVEUPDATE_DEV); in TEST_F() 117 SKIP(return, "%s does not exist", LIVEUPDATE_DEV); in TEST_F() 142 SKIP(return, "%s does not exist", LIVEUPDATE_DEV); in TEST_F() 184 SKIP(return, "%s does not exist", LIVEUPDATE_DEV); in TEST_F() 219 SKIP(return, "%s does not exist", LIVEUPDATE_DEV); in TEST_F() 267 SKIP(return, "%s does not exist", LIVEUPDATE_DEV); in TEST_F() 332 SKIP(return, "%s does not exist", LIVEUPDATE_DEV); in TEST_F() 362 SKIP(return, "%s does not exist", LIVEUPDATE_DE [all...] |
| /linux/drivers/hid/ |
| H A D | hid-roccat.c | 43 int exist; member 99 if (!device->exist) { in roccat_read() 143 if (!reader->device->exist) in roccat_poll() 164 pr_emerg("roccat device with minor %d doesn't exist\n", minor); in roccat_open() 214 pr_emerg("roccat device with minor %d doesn't exist\n", minor); in roccat_release() 225 if (device->exist) { in roccat_release() 346 device->exist = 1; in roccat_connect() 365 device->exist = 0; /* TODO exist maybe not needed */ in roccat_disconnect()
|
| H A D | hidraw.c | 67 if (!list->hidraw->exist) { in hidraw_read() 122 if (!hidraw_table[minor] || !hidraw_table[minor]->exist) { in hidraw_send_report() 201 if (!hidraw_table[minor] || !hidraw_table[minor]->exist) { in hidraw_get_report() 271 if (!list->hidraw->exist || hidraw_is_revoked(list)) in hidraw_poll() 295 if (!hidraw_table[minor] || !hidraw_table[minor]->exist) { in hidraw_open() 344 hidraw->exist = 0; in drop_ref() 355 if (!hidraw->exist) { in drop_ref() 521 if (!dev || !dev->exist || hidraw_is_revoked(list)) { in hidraw_ioctl() 646 dev->exist = 1; in hidraw_connect()
|
| /linux/fs/btrfs/ |
| H A D | ref-verify.c | 29 * These are meant to represent what should exist in the extent tree, these can 249 struct block_entry *be = NULL, *exist; in add_block_entry() local 266 exist = insert_block_entry(&fs_info->block_tree, be); in add_block_entry() 267 if (exist) { in add_block_entry() 271 exist_re = insert_root_entry(&exist->roots, re); in add_block_entry() 278 return exist; in add_block_entry() 299 struct ref_entry *ref = NULL, *exist; in add_tree_block() local 329 exist = insert_ref_entry(&be->refs, ref); in add_tree_block() 330 if (exist) { in add_tree_block() 331 exist->num_refs++; in add_tree_block() [all …]
|
| /linux/fs/ceph/ |
| H A D | snap.c | 1192 struct ceph_snapid_map *sm, *exist; in ceph_get_snapid_map() local 1196 exist = NULL; in ceph_get_snapid_map() 1200 exist = rb_entry(*p, struct ceph_snapid_map, node); in ceph_get_snapid_map() 1201 if (snap > exist->snap) { in ceph_get_snapid_map() 1203 } else if (snap < exist->snap) { in ceph_get_snapid_map() 1206 if (atomic_inc_return(&exist->ref) == 1) in ceph_get_snapid_map() 1207 list_del_init(&exist->lru); in ceph_get_snapid_map() 1210 exist = NULL; in ceph_get_snapid_map() 1213 if (exist) { in ceph_get_snapid_map() 1214 doutc(cl, "found snapid map %llx -> %x\n", exist->snap, in ceph_get_snapid_map() [all …]
|
| /linux/Documentation/devicetree/bindings/powerpc/ |
| H A D | ibm,powerpc-cpu-features.txt | 107 If bit 0 is set, then the hwcap-bit-nr property will exist. 119 feature to lesser privilege levels. If the property does not exist then no 125 If the HFSCR bit is set, then the hfscr-bit-nr property will exist and 138 feature to lesser privilege levels. If the property does not exist then no 144 If the FSCR bit is set, then the fscr-bit-nr property will exist and 179 This property may exist when the usable-privilege property value has PR bit set.
|
| /linux/arch/arm64/boot/dts/rockchip/ |
| H A D | rk3588-jaguar-pre-ict-tester.dtso | 92 * the loop doesn't exist on HW (soldering issue on 135 * the loop doesn't exist on HW (soldering issue on 145 * the loop doesn't exist on HW (soldering issue on 155 * the loop doesn't exist on HW (soldering issue on 165 * the loop doesn't exist on HW (soldering issue on
|
| /linux/tools/testing/selftests/pstore/ |
| H A D | pstore_post_reboot_tests | 40 prlog -n "Checking dmesg files exist in pstore filesystem ... " 43 prlog -n "Checking console files exist in pstore filesystem ... " 46 prlog -n "Checking pmsg files exist in pstore filesystem ... "
|
| /linux/Documentation/devicetree/bindings/regulator/ |
| H A D | mediatek,mt6358-regulator.yaml | 151 # vsram_core regulator doesn't exist on MT6358 155 # vm18 and vmddr regulators don't exist on MT6358 170 # vcam* regulators don't exist on MT6366 174 # vldo28 regulator doesn't exist on MT6366 176 # vs2_ldo4 supply pin doesn't exist on MT6366
|
| /linux/drivers/usb/serial/ |
| H A D | io_edgeport.h | 34 __u32 IsRS232 :1; /* Set if RS-232 ports exist */ 35 __u32 IsRS422 :1; /* Set if RS-422 ports exist */ 36 __u32 IsRS485 :1; /* Set if RS-485 ports exist */
|
| /linux/tools/testing/selftests/rtc/ |
| H A D | rtctest.c | 52 SKIP(return, "Skipping test since %s does not exist", rtc_file); in TEST_F() 121 SKIP(return, "Skipping test since %s does not exist", rtc_file); 159 SKIP(return, "Skipping test since %s does not exist", rtc_file); 188 SKIP(return, "Skipping test since %s does not exist", rtc_file); in TEST_F() 232 SKIP(return, "Skipping test since %s does not exist", rtc_file); in TEST_F() 302 SKIP(return, "Skipping test since %s does not exist", rtc_file); in TEST_F() 366 SKIP(return, "Skipping test since %s does not exist", rtc_file); 434 SKIP(return, "Skipping test since %s does not exist", rtc_file);
|
| /linux/tools/perf/ |
| H A D | perf-archive.sh | 22 echo "Provided exclude-buildids file $EXCLUDE_BUILDIDS does not exist" 36 echo "Provided file $UNPACK_TAR does not exist" 62 if [ ! -z "$INTERSECT" ]; then # prompt if file(s) already exist in the current directory 63 echo "File(s) ${INTERSECT::-1} already exist in the current directory."
|
| /linux/tools/testing/selftests/ftrace/test.d/ftrace/ |
| H A D | func_mod_trace.tc | 6 : "mod: allows to filter a non exist function" 10 : "mod: on exist module"
|
| /linux/include/soc/fsl/ |
| H A D | cpm.h | 61 #define CPMFCR_GBL ((u_char)0x00) /* Flag doesn't exist in CPM1 */ 62 #define CPMFCR_TC2 ((u_char)0x00) /* Flag doesn't exist in CPM1 */ 63 #define CPMFCR_DTB ((u_char)0x00) /* Flag doesn't exist in CPM1 */ 64 #define CPMFCR_BDB ((u_char)0x00) /* Flag doesn't exist in CPM1 */
|
| /linux/include/uapi/linux/netfilter/ipset/ |
| H A D | ip_set_list.h | 9 /* Set name to be added/deleted/tested does not exist. */ 15 /* Reference set does not exist */
|
| /linux/drivers/net/pse-pd/ |
| H A D | tps23881.c | 71 bool exist; member 595 bool exist; member 620 if (port_matrix[i].exist && in tps23881_is_chan_free() 650 port_matrix[pi_id].exist = true; in tps23881_match_port_matrix() 722 if (!port_matrix[i].exist || !port_matrix[i].is_4p) in tps23881_sort_port_matrix() 730 tmp_port_matrix[port_cnt].exist = true; in tps23881_sort_port_matrix() 749 if (!port_matrix[i].exist || port_matrix[i].is_4p) in tps23881_sort_port_matrix() 757 tmp_port_matrix[port_cnt].exist = true; in tps23881_sort_port_matrix() 829 if (port_matrix[i].exist) { in tps23881_write_port_matrix() 831 priv->port[pi_id].exist = true; in tps23881_write_port_matrix() [all …]
|
| /linux/drivers/net/wan/ |
| H A D | hdlc_fr.c | 13 (exist,new) -> 0,0 when "PVC create" or if "link unreliable" 18 -> 1 when "PVC up" and (exist,new) = 1,0 21 (exist,new,active) = FULL STATUS if "link reliable" 25 exist = new = not used 123 unsigned int exist: 1; member 446 !pvc->state.exist ? "deleted" : in fr_log_dlci_active() 509 if (state(hdlc)->reliable && !pvc->state.exist) { in fr_lmi_send() 510 pvc->state.exist = pvc->state.new = 1; in fr_lmi_send() 516 pvc->state.exist && !pvc->state.new) { in fr_lmi_send() 564 pvc->state.exist = pvc->state.active = 1; in fr_set_link_state() [all …]
|
| /linux/drivers/gpu/drm/i915/gt/ |
| H A D | intel_sseu.h | 19 * Maximum number of slices on older platforms. Slices no longer exist 26 * Maximum number of subslices that can exist within a HSW-style slice. This 39 /* Maximum number of EUs that can exist within a subslice or DSS. */
|
| /linux/drivers/input/ |
| H A D | joydev.c | 44 bool exist; member 204 if (!joydev->exist) in joydev_open_device() 222 if (joydev->exist && !--joydev->open) in joydev_close_device() 392 if (!joydev->exist) in joydev_read() 405 !joydev->exist || joydev_data_pending(client)); in joydev_read() 409 if (!joydev->exist) in joydev_read() 441 (joydev->exist ? 0 : (EPOLLHUP | EPOLLERR)); in joydev_poll() 609 if (!joydev->exist) { in joydev_compat_ioctl() 674 if (!joydev->exist) { in joydev_ioctl() 731 joydev->exist = false; in joydev_mark_dead() [all …]
|
| /linux/include/linux/ |
| H A D | generic-radix-tree.h | 22 * NULL if that entry does not exist 29 * The radix tree allocates one page of entries at a time, so entries may exist 216 * Returns a pointer to entry at @_idx, or NULL if that entry does not exist. 287 * If no more entries exist at or above @_iter's current position, returns NULL 303 * If no more entries exist at or below @_iter's current position, returns NULL
|
| /linux/drivers/acpi/acpica/ |
| H A D | dsfield.c | 160 /* Creating new namespace node, should not already exist */ in acpi_ds_create_buffer_field() 355 /* Lookup the Connection() namepath, it should already exist */ in acpi_ds_get_field_names() 377 /* Lookup the name, it should already exist */ in acpi_ds_get_field_names() 483 /* First arg is the name of the parent op_region (must already exist) */ in acpi_ds_create_field() 606 /* Creating new namespace node(s), should not already exist */ in acpi_ds_init_field_objects() 683 /* First arg is the name of the parent op_region (must already exist) */ in acpi_ds_create_bank_field() 705 /* Second arg is the Bank Register (Field) (must already exist) */ in acpi_ds_create_bank_field() 776 /* First arg is the name of the Index register (must already exist) */ in acpi_ds_create_index_field() 790 /* Second arg is the data register (must already exist) */ in acpi_ds_create_index_field()
|
| /linux/drivers/input/rmi4/ |
| H A D | rmi_f11.c | 215 * exist. 216 * @has_jitter_filter: query 13 and control 73..76 exist. 258 * and F11_2D_Ctrl21 exist. 260 * registers F11_2D_Ctrl22 through F11_2D_Ctrl26 exist. 268 * through F11_2D_Data27 exist. 271 * and F11_2D_Ctrl72 exist. 273 * F11_2D_Ctrl71 exist. 282 * F11_2D_Ctrl29 through F11_2D_Ctrl33 exist. 285 * F11_2D_Ctrl36 through F11_2D_Ctrl39 exist. 287 * configured and registers F11_2D_Ctrl40 and F11_2D_Ctrl41 exist. [all …]
|