Searched refs:uap (Results 1 - 25 of 134) sorted by relevance

123456

/freebsd-10.2-release/sys/kern/
H A Dkern_xxx.c61 ogethostname(td, uap)
63 struct gethostname_args *uap;
66 size_t len = uap->len;
70 return (userland_sysctl(td, name, 2, uap->hostname, &len,
82 osethostname(td, uap)
84 register struct sethostname_args *uap;
90 return (userland_sysctl(td, name, 2, 0, 0, 0, uap->hostname,
91 uap->len, 0, 0));
101 ogethostid(td, uap)
103 struct ogethostid_args *uap;
209 ogetkerninfo(struct thread *td, struct getkerninfo_args *uap) argument
367 freebsd4_uname(struct thread *td, struct freebsd4_uname_args *uap) argument
441 freebsd4_getdomainname(struct thread *td, struct freebsd4_getdomainname_args *uap) argument
461 freebsd4_setdomainname(struct thread *td, struct freebsd4_setdomainname_args *uap) argument
[all...]
H A Dvfs_extattr.c58 sys_extattrctl(td, uap)
66 } */ *uap;
74 AUDIT_ARG_CMD(uap->cmd);
75 AUDIT_ARG_VALUE(uap->attrnamespace);
77 * uap->attrname is not always defined. We check again later when we
80 if (uap->attrname != NULL) {
81 error = copyinstr(uap->attrname, attrname, EXTATTR_MAXNAMELEN,
90 if (uap->filename != NULL) {
92 UIO_USERSPACE, uap->filename, td);
100 /* uap
[all...]
H A Dvfs_acl.c331 sys___acl_get_file(struct thread *td, struct __acl_get_file_args *uap) argument
336 NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, uap->path, td);
339 error = vacl_get_acl(td, nd.ni_vp, uap->type, uap->aclp);
349 sys___acl_get_link(struct thread *td, struct __acl_get_link_args *uap) argument
354 NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_USERSPACE, uap->path, td);
357 error = vacl_get_acl(td, nd.ni_vp, uap->type, uap->aclp);
367 sys___acl_set_file(struct thread *td, struct __acl_set_file_args *uap) argument
372 NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, uap
385 sys___acl_set_link(struct thread *td, struct __acl_set_link_args *uap) argument
403 sys___acl_get_fd(struct thread *td, struct __acl_get_fd_args *uap) argument
422 sys___acl_set_fd(struct thread *td, struct __acl_set_fd_args *uap) argument
441 sys___acl_delete_file(struct thread *td, struct __acl_delete_file_args *uap) argument
459 sys___acl_delete_link(struct thread *td, struct __acl_delete_link_args *uap) argument
477 sys___acl_delete_fd(struct thread *td, struct __acl_delete_fd_args *uap) argument
496 sys___acl_aclcheck_file(struct thread *td, struct __acl_aclcheck_file_args *uap) argument
514 sys___acl_aclcheck_link(struct thread *td, struct __acl_aclcheck_link_args *uap) argument
532 sys___acl_aclcheck_fd(struct thread *td, struct __acl_aclcheck_fd_args *uap) argument
[all...]
H A Dp1003_1b.c63 syscall_not_present(struct thread *td, const char *s, struct nosys_args *uap) argument
68 /* a " return nosys(p, uap); " here causes a core dump.
111 sys_sched_setparam(struct thread *td, struct sched_setparam_args *uap)
118 e = copyin(uap->param, &sched_param, sizeof(sched_param));
122 if (uap->pid == 0) {
127 targetp = pfind(uap->pid);
143 sys_sched_getparam(struct thread *td, struct sched_getparam_args *uap)
150 if (uap->pid == 0) {
155 targetp = pfind(uap->pid);
168 e = copyout(&sched_param, uap
[all...]
H A Dkern_context.c63 sys_getcontext(struct thread *td, struct getcontext_args *uap) argument
68 if (uap->ucp == NULL)
76 ret = copyout(&uc, uap->ucp, UC_COPY_SIZE);
82 sys_setcontext(struct thread *td, struct setcontext_args *uap) argument
87 if (uap->ucp == NULL)
90 ret = copyin(uap->ucp, &uc, UC_COPY_SIZE);
103 sys_swapcontext(struct thread *td, struct swapcontext_args *uap) argument
108 if (uap->oucp == NULL || uap->ucp == NULL)
116 ret = copyout(&uc, uap
[all...]
/freebsd-10.2-release/sys/i386/ibcs2/
H A Dibcs2_msg.c45 ibcs2_getmsg(td, uap)
47 struct ibcs2_getmsg_args *uap;
53 ibcs2_putmsg(td, uap)
55 struct ibcs2_putmsg_args *uap;
H A Dibcs2_misc.c96 ibcs2_ulimit(td, uap)
98 struct ibcs2_ulimit_args *uap;
109 switch (uap->cmd) {
121 rl.rlim_cur = uap->newlimit;
137 uap->cmd = IBCS2_SC_OPEN_MAX;
138 return ibcs2_sysconf(td, (struct ibcs2_sysconf_args *)uap);
147 ibcs2_wait(td, uap)
149 struct ibcs2_wait_args *uap;
159 pid = uap->a1;
160 statusp = (int *)uap
[all...]
H A Dibcs2_ipc.c116 struct ibcs2_msgget_args *uap = v; local
119 ap.key = uap->key;
120 ap.msgflg = uap->msgflg;
134 struct ibcs2_msgctl_args *uap = v; local
139 switch (uap->cmd) {
141 error = kern_msgctl(td, uap->msqid, IPC_STAT, &bs);
144 error = copyout(&is, uap->buf, sizeof(is));
148 error = copyin(uap->buf, &is, sizeof(is));
152 return (kern_msgctl(td, uap->msqid, IPC_SET, &bs));
154 return (kern_msgctl(td, uap
171 struct ibcs2_msgrcv_args *uap = v; local
193 struct ibcs2_msgsnd_args *uap = v; local
316 struct ibcs2_semctl_args *uap = v; local
360 struct ibcs2_semget_args *uap = v; local
379 struct ibcs2_semop_args *uap = v; local
456 struct ibcs2_shmat_args *uap = v; local
475 struct ibcs2_shmctl_args *uap = v; local
513 struct ibcs2_shmdt_args *uap = v; local
530 struct ibcs2_shmget_args *uap = v; local
[all...]
H A Dibcs2_signal.c193 ibcs2_sigaction(td, uap)
195 struct ibcs2_sigaction_args *uap;
202 if (uap->act != NULL) {
203 if ((error = copyin(uap->act, &isa, sizeof(isa))) != 0)
209 if (uap->sig <= 0 || uap->sig > IBCS2_NSIG)
211 error = kern_sigaction(td, ibcs2_to_bsd_sig[_SIG_IDX(uap->sig)], &nbsa,
213 if (error == 0 && uap->oact != NULL) {
215 error = copyout(&isa, uap->oact, sizeof(isa));
221 ibcs2_sigsys(td, uap)
[all...]
H A Dibcs2_stat.c106 ibcs2_statfs(td, uap)
108 struct ibcs2_statfs_args *uap;
114 CHECKALTEXIST(td, uap->path, &path);
119 return cvt_statfs(&sf, (caddr_t)uap->buf, uap->len);
123 ibcs2_fstatfs(td, uap)
125 struct ibcs2_fstatfs_args *uap;
130 error = kern_fstatfs(td, uap->fd, &sf);
133 return cvt_statfs(&sf, (caddr_t)uap->buf, uap
[all...]
H A Dibcs2_fcntl.c177 ibcs2_open(td, uap)
179 struct ibcs2_open_args *uap;
186 noctty = uap->flags & IBCS2_O_NOCTTY;
187 flags = cvt_o_flags(uap->flags);
188 if (uap->flags & O_CREAT)
189 CHECKALTCREAT(td, uap->path, &path);
191 CHECKALTEXIST(td, uap->path, &path);
192 ret = kern_open(td, path, UIO_SYSSPACE, flags, uap->mode);
225 ibcs2_creat(td, uap)
227 struct ibcs2_creat_args *uap;
[all...]
/freebsd-10.2-release/sys/compat/svr4/
H A Dsvr4_stat.c162 svr4_sys_stat(td, uap)
164 struct svr4_sys_stat_args *uap;
171 CHECKALTEXIST(td, uap->path, &path);
180 (void) svr4_add_socket(td, uap->path, &st);
182 return (copyout(&svr4_st, uap->ub, sizeof svr4_st));
187 svr4_sys_lstat(td, uap)
189 struct svr4_sys_lstat_args *uap;
196 CHECKALTEXIST(td, uap->path, &path);
205 (void) svr4_add_socket(td, uap->path, &st);
207 return (copyout(&svr4_st, uap
[all...]
H A Dsvr4_ipc.c198 struct svr4_sys_semctl_args *uap = v; local
205 switch (uap->cmd) {
237 error = kern_semctl(td, uap->semid, uap->semnum, cmd, &semun,
242 error = copyout(&ss, uap->arg.buf, sizeof(ss));
249 error = copyin(uap->arg.buf, (caddr_t) &ss, sizeof ss);
254 return (kern_semctl(td, uap->semid, uap->semnum, cmd, &semun,
265 return (kern_semctl(td, uap->semid, uap
281 struct svr4_sys_semget_args *uap = v; local
303 struct svr4_sys_semop_args *uap = v; local
388 struct svr4_sys_msgsnd_args *uap = v; local
413 struct svr4_sys_msgrcv_args *uap = v; local
436 struct svr4_sys_msgget_args *uap = v; local
457 struct svr4_sys_msgctl_args *uap = v; local
558 struct svr4_sys_shmat_args *uap = v; local
578 struct svr4_sys_shmdt_args *uap = v; local
598 struct svr4_sys_shmget_args *uap = v; local
620 struct svr4_sys_shmctl_args *uap = v; local
[all...]
H A Dsvr4_filio.c58 svr4_sys_poll(td, uap)
60 struct svr4_sys_poll_args *uap;
68 if (uap->nfds > maxfilesperproc && uap->nfds > FD_SETSIZE)
71 pa.fds = uap->fds;
72 pa.nfds = uap->nfds;
73 pa.timeout = uap->timeout;
75 siz = uap->nfds * sizeof(struct pollfd);
78 error = sys_poll(td, (struct poll_args *)uap);
80 if ((cerr = copyin(uap
[all...]
H A Dsvr4_fcntl.c382 svr4_sys_open(td, uap)
384 struct svr4_sys_open_args *uap;
390 CHECKALTEXIST(td, uap->path, &newpath);
392 bsd_flags = svr4_to_bsd_flags(uap->flags);
393 error = kern_open(td, newpath, UIO_SYSSPACE, bsd_flags, uap->mode);
397 /* uprintf("svr4_open(%s, 0x%0x, 0%o): %d\n", uap->path,
398 uap->flags, uap->mode, error);*/
436 svr4_sys_open64(td, uap)
438 struct svr4_sys_open64_args *uap;
531 struct svr4_sys_pread64_args *uap = v; local
575 struct svr4_sys_pwrite64_args *uap = v; local
[all...]
H A Dsvr4_misc.c122 svr4_sys_setitimer(td, uap)
124 struct svr4_sys_setitimer_args *uap;
132 svr4_sys_wait(td, uap)
134 struct svr4_sys_wait_args *uap;
158 if (uap->status)
159 error = copyout(&st, uap->status, sizeof(st));
165 svr4_sys_execv(td, uap)
167 struct svr4_sys_execv_args *uap;
174 CHECKALTEXIST(td, uap->path, &path);
181 error = exec_copyin_args(&eargs, path, UIO_SYSSPACE, uap
220 struct svr4_sys_time_args *uap = v; local
[all...]
/freebsd-10.2-release/sys/amd64/amd64/
H A Dsys_machdep.c99 sysarch_ldt(struct thread *td, struct sysarch_args *uap, int uap_space) argument
109 AUDIT_ARG_CMD(uap->op);
111 error = copyin(uap->parms, &la, sizeof(struct i386_ldt_args));
116 largs = (struct i386_ldt_args *)uap->parms;
118 switch (uap->op) {
173 sysarch(td, uap)
175 register struct sysarch_args *uap;
192 switch (uap->op) {
219 if (uap->op == I386_GET_LDT || uap
[all...]
/freebsd-10.2-release/sys/amd64/ia32/
H A Dia32_misc.c49 freebsd32_sysarch(struct thread *td, struct freebsd32_sysarch_args *uap) argument
56 if (uap->op == I386_SET_LDT || uap->op == I386_GET_LDT) {
57 if ((error = copyin(uap->parms, &uapl32, sizeof(uapl32))) != 0)
59 uap1.op = uap->op;
67 uap1.op = uap->op;
68 uap1.parms = uap->parms;
76 struct ofreebsd32_getpagesize_args *uap)
75 ofreebsd32_getpagesize(struct thread *td, struct ofreebsd32_getpagesize_args *uap) argument
/freebsd-10.2-release/sys/compat/linux/
H A Dlinux_timer.c105 linux_timer_create(struct thread *td, struct linux_timer_create_args *uap) argument
111 if (uap->evp == NULL) {
114 error = copyin(uap->evp, &l_ev, sizeof(l_ev));
122 error = linux_convert_l_clockid(&uap->clock_id);
125 error = kern_ktimer_create(td, uap->clock_id, evp, &id, -1);
127 error = copyout(&id, uap->timerid, sizeof(int));
135 linux_timer_settime(struct thread *td, struct linux_timer_settime_args *uap) argument
141 error = copyin(uap->new, &l_val, sizeof(l_val));
145 ovalp = uap->old != NULL ? &oval : NULL;
146 error = kern_ktimer_settime(td, uap
155 linux_timer_gettime(struct thread *td, struct linux_timer_gettime_args *uap) argument
170 linux_timer_getoverrun(struct thread *td, struct linux_timer_getoverrun_args *uap) argument
177 linux_timer_delete(struct thread *td, struct linux_timer_delete_args *uap) argument
[all...]
/freebsd-10.2-release/sys/compat/freebsd32/
H A Dfreebsd32_misc.c156 freebsd32_wait4(struct thread *td, struct freebsd32_wait4_args *uap) argument
162 if (uap->rusage != NULL)
166 error = kern_wait(td, uap->pid, &status, uap->options, rup);
169 if (uap->status != NULL)
170 error = copyout(&status, uap->status, sizeof(status));
171 if (uap->rusage != NULL && error == 0) {
173 error = copyout(&ru32, uap->rusage, sizeof(ru32));
179 freebsd32_wait6(struct thread *td, struct freebsd32_wait6_args *uap) argument
187 if (uap
247 freebsd4_freebsd32_getfsstat(struct thread *td, struct freebsd4_freebsd32_getfsstat_args *uap) argument
274 freebsd32_sigaltstack(struct thread *td, struct freebsd32_sigaltstack_args *uap) argument
400 freebsd32_execve(struct thread *td, struct freebsd32_execve_args *uap) argument
418 freebsd32_fexecve(struct thread *td, struct freebsd32_fexecve_args *uap) argument
486 freebsd32_mprotect(struct thread *td, struct freebsd32_mprotect_args *uap) argument
501 freebsd32_mmap(struct thread *td, struct freebsd32_mmap_args *uap) argument
600 freebsd6_freebsd32_mmap(struct thread *td, struct freebsd6_freebsd32_mmap_args *uap) argument
617 freebsd32_setitimer(struct thread *td, struct freebsd32_setitimer_args *uap) argument
641 freebsd32_getitimer(struct thread *td, struct freebsd32_getitimer_args *uap) argument
656 freebsd32_select(struct thread *td, struct freebsd32_select_args *uap) argument
679 freebsd32_pselect(struct thread *td, struct freebsd32_pselect_args *uap) argument
718 struct freebsd32_kevent_args *uap; local
745 struct freebsd32_kevent_args *uap; local
770 freebsd32_kevent(struct thread *td, struct freebsd32_kevent_args *uap) argument
795 freebsd32_gettimeofday(struct thread *td, struct freebsd32_gettimeofday_args *uap) argument
818 freebsd32_getrusage(struct thread *td, struct freebsd32_getrusage_args *uap) argument
876 freebsd32_readv(struct thread *td, struct freebsd32_readv_args *uap) argument
890 freebsd32_writev(struct thread *td, struct freebsd32_writev_args *uap) argument
904 freebsd32_preadv(struct thread *td, struct freebsd32_preadv_args *uap) argument
918 freebsd32_pwritev(struct thread *td, struct freebsd32_pwritev_args *uap) argument
1232 freebsd32_sendmsg(struct thread *td, struct freebsd32_sendmsg_args *uap) argument
1288 freebsd32_recvfrom(struct thread *td, struct freebsd32_recvfrom_args *uap) argument
1319 freebsd32_settimeofday(struct thread *td, struct freebsd32_settimeofday_args *uap) argument
1347 freebsd32_utimes(struct thread *td, struct freebsd32_utimes_args *uap) argument
1368 freebsd32_lutimes(struct thread *td, struct freebsd32_lutimes_args *uap) argument
1389 freebsd32_futimes(struct thread *td, struct freebsd32_futimes_args *uap) argument
1410 freebsd32_futimesat(struct thread *td, struct freebsd32_futimesat_args *uap) argument
1432 freebsd32_adjtime(struct thread *td, struct freebsd32_adjtime_args *uap) argument
1458 freebsd4_freebsd32_statfs(struct thread *td, struct freebsd4_freebsd32_statfs_args *uap) argument
1474 freebsd4_freebsd32_fstatfs(struct thread *td, struct freebsd4_freebsd32_fstatfs_args *uap) argument
1490 freebsd4_freebsd32_fhstatfs(struct thread *td, struct freebsd4_freebsd32_fhstatfs_args *uap) argument
1508 freebsd32_pread(struct thread *td, struct freebsd32_pread_args *uap) argument
1520 freebsd32_pwrite(struct thread *td, struct freebsd32_pwrite_args *uap) argument
1533 ofreebsd32_lseek(struct thread *td, struct ofreebsd32_lseek_args *uap) argument
1545 freebsd32_lseek(struct thread *td, struct freebsd32_lseek_args *uap) argument
1563 freebsd32_truncate(struct thread *td, struct freebsd32_truncate_args *uap) argument
1573 freebsd32_ftruncate(struct thread *td, struct freebsd32_ftruncate_args *uap) argument
1584 ofreebsd32_getdirentries(struct thread *td, struct ofreebsd32_getdirentries_args *uap) argument
1606 freebsd32_getdirentries(struct thread *td, struct freebsd32_getdirentries_args *uap) argument
1627 freebsd6_freebsd32_pread(struct thread *td, struct freebsd6_freebsd32_pread_args *uap) argument
1639 freebsd6_freebsd32_pwrite(struct thread *td, struct freebsd6_freebsd32_pwrite_args *uap) argument
1651 freebsd6_freebsd32_lseek(struct thread *td, struct freebsd6_freebsd32_lseek_args *uap) argument
1669 freebsd6_freebsd32_truncate(struct thread *td, struct freebsd6_freebsd32_truncate_args *uap) argument
1679 freebsd6_freebsd32_ftruncate(struct thread *td, struct freebsd6_freebsd32_ftruncate_args *uap) argument
1697 freebsd32_do_sendfile(struct thread *td, struct freebsd32_sendfile_args *uap, int compat) argument
1761 freebsd4_freebsd32_sendfile(struct thread *td, struct freebsd4_freebsd32_sendfile_args *uap) argument
1770 freebsd32_sendfile(struct thread *td, struct freebsd32_sendfile_args *uap) argument
1822 freebsd32_stat(struct thread *td, struct freebsd32_stat_args *uap) argument
1838 ofreebsd32_stat(struct thread *td, struct ofreebsd32_stat_args *uap) argument
1854 freebsd32_fstat(struct thread *td, struct freebsd32_fstat_args *uap) argument
1870 ofreebsd32_fstat(struct thread *td, struct ofreebsd32_fstat_args *uap) argument
1886 freebsd32_fstatat(struct thread *td, struct freebsd32_fstatat_args *uap) argument
1901 freebsd32_lstat(struct thread *td, struct freebsd32_lstat_args *uap) argument
1917 ofreebsd32_lstat(struct thread *td, struct ofreebsd32_lstat_args *uap) argument
1933 freebsd32_sysctl(struct thread *td, struct freebsd32_sysctl_args *uap) argument
1963 freebsd32_jail(struct thread *td, struct freebsd32_jail_args *uap) argument
2024 freebsd32_jail_set(struct thread *td, struct freebsd32_jail_set_args *uap) argument
2042 freebsd32_jail_get(struct thread *td, struct freebsd32_jail_get_args *uap) argument
2069 freebsd32_sigaction(struct thread *td, struct freebsd32_sigaction_args *uap) argument
2097 freebsd4_freebsd32_sigaction(struct thread *td, struct freebsd4_freebsd32_sigaction_args *uap) argument
2135 ofreebsd32_sigaction(struct thread *td, struct ofreebsd32_sigaction_args *uap) argument
2166 ofreebsd32_sigprocmask(struct thread *td, struct ofreebsd32_sigprocmask_args *uap) argument
2179 ofreebsd32_sigpending(struct thread *td, struct ofreebsd32_sigpending_args *uap) argument
2200 ofreebsd32_sigvec(struct thread *td, struct ofreebsd32_sigvec_args *uap) argument
2234 ofreebsd32_sigblock(struct thread *td, struct ofreebsd32_sigblock_args *uap) argument
2246 ofreebsd32_sigsetmask(struct thread *td, struct ofreebsd32_sigsetmask_args *uap) argument
2258 ofreebsd32_sigsuspend(struct thread *td, struct ofreebsd32_sigsuspend_args *uap) argument
2273 ofreebsd32_sigstack(struct thread *td, struct ofreebsd32_sigstack_args *uap) argument
2308 freebsd32_nanosleep(struct thread *td, struct freebsd32_nanosleep_args *uap) argument
2339 freebsd32_clock_gettime(struct thread *td, struct freebsd32_clock_gettime_args *uap) argument
2356 freebsd32_clock_settime(struct thread *td, struct freebsd32_clock_settime_args *uap) argument
2373 freebsd32_clock_getres(struct thread *td, struct freebsd32_clock_getres_args *uap) argument
2391 freebsd32_ktimer_create(struct thread *td, struct freebsd32_ktimer_create_args *uap) argument
2419 freebsd32_ktimer_settime(struct thread *td, struct freebsd32_ktimer_settime_args *uap) argument
2440 freebsd32_ktimer_gettime(struct thread *td, struct freebsd32_ktimer_gettime_args *uap) argument
2456 freebsd32_clock_getcpuclockid2(struct thread *td, struct freebsd32_clock_getcpuclockid2_args *uap) argument
2470 freebsd32_thr_new(struct thread *td, struct freebsd32_thr_new_args *uap) argument
2503 freebsd32_thr_suspend(struct thread *td, struct freebsd32_thr_suspend_args *uap) argument
2540 freebsd32_sigtimedwait(struct thread *td, struct freebsd32_sigtimedwait_args *uap) argument
2582 freebsd32_sigwaitinfo(struct thread *td, struct freebsd32_sigwaitinfo_args *uap) argument
2607 freebsd32_cpuset_setid(struct thread *td, struct freebsd32_cpuset_setid_args *uap) argument
2620 freebsd32_cpuset_getid(struct thread *td, struct freebsd32_cpuset_getid_args *uap) argument
2634 freebsd32_cpuset_getaffinity(struct thread *td, struct freebsd32_cpuset_getaffinity_args *uap) argument
2649 freebsd32_cpuset_setaffinity(struct thread *td, struct freebsd32_cpuset_setaffinity_args *uap) argument
2664 freebsd32_nmount(struct thread *td, struct freebsd32_nmount_args *uap) argument
2998 freebsd32_kldstat(struct thread *td, struct freebsd32_kldstat_args *uap) argument
3025 freebsd32_posix_fallocate(struct thread *td, struct freebsd32_posix_fallocate_args *uap) argument
3035 freebsd32_posix_fadvise(struct thread *td, struct freebsd32_posix_fadvise_args *uap) argument
3072 freebsd32_procctl(struct thread *td, struct freebsd32_procctl_args *uap) argument
3143 freebsd32_fcntl(struct thread *td, struct freebsd32_fcntl_args *uap) argument
3171 freebsd32_ppoll(struct thread *td, struct freebsd32_ppoll_args *uap) argument
[all...]
H A Dfreebsd32_capability.c53 struct freebsd32_cap_enter_args *uap)
65 struct freebsd32_cap_ioctls_limit_args *uap)
73 ncmds = uap->ncmds;
82 error = copyin(uap->cmds, cmds32, sizeof(cmds32[0]) * ncmds);
93 return (kern_cap_ioctls_limit(td, uap->fd, cmds, ncmds));
98 struct freebsd32_cap_ioctls_get_args *uap)
108 fd = uap->fd;
109 cmds32 = uap->cmds;
110 maxcmds = uap->maxcmds;
152 struct freebsd32_cap_enter_args *uap)
52 freebsd32_cap_enter(struct thread *td, struct freebsd32_cap_enter_args *uap) argument
64 freebsd32_cap_ioctls_limit(struct thread *td, struct freebsd32_cap_ioctls_limit_args *uap) argument
97 freebsd32_cap_ioctls_get(struct thread *td, struct freebsd32_cap_ioctls_get_args *uap) argument
151 freebsd32_cap_enter(struct thread *td, struct freebsd32_cap_enter_args *uap) argument
159 freebsd32_cap_ioctls_limit(struct thread *td, struct freebsd32_cap_ioctls_limit_args *uap) argument
167 freebsd32_cap_ioctls_get(struct thread *td, struct freebsd32_cap_ioctls_get_args *uap) argument
[all...]
/freebsd-10.2-release/sys/mips/mips/
H A Dsys_machdep.c56 sysarch(struct thread *td, struct sysarch_args *uap) argument
61 switch (uap->op) {
63 td->td_md.md_tls = uap->parms;
67 error = copyout(&tlsbase, uap->parms, sizeof(tlsbase));
/freebsd-10.2-release/sys/nfs/
H A Dnfs_nfssvc.c76 sys_nfssvc(struct thread *td, struct nfssvc_args *uap) argument
82 AUDIT_ARG_CMD(uap->flag);
85 if ((uap->flag & ~NFSSVC_GETSTATS) != 0) {
91 if ((uap->flag & (NFSSVC_ADDSOCK | NFSSVC_OLDNFSD | NFSSVC_NFSD)) &&
93 error = (*nfsd_call_nfsserver)(td, uap);
94 else if ((uap->flag & (NFSSVC_CBADDSOCK | NFSSVC_NFSCBD |
96 error = (*nfsd_call_nfscl)(td, uap);
97 else if ((uap->flag & (NFSSVC_IDNAME | NFSSVC_GETSTATS |
101 error = (*nfsd_call_nfscommon)(td, uap);
102 else if ((uap
[all...]
/freebsd-10.2-release/sys/ia64/ia64/
H A Dsys_machdep.c50 sysarch(struct thread *td, struct sysarch_args *uap) argument
54 switch(uap->op) {
/freebsd-10.2-release/sys/powerpc/powerpc/
H A Dsys_machdep.c40 freebsd32_sysarch(struct thread *td, struct freebsd32_sysarch_args *uap) argument
48 sysarch(struct thread *td, struct sysarch_args *uap) argument

Completed in 217 milliseconds

123456