HomeSort by: relevance | last modified time | path
    Searched refs:userpath (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/sys/
namei.h 75 int pathbuf_copyin(const char *userpath, struct pathbuf **ret);
86 int pathbuf_maybe_copyin(const char *userpath, enum uio_seg seg, struct pathbuf **ret);
namei.src 67 int pathbuf_copyin(const char *userpath, struct pathbuf **ret);
78 int pathbuf_maybe_copyin(const char *userpath, enum uio_seg seg, struct pathbuf **ret);
  /src/sys/uvm/
uvm_swap.c 518 char *userpath; local in function:sys_swapctl
538 userpath = kmem_alloc(SWAP_PATH_MAX, KM_SLEEP);
605 copystr("miniroot", userpath, SWAP_PATH_MAX, &len))
625 pathbuf_copystring(pb, userpath, SWAP_PATH_MAX);
626 len = strlen(userpath) + 1;
705 if (copystr(userpath, sdp->swd_path, len, 0) != 0)
761 kmem_free(userpath, SWAP_PATH_MAX);
  /src/sys/kern/
vfs_lookup.c 306 pathbuf_copyin(const char *userpath, struct pathbuf **ret)
315 error = copyinstr(userpath, pb->pb_path, PATH_MAX, NULL);
vfs_syscalls.c 3244 do_sys_stat(const char *userpath, unsigned int nd_flag, struct stat *sb)
3247 return do_sys_statat(NULL, AT_FDCWD, userpath, nd_flag, sb);
3251 do_sys_statat(struct lwp *l, int fdat, const char *userpath,
3260 error = pathbuf_copyin(userpath, &pb);

Completed in 51 milliseconds