Lines Matching refs:pathname

419 _syscall5(int, sys_statx, int, dirfd, const char *, pathname, int, flags,
466 _syscall4(int,sys_utimensat,int,dirfd,const char *,pathname,
469 static int sys_utimensat(int dirfd, const char *pathname,
654 safe_syscall4(int, openat, int, dirfd, const char *, pathname, \ in safe_syscall3()
7817 static abi_long do_name_to_handle_at(abi_long dirfd, abi_long pathname, in do_name_to_handle_at() argument
7832 name = lock_user_string(pathname); in do_name_to_handle_at()
7840 unlock_user(name, pathname, 0); in do_name_to_handle_at()
7848 unlock_user(name, pathname, 0); in do_name_to_handle_at()
8341 const char *pathname; in do_guest_openat() local
8369 pathname = proc_name; in do_guest_openat()
8371 pathname = fname; in do_guest_openat()
8374 if (is_proc_myself(pathname, "exe")) { in do_guest_openat()
8383 if (fake_open->cmp(pathname, fake_open->filename)) { in do_guest_openat()
8422 return safe_openat(dirfd, path(pathname), flags, mode); in do_guest_openat()
8424 return openat(dirfd, path(pathname), flags, mode); in do_guest_openat()
8428 ssize_t do_guest_readlink(const char *pathname, char *buf, size_t bufsiz) in do_guest_readlink() argument
8432 if (!pathname || !buf) { in do_guest_readlink()
8443 if (is_proc_myself((const char *)pathname, "exe")) { in do_guest_readlink()
8452 ret = readlink(path(pathname), buf, bufsiz); in do_guest_readlink()
8459 abi_long pathname, abi_long guest_argp, in do_execv() argument
8534 p = lock_user_string(pathname); in do_execv()
8548 unlock_user(p, pathname, 0); in do_execv()