Searched refs:pathname (Results 1 - 25 of 135) sorted by relevance

123456

/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
/linux-master/drivers/acpi/acpica/
H A Dutxfmutex.c18 acpi_string pathname,
26 * pathname - Mutex pathname (optional)
39 acpi_string pathname,
48 if (!ret_obj || (!handle && !pathname)) {
55 if (pathname != NULL) {
57 acpi_get_handle(handle, pathname,
86 * pathname - Mutex pathname (optional)
100 acpi_acquire_mutex(acpi_handle handle, acpi_string pathname, u1 argument
38 acpi_ut_get_mutex_object(acpi_handle handle, acpi_string pathname, union acpi_operand_object **ret_obj) argument
[all...]
H A Dextrace.c122 * pathname - Object path
132 u8 begin, u8 *aml, char *pathname)
137 if (pathname) {
141 begin ? "Begin" : "End", aml, pathname));
170 char *pathname = NULL; local
176 pathname = acpi_ns_get_normalized_pathname(method_node, TRUE);
179 enabled = acpi_ex_interpreter_trace_enabled(pathname);
199 pathname);
202 if (pathname) {
203 ACPI_FREE(pathname);
131 acpi_ex_trace_point(acpi_trace_event_type type, u8 begin, u8 *aml, char *pathname) argument
227 char *pathname = NULL; local
[all...]
H A Dnsarguments.c81 * PARAMETERS: pathname - Full pathname to the node (for error msgs)
94 acpi_ns_check_acpi_compliance(char *pathname, argument
119 ACPI_BIOS_ERROR_PREDEFINED((AE_INFO, pathname,
130 ACPI_BIOS_ERROR_PREDEFINED((AE_INFO, pathname,
154 ACPI_BIOS_ERROR_PREDEFINED((AE_INFO, pathname, ACPI_WARN_ALWAYS,
162 ACPI_BIOS_ERROR_PREDEFINED((AE_INFO, pathname, ACPI_WARN_ALWAYS,
174 * PARAMETERS: pathname - Full pathname to the node (for error msgs)
187 acpi_ns_check_argument_count(char *pathname, argument
[all...]
H A Dutstring.c187 * PARAMETERS: pathname - File pathname string to be converted
192 * the entire input file pathname string.
196 void ut_convert_backslashes(char *pathname) argument
199 if (!pathname) {
203 while (*pathname) {
204 if (*pathname == '\\') {
205 *pathname = '/';
208 pathname++;
H A Duterror.c26 * pathname - Full pathname to the node
41 char *pathname,
54 acpi_os_printf(ACPI_MSG_WARNING "%s: ", pathname);
68 * pathname - Full pathname to the node
84 char *pathname, u16 node_flags, const char *format, ...)
96 acpi_os_printf(ACPI_MSG_INFO "%s: ", pathname);
110 * pathname - Full pathname t
39 acpi_ut_predefined_warning(const char *module_name, u32 line_number, char *pathname, u16 node_flags, const char *format, ...) argument
82 acpi_ut_predefined_info(const char *module_name, u32 line_number, char *pathname, u16 node_flags, const char *format, ...) argument
124 acpi_ut_predefined_bios_error(const char *module_name, u32 line_number, char *pathname, u16 node_flags, const char *format, ...) argument
[all...]
H A Dutaddress.c166 char *pathname; local
199 pathname =
213 pathname));
214 ACPI_FREE(pathname);
H A Ddbexec.c144 status = acpi_evaluate_object(NULL, info->pathname,
165 info->pathname));
201 info->pathname[0] = 0;
203 if (acpi_ut_safe_strcat(info->pathname, sizeof(info->pathname),
210 if (acpi_ut_safe_strcat(info->pathname, sizeof(info->pathname),
216 acpi_db_prep_namestring(info->pathname);
219 acpi_os_printf("Evaluating %s\n", info->pathname);
428 status = acpi_get_handle(NULL, acpi_gbl_db_method_info.pathname,
[all...]
H A Dnsutils.c31 * DESCRIPTION: Print an object's full namespace pathname
32 * Manages allocation/freeing of a pathname buffer
48 /* Convert handle to full pathname and print it (with supplied message) */
267 /* Now we must have a path separator, or the pathname is bad */
616 * PARAMETERS: *pathname - Name to be found, in external (ASL) format. The
636 const char *pathname,
644 ACPI_CAST_PTR(char, pathname));
646 /* Simplest case is a null pathname */
648 if (!pathname) {
659 if (ACPI_IS_ROOT_PREFIX(pathname[
635 acpi_ns_get_node_unlocked(struct acpi_namespace_node *prefix_node, const char *pathname, u32 flags, struct acpi_namespace_node **return_node) argument
713 acpi_ns_get_node(struct acpi_namespace_node *prefix_node, const char *pathname, u32 flags, struct acpi_namespace_node **return_node) argument
[all...]
/linux-master/tools/power/acpi/tools/acpidump/
H A Dapfiles.c14 static int ap_is_existing_file(char *pathname);
20 * PARAMETERS: pathname - Output filename
28 static int ap_is_existing_file(char *pathname) argument
34 if (!stat(pathname, &stat_info)) {
56 * PARAMETERS: pathname - Output filename
65 int ap_open_output_file(char *pathname) argument
71 if (ap_is_existing_file(pathname) != 0) {
77 file = fopen(pathname, "w");
79 fprintf(stderr, "Could not open output file: %s\n", pathname);
86 gbl_output_filename = pathname;
179 ap_get_table_from_file(char *pathname, u32 *out_file_size) argument
[all...]
H A Dacpidump.h63 int ap_dump_table_from_file(char *pathname);
80 int ap_open_output_file(char *pathname);
84 struct acpi_table_header *ap_get_table_from_file(char *pathname,
H A Dapdump.c357 * PARAMETERS: pathname - File containing the binary ACPI table
365 int ap_dump_table_from_file(char *pathname) argument
373 table = ap_get_table_from_file(pathname, &file_size);
381 pathname);
389 table->length, file_size, pathname);
396 pathname, table->signature, file_size, file_size);
/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/include/linux/
H A Dinit_syscalls.h15 int __init init_unlink(const char *pathname);
16 int __init init_mkdir(const char *pathname, umode_t mode);
17 int __init init_rmdir(const char *pathname);
/linux-master/arch/parisc/kernel/
H A Dsys_parisc32.c29 const char __user * pathname)
33 dfd, pathname);
27 sys32_fanotify_mark(compat_int_t fanotify_fd, compat_uint_t flags, compat_uint_t mask0, compat_uint_t mask1, compat_int_t dfd, const char __user * pathname) argument
/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/arch/powerpc/platforms/cell/spufs/
H A Dsyscalls.c63 static long do_spu_create(const char __user *pathname, unsigned int flags, argument
70 dentry = user_path_create(AT_FDCWD, pathname, &path, LOOKUP_DIRECTORY);
/linux-master/drivers/block/rnbd/
H A Drnbd-log.h16 fn("<%s@%s> " fmt, (dev)->pathname, \
20 fn("<%s@%s>: " fmt, (dev)->pathname, \
/linux-master/tools/testing/selftests/bpf/progs/
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/kernel/
H A Daudit_fsnotify.c74 struct audit_fsnotify_mark *audit_alloc_mark(struct audit_krule *krule, char *pathname, int len) argument
82 if (pathname[0] != '/' || pathname[len-1] == '/')
85 dentry = kern_path_locked(pathname, &path);
99 audit_mark->path = pathname;
/linux-master/tools/perf/bench/
H A Dsyscall.c57 const char *pathname = "/bin/true"; local
58 char *const argv[] = { (char *)pathname, NULL };
65 execve(pathname, argv, NULL);
/linux-master/fs/
H A Dstatfs.c97 int user_statfs(const char __user *pathname, struct kstatfs *st) argument
103 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
192 SYSCALL_DEFINE2(statfs, const char __user *, pathname, struct statfs __user *, buf)
195 int error = user_statfs(pathname, &st);
201 SYSCALL_DEFINE3(statfs64, const char __user *, pathname, size_t, sz, struct statfs64 __user *, buf)
207 error = user_statfs(pathname, &st);
305 COMPAT_SYSCALL_DEFINE2(statfs, const char __user *, pathname, struct compat_statfs __user *, buf)
308 int error = user_statfs(pathname, &tmp);
348 int kcompat_sys_statfs64(const char __user * pathname, compat_size_t sz, struct compat_statfs64 __user * buf) argument
356 error = user_statfs(pathname,
[all...]
/linux-master/tools/testing/selftests/proc/
H A Dfd-003-kthread.c116 static inline int sys_statx(int dirfd, const char *pathname, int flags, argument
119 return syscall(SYS_statx, dirfd, pathname, flags, mask, stx);
122 static void test_lookup_fail(int fd, const char *pathname) argument
127 rv = sys_statx(fd, pathname, AT_SYMLINK_NOFOLLOW, 0, (void *)stx);
H A Dfd-001-lookup.c33 static void test_lookup_pass(const char *pathname) argument
39 rv = lstat(pathname, &st);
44 static void test_lookup_fail(const char *pathname) argument
49 rv = lstat(pathname, &st);
/linux-master/arch/arm64/kernel/
H A Dsys32.c23 COMPAT_SYSCALL_DEFINE3(aarch32_statfs64, const char __user *, pathname,
38 return kcompat_sys_statfs64(pathname, sz, buf);
88 COMPAT_SYSCALL_DEFINE4(aarch32_truncate64, const char __user *, pathname,
91 return ksys_truncate(pathname, arg_u64(length));

Completed in 316 milliseconds

123456