Searched refs:pathname (Results 126 - 135 of 135) sorted by path

123456

/linux-master/tools/testing/cxl/test/
H A Dcxl.c580 mock_acpi_evaluate_integer(acpi_handle handle, acpi_string pathname, argument
586 if (!adev || strcmp(pathname, METHOD_NAME__UID) != 0)
587 return acpi_evaluate_integer(handle, pathname, arguments, data);
H A Dmock.c82 acpi_string pathname,
91 status = ops->acpi_evaluate_integer(handle, pathname, arguments,
94 status = acpi_evaluate_integer(handle, pathname, arguments,
81 __wrap_acpi_evaluate_integer(acpi_handle handle, acpi_string pathname, struct acpi_object_list *arguments, unsigned long long *data) argument
H A Dmock.h15 acpi_string pathname,
/linux-master/tools/testing/selftests/bpf/progs/
H A Dtest_attach_probe.c64 int BPF_UPROBE(handle_uprobe_byname2, const char *pathname, const char *mode) argument
H A Dtest_uprobe_autoattach.c92 int BPF_UPROBE(handle_uprobe_byname2, const char *pathname, const char *mode) argument
99 uprobe_byname2_parm1 = (u64)(long)pathname;
/linux-master/tools/testing/selftests/devices/
H A Dtest_discoverable_devices.py164 test_name = f"{current_node['meta']['pathname']}.{intf_num}.driver"
176 test_name = current_node["meta"]["pathname"] + ".driver"
181 pathname = ""
184 pathname = str(device["path"])
192 pathname = pathname + "/" + dev_type
195 pathname += "@" + str(device["dt-mmio"])
198 pathname = pathname + "/" + device["name"]
200 return pathname
[all...]
/linux-master/tools/testing/selftests/exec/
H A Dnon-regular.c15 void rm(struct __test_metadata *_metadata, const char *pathname, argument
21 rc = rmdir(pathname);
23 rc = unlink(pathname);
27 TH_LOG("Not ENOENT: %s", pathname);
31 TH_LOG("Failed to remove: %s", pathname);
37 char *pathname; local
64 ASSERT_EQ(symlink(paths[i], self->pathname), 0);
84 ASSERT_EQ(mkdir(self->pathname, 0755), 0);
103 rc = mknod(self->pathname, 0755 | variant->mode, dev);
137 ASSERT_EQ(mkfifo(self->pathname, 075
[all...]
/linux-master/tools/testing/selftests/mm/
H A Dhmm-tests.c118 char pathname[HMM_PATH_MAX]; local
121 snprintf(pathname, sizeof(pathname), "/dev/hmm_dmirror%d", unit);
122 fd = open(pathname, O_RDWR, 0);
125 pathname);
/linux-master/tools/testing/selftests/proc/
H A Dproc-pid-vm.c51 static inline long sys_execveat(int dirfd, const char *pathname, char **argv, char **envp, int flags) argument
53 return syscall(SYS_execveat, dirfd, pathname, argv, envp, flags);
/linux-master/tools/testing/selftests/rcutorture/bin/
H A Dkvm-remote-noreap.sh7 # Usage: kvm-remote-noreap.sh pathname
13 pathname="$1"
14 if test "$pathname" = ""
16 echo Usage: kvm-remote-noreap.sh pathname
19 if ! test -d "$pathname"
21 echo Usage: kvm-remote-noreap.sh pathname
22 echo " pathname must be a directory."
26 while test -d "$pathname"
28 find "$pathname" -type f -exec touch -c {} \; > /dev/null 2>&1

Completed in 222 milliseconds

123456