Lines Matching defs:p

22 		struct exit_args *p = params;
23 iarg[a++] = p->rval; /* int */
34 struct read_args *p = params;
35 iarg[a++] = p->fd; /* int */
36 uarg[a++] = (intptr_t)p->buf; /* void * */
37 uarg[a++] = p->nbyte; /* size_t */
43 struct write_args *p = params;
44 iarg[a++] = p->fd; /* int */
45 uarg[a++] = (intptr_t)p->buf; /* const void * */
46 uarg[a++] = p->nbyte; /* size_t */
52 struct open_args *p = params;
53 uarg[a++] = (intptr_t)p->path; /* const char * */
54 iarg[a++] = p->flags; /* int */
55 iarg[a++] = p->mode; /* mode_t */
61 struct close_args *p = params;
62 iarg[a++] = p->fd; /* int */
68 struct wait4_args *p = params;
69 iarg[a++] = p->pid; /* int */
70 uarg[a++] = (intptr_t)p->status; /* int * */
71 iarg[a++] = p->options; /* int */
72 uarg[a++] = (intptr_t)p->rusage; /* struct rusage * */
78 struct link_args *p = params;
79 uarg[a++] = (intptr_t)p->path; /* const char * */
80 uarg[a++] = (intptr_t)p->link; /* const char * */
86 struct unlink_args *p = params;
87 uarg[a++] = (intptr_t)p->path; /* const char * */
93 struct chdir_args *p = params;
94 uarg[a++] = (intptr_t)p->path; /* const char * */
100 struct fchdir_args *p = params;
101 iarg[a++] = p->fd; /* int */
107 struct chmod_args *p = params;
108 uarg[a++] = (intptr_t)p->path; /* const char * */
109 iarg[a++] = p->mode; /* mode_t */
115 struct chown_args *p = params;
116 uarg[a++] = (intptr_t)p->path; /* const char * */
117 iarg[a++] = p->uid; /* int */
118 iarg[a++] = p->gid; /* int */
124 struct break_args *p = params;
125 uarg[a++] = (intptr_t)p->nsize; /* char * */
136 struct mount_args *p = params;
137 uarg[a++] = (intptr_t)p->type; /* const char * */
138 uarg[a++] = (intptr_t)p->path; /* const char * */
139 iarg[a++] = p->flags; /* int */
140 uarg[a++] = (intptr_t)p->data; /* void * */
146 struct unmount_args *p = params;
147 uarg[a++] = (intptr_t)p->path; /* const char * */
148 iarg[a++] = p->flags; /* int */
154 struct setuid_args *p = params;
155 uarg[a++] = p->uid; /* uid_t */
171 struct ptrace_args *p = params;
172 iarg[a++] = p->req; /* int */
173 iarg[a++] = p->pid; /* pid_t */
174 uarg[a++] = (intptr_t)p->addr; /* caddr_t */
175 iarg[a++] = p->data; /* int */
181 struct recvmsg_args *p = params;
182 iarg[a++] = p->s; /* int */
183 uarg[a++] = (intptr_t)p->msg; /* struct msghdr * */
184 iarg[a++] = p->flags; /* int */
190 struct sendmsg_args *p = params;
191 iarg[a++] = p->s; /* int */
192 uarg[a++] = (intptr_t)p->msg; /* const struct msghdr * */
193 iarg[a++] = p->flags; /* int */
199 struct recvfrom_args *p = params;
200 iarg[a++] = p->s; /* int */
201 uarg[a++] = (intptr_t)p->buf; /* void * */
202 uarg[a++] = p->len; /* size_t */
203 iarg[a++] = p->flags; /* int */
204 uarg[a++] = (intptr_t)p->from; /* struct sockaddr * */
205 uarg[a++] = (intptr_t)p->fromlenaddr; /* __socklen_t * */
211 struct accept_args *p = params;
212 iarg[a++] = p->s; /* int */
213 uarg[a++] = (intptr_t)p->name; /* struct sockaddr * */
214 uarg[a++] = (intptr_t)p->anamelen; /* __socklen_t * */
220 struct getpeername_args *p = params;
221 iarg[a++] = p->fdes; /* int */
222 uarg[a++] = (intptr_t)p->asa; /* struct sockaddr * */
223 uarg[a++] = (intptr_t)p->alen; /* __socklen_t * */
229 struct getsockname_args *p = params;
230 iarg[a++] = p->fdes; /* int */
231 uarg[a++] = (intptr_t)p->asa; /* struct sockaddr * */
232 uarg[a++] = (intptr_t)p->alen; /* __socklen_t * */
238 struct access_args *p = params;
239 uarg[a++] = (intptr_t)p->path; /* const char * */
240 iarg[a++] = p->amode; /* int */
246 struct chflags_args *p = params;
247 uarg[a++] = (intptr_t)p->path; /* const char * */
248 uarg[a++] = p->flags; /* u_long */
254 struct fchflags_args *p = params;
255 iarg[a++] = p->fd; /* int */
256 uarg[a++] = p->flags; /* u_long */
267 struct kill_args *p = params;
268 iarg[a++] = p->pid; /* int */
269 iarg[a++] = p->signum; /* int */
280 struct dup_args *p = params;
281 uarg[a++] = p->fd; /* u_int */
292 struct profil_args *p = params;
293 uarg[a++] = (intptr_t)p->samples; /* char * */
294 uarg[a++] = p->size; /* size_t */
295 uarg[a++] = p->offset; /* size_t */
296 uarg[a++] = p->scale; /* u_int */
302 struct ktrace_args *p = params;
303 uarg[a++] = (intptr_t)p->fname; /* const char * */
304 iarg[a++] = p->ops; /* int */
305 iarg[a++] = p->facs; /* int */
306 iarg[a++] = p->pid; /* int */
317 struct getlogin_args *p = params;
318 uarg[a++] = (intptr_t)p->namebuf; /* char * */
319 uarg[a++] = p->namelen; /* u_int */
325 struct setlogin_args *p = params;
326 uarg[a++] = (intptr_t)p->namebuf; /* const char * */
332 struct acct_args *p = params;
333 uarg[a++] = (intptr_t)p->path; /* const char * */
339 struct sigaltstack_args *p = params;
340 uarg[a++] = (intptr_t)p->ss; /* const struct sigaltstack * */
341 uarg[a++] = (intptr_t)p->oss; /* struct sigaltstack * */
347 struct ioctl_args *p = params;
348 iarg[a++] = p->fd; /* int */
349 uarg[a++] = p->com; /* u_long */
350 uarg[a++] = (intptr_t)p->data; /* char * */
356 struct reboot_args *p = params;
357 iarg[a++] = p->opt; /* int */
363 struct revoke_args *p = params;
364 uarg[a++] = (intptr_t)p->path; /* const char * */
370 struct symlink_args *p = params;
371 uarg[a++] = (intptr_t)p->path; /* const char * */
372 uarg[a++] = (intptr_t)p->link; /* const char * */
378 struct readlink_args *p = params;
379 uarg[a++] = (intptr_t)p->path; /* const char * */
380 uarg[a++] = (intptr_t)p->buf; /* char * */
381 uarg[a++] = p->count; /* size_t */
387 struct execve_args *p = params;
388 uarg[a++] = (intptr_t)p->fname; /* const char * */
389 uarg[a++] = (intptr_t)p->argv; /* char ** */
390 uarg[a++] = (intptr_t)p->envv; /* char ** */
396 struct umask_args *p = params;
397 iarg[a++] = p->newmask; /* mode_t */
403 struct chroot_args *p = params;
404 uarg[a++] = (intptr_t)p->path; /* const char * */
410 struct msync_args *p = params;
411 uarg[a++] = (intptr_t)p->addr; /* void * */
412 uarg[a++] = p->len; /* size_t */
413 iarg[a++] = p->flags; /* int */
424 struct munmap_args *p = params;
425 uarg[a++] = (intptr_t)p->addr; /* void * */
426 uarg[a++] = p->len; /* size_t */
432 struct mprotect_args *p = params;
433 uarg[a++] = (intptr_t)p->addr; /* void * */
434 uarg[a++] = p->len; /* size_t */
435 iarg[a++] = p->prot; /* int */
441 struct madvise_args *p = params;
442 uarg[a++] = (intptr_t)p->addr; /* void * */
443 uarg[a++] = p->len; /* size_t */
444 iarg[a++] = p->behav; /* int */
450 struct mincore_args *p = params;
451 uarg[a++] = (intptr_t)p->addr; /* const void * */
452 uarg[a++] = p->len; /* size_t */
453 uarg[a++] = (intptr_t)p->vec; /* char * */
459 struct getgroups_args *p = params;
460 iarg[a++] = p->gidsetsize; /* int */
461 uarg[a++] = (intptr_t)p->gidset; /* gid_t * */
467 struct setgroups_args *p = params;
468 iarg[a++] = p->gidsetsize; /* int */
469 uarg[a++] = (intptr_t)p->gidset; /* const gid_t * */
480 struct setpgid_args *p = params;
481 iarg[a++] = p->pid; /* int */
482 iarg[a++] = p->pgid; /* int */
488 struct setitimer_args *p = params;
489 iarg[a++] = p->which; /* int */
490 uarg[a++] = (intptr_t)p->itv; /* const struct itimerval * */
491 uarg[a++] = (intptr_t)p->oitv; /* struct itimerval * */
497 struct swapon_args *p = params;
498 uarg[a++] = (intptr_t)p->name; /* const char * */
504 struct getitimer_args *p = params;
505 iarg[a++] = p->which; /* int */
506 uarg[a++] = (intptr_t)p->itv; /* struct itimerval * */
517 struct dup2_args *p = params;
518 uarg[a++] = p->from; /* u_int */
519 uarg[a++] = p->to; /* u_int */
525 struct fcntl_args *p = params;
526 iarg[a++] = p->fd; /* int */
527 iarg[a++] = p->cmd; /* int */
528 uarg[a++] = (intptr_t)p->arg; /* intptr_t */
534 struct select_args *p = params;
535 iarg[a++] = p->nd; /* int */
536 uarg[a++] = (intptr_t)p->in; /* fd_set * */
537 uarg[a++] = (intptr_t)p->ou; /* fd_set * */
538 uarg[a++] = (intptr_t)p->ex; /* fd_set * */
539 uarg[a++] = (intptr_t)p->tv; /* struct timeval * */
545 struct fsync_args *p = params;
546 iarg[a++] = p->fd; /* int */
552 struct setpriority_args *p = params;
553 iarg[a++] = p->which; /* int */
554 iarg[a++] = p->who; /* int */
555 iarg[a++] = p->prio; /* int */
561 struct socket_args *p = params;
562 iarg[a++] = p->domain; /* int */
563 iarg[a++] = p->type; /* int */
564 iarg[a++] = p->protocol; /* int */
570 struct connect_args *p = params;
571 iarg[a++] = p->s; /* int */
572 uarg[a++] = (intptr_t)p->name; /* const struct sockaddr * */
573 iarg[a++] = p->namelen; /* __socklen_t */
579 struct getpriority_args *p = params;
580 iarg[a++] = p->which; /* int */
581 iarg[a++] = p->who; /* int */
587 struct bind_args *p = params;
588 iarg[a++] = p->s; /* int */
589 uarg[a++] = (intptr_t)p->name; /* const struct sockaddr * */
590 iarg[a++] = p->namelen; /* __socklen_t */
596 struct setsockopt_args *p = params;
597 iarg[a++] = p->s; /* int */
598 iarg[a++] = p->level; /* int */
599 iarg[a++] = p->name; /* int */
600 uarg[a++] = (intptr_t)p->val; /* const void * */
601 iarg[a++] = p->valsize; /* __socklen_t */
607 struct listen_args *p = params;
608 iarg[a++] = p->s; /* int */
609 iarg[a++] = p->backlog; /* int */
615 struct gettimeofday_args *p = params;
616 uarg[a++] = (intptr_t)p->tp; /* struct timeval * */
617 uarg[a++] = (intptr_t)p->tzp; /* struct timezone * */
623 struct getrusage_args *p = params;
624 iarg[a++] = p->who; /* int */
625 uarg[a++] = (intptr_t)p->rusage; /* struct rusage * */
631 struct getsockopt_args *p = params;
632 iarg[a++] = p->s; /* int */
633 iarg[a++] = p->level; /* int */
634 iarg[a++] = p->name; /* int */
635 uarg[a++] = (intptr_t)p->val; /* void * */
636 uarg[a++] = (intptr_t)p->avalsize; /* __socklen_t * */
642 struct readv_args *p = params;
643 iarg[a++] = p->fd; /* int */
644 uarg[a++] = (intptr_t)p->iovp; /* const struct iovec * */
645 uarg[a++] = p->iovcnt; /* u_int */
651 struct writev_args *p = params;
652 iarg[a++] = p->fd; /* int */
653 uarg[a++] = (intptr_t)p->iovp; /* const struct iovec * */
654 uarg[a++] = p->iovcnt; /* u_int */
660 struct settimeofday_args *p = params;
661 uarg[a++] = (intptr_t)p->tv; /* const struct timeval * */
662 uarg[a++] = (intptr_t)p->tzp; /* const struct timezone * */
668 struct fchown_args *p = params;
669 iarg[a++] = p->fd; /* int */
670 iarg[a++] = p->uid; /* int */
671 iarg[a++] = p->gid; /* int */
677 struct fchmod_args *p = params;
678 iarg[a++] = p->fd; /* int */
679 iarg[a++] = p->mode; /* mode_t */
685 struct setreuid_args *p = params;
686 iarg[a++] = p->ruid; /* int */
687 iarg[a++] = p->euid; /* int */
693 struct setregid_args *p = params;
694 iarg[a++] = p->rgid; /* int */
695 iarg[a++] = p->egid; /* int */
701 struct rename_args *p = params;
702 uarg[a++] = (intptr_t)p->from; /* const char * */
703 uarg[a++] = (intptr_t)p->to; /* const char * */
709 struct flock_args *p = params;
710 iarg[a++] = p->fd; /* int */
711 iarg[a++] = p->how; /* int */
717 struct mkfifo_args *p = params;
718 uarg[a++] = (intptr_t)p->path; /* const char * */
719 iarg[a++] = p->mode; /* mode_t */
725 struct sendto_args *p = params;
726 iarg[a++] = p->s; /* int */
727 uarg[a++] = (intptr_t)p->buf; /* const void * */
728 uarg[a++] = p->len; /* size_t */
729 iarg[a++] = p->flags; /* int */
730 uarg[a++] = (intptr_t)p->to; /* const struct sockaddr * */
731 iarg[a++] = p->tolen; /* __socklen_t */
737 struct shutdown_args *p = params;
738 iarg[a++] = p->s; /* int */
739 iarg[a++] = p->how; /* int */
745 struct socketpair_args *p = params;
746 iarg[a++] = p->domain; /* int */
747 iarg[a++] = p->type; /* int */
748 iarg[a++] = p->protocol; /* int */
749 uarg[a++] = (intptr_t)p->rsv; /* int * */
755 struct mkdir_args *p = params;
756 uarg[a++] = (intptr_t)p->path; /* const char * */
757 iarg[a++] = p->mode; /* mode_t */
763 struct rmdir_args *p = params;
764 uarg[a++] = (intptr_t)p->path; /* const char * */
770 struct utimes_args *p = params;
771 uarg[a++] = (intptr_t)p->path; /* const char * */
772 uarg[a++] = (intptr_t)p->tptr; /* const struct timeval * */
778 struct adjtime_args *p = params;
779 uarg[a++] = (intptr_t)p->delta; /* const struct timeval * */
780 uarg[a++] = (intptr_t)p->olddelta; /* struct timeval * */
791 struct quotactl_args *p = params;
792 uarg[a++] = (intptr_t)p->path; /* const char * */
793 iarg[a++] = p->cmd; /* int */
794 iarg[a++] = p->uid; /* int */
795 uarg[a++] = (intptr_t)p->arg; /* void * */
801 struct nlm_syscall_args *p = params;
802 iarg[a++] = p->debug_level; /* int */
803 iarg[a++] = p->grace_period; /* int */
804 iarg[a++] = p->addr_count; /* int */
805 uarg[a++] = (intptr_t)p->addrs; /* char ** */
811 struct nfssvc_args *p = params;
812 iarg[a++] = p->flag; /* int */
813 uarg[a++] = (intptr_t)p->argp; /* void * */
819 struct lgetfh_args *p = params;
820 uarg[a++] = (intptr_t)p->fname; /* const char * */
821 uarg[a++] = (intptr_t)p->fhp; /* struct fhandle * */
827 struct getfh_args *p = params;
828 uarg[a++] = (intptr_t)p->fname; /* const char * */
829 uarg[a++] = (intptr_t)p->fhp; /* struct fhandle * */
835 struct sysarch_args *p = params;
836 iarg[a++] = p->op; /* int */
837 uarg[a++] = (intptr_t)p->parms; /* char * */
843 struct rtprio_args *p = params;
844 iarg[a++] = p->function; /* int */
845 iarg[a++] = p->pid; /* pid_t */
846 uarg[a++] = (intptr_t)p->rtp; /* struct rtprio * */
852 struct semsys_args *p = params;
853 iarg[a++] = p->which; /* int */
854 iarg[a++] = p->a2; /* int */
855 iarg[a++] = p->a3; /* int */
856 iarg[a++] = p->a4; /* int */
857 iarg[a++] = p->a5; /* int */
863 struct msgsys_args *p = params;
864 iarg[a++] = p->which; /* int */
865 iarg[a++] = p->a2; /* int */
866 iarg[a++] = p->a3; /* int */
867 iarg[a++] = p->a4; /* int */
868 iarg[a++] = p->a5; /* int */
869 iarg[a++] = p->a6; /* int */
875 struct shmsys_args *p = params;
876 iarg[a++] = p->which; /* int */
877 iarg[a++] = p->a2; /* int */
878 iarg[a++] = p->a3; /* int */
879 iarg[a++] = p->a4; /* int */
885 struct setfib_args *p = params;
886 iarg[a++] = p->fibnum; /* int */
892 struct ntp_adjtime_args *p = params;
893 uarg[a++] = (intptr_t)p->tp; /* struct timex * */
899 struct setgid_args *p = params;
900 iarg[a++] = p->gid; /* gid_t */
906 struct setegid_args *p = params;
907 iarg[a++] = p->egid; /* gid_t */
913 struct seteuid_args *p = params;
914 uarg[a++] = p->euid; /* uid_t */
920 struct pathconf_args *p = params;
921 uarg[a++] = (intptr_t)p->path; /* const char * */
922 iarg[a++] = p->name; /* int */
928 struct fpathconf_args *p = params;
929 iarg[a++] = p->fd; /* int */
930 iarg[a++] = p->name; /* int */
936 struct getrlimit_args *p = params;
937 uarg[a++] = p->which; /* u_int */
938 uarg[a++] = (intptr_t)p->rlp; /* struct rlimit * */
944 struct setrlimit_args *p = params;
945 uarg[a++] = p->which; /* u_int */
946 uarg[a++] = (intptr_t)p->rlp; /* struct rlimit * */
957 struct __sysctl_args *p = params;
958 uarg[a++] = (intptr_t)p->name; /* int * */
959 uarg[a++] = p->namelen; /* u_int */
960 uarg[a++] = (intptr_t)p->old; /* void * */
961 uarg[a++] = (intptr_t)p->oldlenp; /* size_t * */
962 uarg[a++] = (intptr_t)p->new; /* const void * */
963 uarg[a++] = p->newlen; /* size_t */
969 struct mlock_args *p = params;
970 uarg[a++] = (intptr_t)p->addr; /* const void * */
971 uarg[a++] = p->len; /* size_t */
977 struct munlock_args *p = params;
978 uarg[a++] = (intptr_t)p->addr; /* const void * */
979 uarg[a++] = p->len; /* size_t */
985 struct undelete_args *p = params;
986 uarg[a++] = (intptr_t)p->path; /* const char * */
992 struct futimes_args *p = params;
993 iarg[a++] = p->fd; /* int */
994 uarg[a++] = (intptr_t)p->tptr; /* const struct timeval * */
1000 struct getpgid_args *p = params;
1001 iarg[a++] = p->pid; /* pid_t */
1007 struct poll_args *p = params;
1008 uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
1009 uarg[a++] = p->nfds; /* u_int */
1010 iarg[a++] = p->timeout; /* int */
1066 struct semget_args *p = params;
1067 iarg[a++] = p->key; /* key_t */
1068 iarg[a++] = p->nsems; /* int */
1069 iarg[a++] = p->semflg; /* int */
1075 struct semop_args *p = params;
1076 iarg[a++] = p->semid; /* int */
1077 uarg[a++] = (intptr_t)p->sops; /* struct sembuf * */
1078 uarg[a++] = p->nsops; /* size_t */
1084 struct msgget_args *p = params;
1085 iarg[a++] = p->key; /* key_t */
1086 iarg[a++] = p->msgflg; /* int */
1092 struct msgsnd_args *p = params;
1093 iarg[a++] = p->msqid; /* int */
1094 uarg[a++] = (intptr_t)p->msgp; /* const void * */
1095 uarg[a++] = p->msgsz; /* size_t */
1096 iarg[a++] = p->msgflg; /* int */
1102 struct msgrcv_args *p = params;
1103 iarg[a++] = p->msqid; /* int */
1104 uarg[a++] = (intptr_t)p->msgp; /* void * */
1105 uarg[a++] = p->msgsz; /* size_t */
1106 iarg[a++] = p->msgtyp; /* long */
1107 iarg[a++] = p->msgflg; /* int */
1113 struct shmat_args *p = params;
1114 iarg[a++] = p->shmid; /* int */
1115 uarg[a++] = (intptr_t)p->shmaddr; /* const void * */
1116 iarg[a++] = p->shmflg; /* int */
1122 struct shmdt_args *p = params;
1123 uarg[a++] = (intptr_t)p->shmaddr; /* const void * */
1129 struct shmget_args *p = params;
1130 iarg[a++] = p->key; /* key_t */
1131 uarg[a++] = p->size; /* size_t */
1132 iarg[a++] = p->shmflg; /* int */
1138 struct clock_gettime_args *p = params;
1139 iarg[a++] = p->clock_id; /* clockid_t */
1140 uarg[a++] = (intptr_t)p->tp; /* struct timespec * */
1146 struct clock_settime_args *p = params;
1147 iarg[a++] = p->clock_id; /* clockid_t */
1148 uarg[a++] = (intptr_t)p->tp; /* const struct timespec * */
1154 struct clock_getres_args *p = params;
1155 iarg[a++] = p->clock_id; /* clockid_t */
1156 uarg[a++] = (intptr_t)p->tp; /* struct timespec * */
1162 struct ktimer_create_args *p = params;
1163 iarg[a++] = p->clock_id; /* clockid_t */
1164 uarg[a++] = (intptr_t)p->evp; /* struct sigevent * */
1165 uarg[a++] = (intptr_t)p->timerid; /* int * */
1171 struct ktimer_delete_args *p = params;
1172 iarg[a++] = p->timerid; /* int */
1178 struct ktimer_settime_args *p = params;
1179 iarg[a++] = p->timerid; /* int */
1180 iarg[a++] = p->flags; /* int */
1181 uarg[a++] = (intptr_t)p->value; /* const struct itimerspec * */
1182 uarg[a++] = (intptr_t)p->ovalue; /* struct itimerspec * */
1188 struct ktimer_gettime_args *p = params;
1189 iarg[a++] = p->timerid; /* int */
1190 uarg[a++] = (intptr_t)p->value; /* struct itimerspec * */
1196 struct ktimer_getoverrun_args *p = params;
1197 iarg[a++] = p->timerid; /* int */
1203 struct nanosleep_args *p = params;
1204 uarg[a++] = (intptr_t)p->rqtp; /* const struct timespec * */
1205 uarg[a++] = (intptr_t)p->rmtp; /* struct timespec * */
1211 struct ffclock_getcounter_args *p = params;
1212 uarg[a++] = (intptr_t)p->ffcount; /* ffcounter * */
1218 struct ffclock_setestimate_args *p = params;
1219 uarg[a++] = (intptr_t)p->cest; /* struct ffclock_estimate * */
1225 struct ffclock_getestimate_args *p = params;
1226 uarg[a++] = (intptr_t)p->cest; /* struct ffclock_estimate * */
1232 struct clock_nanosleep_args *p = params;
1233 iarg[a++] = p->clock_id; /* clockid_t */
1234 iarg[a++] = p->flags; /* int */
1235 uarg[a++] = (intptr_t)p->rqtp; /* const struct timespec * */
1236 uarg[a++] = (intptr_t)p->rmtp; /* struct timespec * */
1242 struct clock_getcpuclockid2_args *p = params;
1243 iarg[a++] = p->id; /* id_t */
1244 iarg[a++] = p->which; /* int */
1245 uarg[a++] = (intptr_t)p->clock_id; /* clockid_t * */
1251 struct ntp_gettime_args *p = params;
1252 uarg[a++] = (intptr_t)p->ntvp; /* struct ntptimeval * */
1258 struct minherit_args *p = params;
1259 uarg[a++] = (intptr_t)p->addr; /* void * */
1260 uarg[a++] = p->len; /* size_t */
1261 iarg[a++] = p->inherit; /* int */
1267 struct rfork_args *p = params;
1268 iarg[a++] = p->flags; /* int */
1279 struct lchown_args *p = params;
1280 uarg[a++] = (intptr_t)p->path; /* const char * */
1281 iarg[a++] = p->uid; /* int */
1282 iarg[a++] = p->gid; /* int */
1288 struct aio_read_args *p = params;
1289 uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb * */
1295 struct aio_write_args *p = params;
1296 uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb * */
1302 struct lio_listio_args *p = params;
1303 iarg[a++] = p->mode; /* int */
1304 uarg[a++] = (intptr_t)p->acb_list; /* struct aiocb * const * */
1305 iarg[a++] = p->nent; /* int */
1306 uarg[a++] = (intptr_t)p->sig; /* struct sigevent * */
1312 struct lchmod_args *p = params;
1313 uarg[a++] = (intptr_t)p->path; /* const char * */
1314 iarg[a++] = p->mode; /* mode_t */
1320 struct lutimes_args *p = params;
1321 uarg[a++] = (intptr_t)p->path; /* const char * */
1322 uarg[a++] = (intptr_t)p->tptr; /* const struct timeval * */
1328 struct preadv_args *p = params;
1329 iarg[a++] = p->fd; /* int */
1330 uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */
1331 uarg[a++] = p->iovcnt; /* u_int */
1332 iarg[a++] = p->offset; /* off_t */
1338 struct pwritev_args *p = params;
1339 iarg[a++] = p->fd; /* int */
1340 uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */
1341 uarg[a++] = p->iovcnt; /* u_int */
1342 iarg[a++] = p->offset; /* off_t */
1348 struct fhopen_args *p = params;
1349 uarg[a++] = (intptr_t)p->u_fhp; /* const struct fhandle * */
1350 iarg[a++] = p->flags; /* int */
1356 struct modnext_args *p = params;
1357 iarg[a++] = p->modid; /* int */
1363 struct modstat_args *p = params;
1364 iarg[a++] = p->modid; /* int */
1365 uarg[a++] = (intptr_t)p->stat; /* struct module_stat * */
1371 struct modfnext_args *p = params;
1372 iarg[a++] = p->modid; /* int */
1378 struct modfind_args *p = params;
1379 uarg[a++] = (intptr_t)p->name; /* const char * */
1385 struct kldload_args *p = params;
1386 uarg[a++] = (intptr_t)p->file; /* const char * */
1392 struct kldunload_args *p = params;
1393 iarg[a++] = p->fileid; /* int */
1399 struct kldfind_args *p = params;
1400 uarg[a++] = (intptr_t)p->file; /* const char * */
1406 struct kldnext_args *p = params;
1407 iarg[a++] = p->fileid; /* int */
1413 struct kldstat_args *p = params;
1414 iarg[a++] = p->fileid; /* int */
1415 uarg[a++] = (intptr_t)p->stat; /* struct kld_file_stat * */
1421 struct kldfirstmod_args *p = params;
1422 iarg[a++] = p->fileid; /* int */
1428 struct getsid_args *p = params;
1429 iarg[a++] = p->pid; /* pid_t */
1435 struct setresuid_args *p = params;
1436 uarg[a++] = p->ruid; /* uid_t */
1437 uarg[a++] = p->euid; /* uid_t */
1438 uarg[a++] = p->suid; /* uid_t */
1444 struct setresgid_args *p = params;
1445 iarg[a++] = p->rgid; /* gid_t */
1446 iarg[a++] = p->egid; /* gid_t */
1447 iarg[a++] = p->sgid; /* gid_t */
1453 struct aio_return_args *p = params;
1454 uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb * */
1460 struct aio_suspend_args *p = params;
1461 uarg[a++] = (intptr_t)p->aiocbp; /* const struct aiocb * const * */
1462 iarg[a++] = p->nent; /* int */
1463 uarg[a++] = (intptr_t)p->timeout; /* const struct timespec * */
1469 struct aio_cancel_args *p = params;
1470 iarg[a++] = p->fd; /* int */
1471 uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb * */
1477 struct aio_error_args *p = params;
1478 uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb * */
1489 struct mlockall_args *p = params;
1490 iarg[a++] = p->how; /* int */
1501 struct __getcwd_args *p = params;
1502 uarg[a++] = (intptr_t)p->buf; /* char * */
1503 uarg[a++] = p->buflen; /* size_t */
1509 struct sched_setparam_args *p = params;
1510 iarg[a++] = p->pid; /* pid_t */
1511 uarg[a++] = (intptr_t)p->param; /* const struct sched_param * */
1517 struct sched_getparam_args *p = params;
1518 iarg[a++] = p->pid; /* pid_t */
1519 uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
1525 struct sched_setscheduler_args *p = params;
1526 iarg[a++] = p->pid; /* pid_t */
1527 iarg[a++] = p->policy; /* int */
1528 uarg[a++] = (intptr_t)p->param; /* const struct sched_param * */
1534 struct sched_getscheduler_args *p = params;
1535 iarg[a++] = p->pid; /* pid_t */
1546 struct sched_get_priority_max_args *p = params;
1547 iarg[a++] = p->policy; /* int */
1553 struct sched_get_priority_min_args *p = params;
1554 iarg[a++] = p->policy; /* int */
1560 struct sched_rr_get_interval_args *p = params;
1561 iarg[a++] = p->pid; /* pid_t */
1562 uarg[a++] = (intptr_t)p->interval; /* struct timespec * */
1568 struct utrace_args *p = params;
1569 uarg[a++] = (intptr_t)p->addr; /* const void * */
1570 uarg[a++] = p->len; /* size_t */
1576 struct kldsym_args *p = params;
1577 iarg[a++] = p->fileid; /* int */
1578 iarg[a++] = p->cmd; /* int */
1579 uarg[a++] = (intptr_t)p->data; /* void * */
1585 struct jail_args *p = params;
1586 uarg[a++] = (intptr_t)p->jail; /* struct jail * */
1592 struct nnpfs_syscall_args *p = params;
1593 iarg[a++] = p->operation; /* int */
1594 uarg[a++] = (intptr_t)p->a_pathP; /* char * */
1595 iarg[a++] = p->a_opcode; /* int */
1596 uarg[a++] = (intptr_t)p->a_paramsP; /* void * */
1597 iarg[a++] = p->a_followSymlinks; /* int */
1603 struct sigprocmask_args *p = params;
1604 iarg[a++] = p->how; /* int */
1605 uarg[a++] = (intptr_t)p->set; /* const sigset_t * */
1606 uarg[a++] = (intptr_t)p->oset; /* sigset_t * */
1612 struct sigsuspend_args *p = params;
1613 uarg[a++] = (intptr_t)p->sigmask; /* const sigset_t * */
1619 struct sigpending_args *p = params;
1620 uarg[a++] = (intptr_t)p->set; /* sigset_t * */
1626 struct sigtimedwait_args *p = params;
1627 uarg[a++] = (intptr_t)p->set; /* const sigset_t * */
1628 uarg[a++] = (intptr_t)p->info; /* struct __siginfo * */
1629 uarg[a++] = (intptr_t)p->timeout; /* const struct timespec * */
1635 struct sigwaitinfo_args *p = params;
1636 uarg[a++] = (intptr_t)p->set; /* const sigset_t * */
1637 uarg[a++] = (intptr_t)p->info; /* struct __siginfo * */
1643 struct __acl_get_file_args *p = params;
1644 uarg[a++] = (intptr_t)p->path; /* const char * */
1645 iarg[a++] = p->type; /* __acl_type_t */
1646 uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
1652 struct __acl_set_file_args *p = params;
1653 uarg[a++] = (intptr_t)p->path; /* const char * */
1654 iarg[a++] = p->type; /* __acl_type_t */
1655 uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
1661 struct __acl_get_fd_args *p = params;
1662 iarg[a++] = p->filedes; /* int */
1663 iarg[a++] = p->type; /* __acl_type_t */
1664 uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
1670 struct __acl_set_fd_args *p = params;
1671 iarg[a++] = p->filedes; /* int */
1672 iarg[a++] = p->type; /* __acl_type_t */
1673 uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
1679 struct __acl_delete_file_args *p = params;
1680 uarg[a++] = (intptr_t)p->path; /* const char * */
1681 iarg[a++] = p->type; /* __acl_type_t */
1687 struct __acl_delete_fd_args *p = params;
1688 iarg[a++] = p->filedes; /* int */
1689 iarg[a++] = p->type; /* __acl_type_t */
1695 struct __acl_aclcheck_file_args *p = params;
1696 uarg[a++] = (intptr_t)p->path; /* const char * */
1697 iarg[a++] = p->type; /* __acl_type_t */
1698 uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
1704 struct __acl_aclcheck_fd_args *p = params;
1705 iarg[a++] = p->filedes; /* int */
1706 iarg[a++] = p->type; /* __acl_type_t */
1707 uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
1713 struct extattrctl_args *p = params;
1714 uarg[a++] = (intptr_t)p->path; /* const char * */
1715 iarg[a++] = p->cmd; /* int */
1716 uarg[a++] = (intptr_t)p->filename; /* const char * */
1717 iarg[a++] = p->attrnamespace; /* int */
1718 uarg[a++] = (intptr_t)p->attrname; /* const char * */
1724 struct extattr_set_file_args *p = params;
1725 uarg[a++] = (intptr_t)p->path; /* const char * */
1726 iarg[a++] = p->attrnamespace; /* int */
1727 uarg[a++] = (intptr_t)p->attrname; /* const char * */
1728 uarg[a++] = (intptr_t)p->data; /* void * */
1729 uarg[a++] = p->nbytes; /* size_t */
1735 struct extattr_get_file_args *p = params;
1736 uarg[a++] = (intptr_t)p->path; /* const char * */
1737 iarg[a++] = p->attrnamespace; /* int */
1738 uarg[a++] = (intptr_t)p->attrname; /* const char * */
1739 uarg[a++] = (intptr_t)p->data; /* void * */
1740 uarg[a++] = p->nbytes; /* size_t */
1746 struct extattr_delete_file_args *p = params;
1747 uarg[a++] = (intptr_t)p->path; /* const char * */
1748 iarg[a++] = p->attrnamespace; /* int */
1749 uarg[a++] = (intptr_t)p->attrname; /* const char * */
1755 struct aio_waitcomplete_args *p = params;
1756 uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb ** */
1757 uarg[a++] = (intptr_t)p->timeout; /* struct timespec * */
1763 struct getresuid_args *p = params;
1764 uarg[a++] = (intptr_t)p->ruid; /* uid_t * */
1765 uarg[a++] = (intptr_t)p->euid; /* uid_t * */
1766 uarg[a++] = (intptr_t)p->suid; /* uid_t * */
1772 struct getresgid_args *p = params;
1773 uarg[a++] = (intptr_t)p->rgid; /* gid_t * */
1774 uarg[a++] = (intptr_t)p->egid; /* gid_t * */
1775 uarg[a++] = (intptr_t)p->sgid; /* gid_t * */
1786 struct extattr_set_fd_args *p = params;
1787 iarg[a++] = p->fd; /* int */
1788 iarg[a++] = p->attrnamespace; /* int */
1789 uarg[a++] = (intptr_t)p->attrname; /* const char * */
1790 uarg[a++] = (intptr_t)p->data; /* void * */
1791 uarg[a++] = p->nbytes; /* size_t */
1797 struct extattr_get_fd_args *p = params;
1798 iarg[a++] = p->fd; /* int */
1799 iarg[a++] = p->attrnamespace; /* int */
1800 uarg[a++] = (intptr_t)p->attrname; /* const char * */
1801 uarg[a++] = (intptr_t)p->data; /* void * */
1802 uarg[a++] = p->nbytes; /* size_t */
1808 struct extattr_delete_fd_args *p = params;
1809 iarg[a++] = p->fd; /* int */
1810 iarg[a++] = p->attrnamespace; /* int */
1811 uarg[a++] = (intptr_t)p->attrname; /* const char * */
1817 struct __setugid_args *p = params;
1818 iarg[a++] = p->flag; /* int */
1824 struct eaccess_args *p = params;
1825 uarg[a++] = (intptr_t)p->path; /* const char * */
1826 iarg[a++] = p->amode; /* int */
1832 struct afs3_syscall_args *p = params;
1833 iarg[a++] = p->syscall; /* long */
1834 iarg[a++] = p->parm1; /* long */
1835 iarg[a++] = p->parm2; /* long */
1836 iarg[a++] = p->parm3; /* long */
1837 iarg[a++] = p->parm4; /* long */
1838 iarg[a++] = p->parm5; /* long */
1839 iarg[a++] = p->parm6; /* long */
1845 struct nmount_args *p = params;
1846 uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */
1847 uarg[a++] = p->iovcnt; /* unsigned int */
1848 iarg[a++] = p->flags; /* int */
1854 struct __mac_get_proc_args *p = params;
1855 uarg[a++] = (intptr_t)p->mac_p; /* struct mac * */
1861 struct __mac_set_proc_args *p = params;
1862 uarg[a++] = (intptr_t)p->mac_p; /* struct mac * */
1868 struct __mac_get_fd_args *p = params;
1869 iarg[a++] = p->fd; /* int */
1870 uarg[a++] = (intptr_t)p->mac_p; /* struct mac * */
1876 struct __mac_get_file_args *p = params;
1877 uarg[a++] = (intptr_t)p->path_p; /* const char * */
1878 uarg[a++] = (intptr_t)p->mac_p; /* struct mac * */
1884 struct __mac_set_fd_args *p = params;
1885 iarg[a++] = p->fd; /* int */
1886 uarg[a++] = (intptr_t)p->mac_p; /* struct mac * */
1892 struct __mac_set_file_args *p = params;
1893 uarg[a++] = (intptr_t)p->path_p; /* const char * */
1894 uarg[a++] = (intptr_t)p->mac_p; /* struct mac * */
1900 struct kenv_args *p = params;
1901 iarg[a++] = p->what; /* int */
1902 uarg[a++] = (intptr_t)p->name; /* const char * */
1903 uarg[a++] = (intptr_t)p->value; /* char * */
1904 iarg[a++] = p->len; /* int */
1910 struct lchflags_args *p = params;
1911 uarg[a++] = (intptr_t)p->path; /* const char * */
1912 uarg[a++] = p->flags; /* u_long */
1918 struct uuidgen_args *p = params;
1919 uarg[a++] = (intptr_t)p->store; /* struct uuid * */
1920 iarg[a++] = p->count; /* int */
1926 struct sendfile_args *p = params;
1927 iarg[a++] = p->fd; /* int */
1928 iarg[a++] = p->s; /* int */
1929 iarg[a++] = p->offset; /* off_t */
1930 uarg[a++] = p->nbytes; /* size_t */
1931 uarg[a++] = (intptr_t)p->hdtr; /* struct sf_hdtr * */
1932 uarg[a++] = (intptr_t)p->sbytes; /* off_t * */
1933 iarg[a++] = p->flags; /* int */
1939 struct mac_syscall_args *p = params;
1940 uarg[a++] = (intptr_t)p->policy; /* const char * */
1941 iarg[a++] = p->call; /* int */
1942 uarg[a++] = (intptr_t)p->arg; /* void * */
1948 struct ksem_close_args *p = params;
1949 iarg[a++] = p->id; /* semid_t */
1955 struct ksem_post_args *p = params;
1956 iarg[a++] = p->id; /* semid_t */
1962 struct ksem_wait_args *p = params;
1963 iarg[a++] = p->id; /* semid_t */
1969 struct ksem_trywait_args *p = params;
1970 iarg[a++] = p->id; /* semid_t */
1976 struct ksem_init_args *p = params;
1977 uarg[a++] = (intptr_t)p->idp; /* semid_t * */
1978 uarg[a++] = p->value; /* unsigned int */
1984 struct ksem_open_args *p = params;
1985 uarg[a++] = (intptr_t)p->idp; /* semid_t * */
1986 uarg[a++] = (intptr_t)p->name; /* const char * */
1987 iarg[a++] = p->oflag; /* int */
1988 iarg[a++] = p->mode; /* mode_t */
1989 uarg[a++] = p->value; /* unsigned int */
1995 struct ksem_unlink_args *p = params;
1996 uarg[a++] = (intptr_t)p->name; /* const char * */
2002 struct ksem_getvalue_args *p = params;
2003 iarg[a++] = p->id; /* semid_t */
2004 uarg[a++] = (intptr_t)p->val; /* int * */
2010 struct ksem_destroy_args *p = params;
2011 iarg[a++] = p->id; /* semid_t */
2017 struct __mac_get_pid_args *p = params;
2018 iarg[a++] = p->pid; /* pid_t */
2019 uarg[a++] = (intptr_t)p->mac_p; /* struct mac * */
2025 struct __mac_get_link_args *p = params;
2026 uarg[a++] = (intptr_t)p->path_p; /* const char * */
2027 uarg[a++] = (intptr_t)p->mac_p; /* struct mac * */
2033 struct __mac_set_link_args *p = params;
2034 uarg[a++] = (intptr_t)p->path_p; /* const char * */
2035 uarg[a++] = (intptr_t)p->mac_p; /* struct mac * */
2041 struct extattr_set_link_args *p = params;
2042 uarg[a++] = (intptr_t)p->path; /* const char * */
2043 iarg[a++] = p->attrnamespace; /* int */
2044 uarg[a++] = (intptr_t)p->attrname; /* const char * */
2045 uarg[a++] = (intptr_t)p->data; /* void * */
2046 uarg[a++] = p->nbytes; /* size_t */
2052 struct extattr_get_link_args *p = params;
2053 uarg[a++] = (intptr_t)p->path; /* const char * */
2054 iarg[a++] = p->attrnamespace; /* int */
2055 uarg[a++] = (intptr_t)p->attrname; /* const char * */
2056 uarg[a++] = (intptr_t)p->data; /* void * */
2057 uarg[a++] = p->nbytes; /* size_t */
2063 struct extattr_delete_link_args *p = params;
2064 uarg[a++] = (intptr_t)p->path; /* const char * */
2065 iarg[a++] = p->attrnamespace; /* int */
2066 uarg[a++] = (intptr_t)p->attrname; /* const char * */
2072 struct __mac_execve_args *p = params;
2073 uarg[a++] = (intptr_t)p->fname; /* const char * */
2074 uarg[a++] = (intptr_t)p->argv; /* char ** */
2075 uarg[a++] = (intptr_t)p->envv; /* char ** */
2076 uarg[a++] = (intptr_t)p->mac_p; /* struct mac * */
2082 struct sigaction_args *p = params;
2083 iarg[a++] = p->sig; /* int */
2084 uarg[a++] = (intptr_t)p->act; /* const struct sigaction * */
2085 uarg[a++] = (intptr_t)p->oact; /* struct sigaction * */
2091 struct sigreturn_args *p = params;
2092 uarg[a++] = (intptr_t)p->sigcntxp; /* const struct __ucontext * */
2098 struct getcontext_args *p = params;
2099 uarg[a++] = (intptr_t)p->ucp; /* struct __ucontext * */
2105 struct setcontext_args *p = params;
2106 uarg[a++] = (intptr_t)p->ucp; /* const struct __ucontext * */
2112 struct swapcontext_args *p = params;
2113 uarg[a++] = (intptr_t)p->oucp; /* struct __ucontext * */
2114 uarg[a++] = (intptr_t)p->ucp; /* const struct __ucontext * */
2120 struct __acl_get_link_args *p = params;
2121 uarg[a++] = (intptr_t)p->path; /* const char * */
2122 iarg[a++] = p->type; /* __acl_type_t */
2123 uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
2129 struct __acl_set_link_args *p = params;
2130 uarg[a++] = (intptr_t)p->path; /* const char * */
2131 iarg[a++] = p->type; /* __acl_type_t */
2132 uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
2138 struct __acl_delete_link_args *p = params;
2139 uarg[a++] = (intptr_t)p->path; /* const char * */
2140 iarg[a++] = p->type; /* __acl_type_t */
2146 struct __acl_aclcheck_link_args *p = params;
2147 uarg[a++] = (intptr_t)p->path; /* const char * */
2148 iarg[a++] = p->type; /* __acl_type_t */
2149 uarg[a++] = (intptr_t)p->aclp; /* struct acl * */
2155 struct sigwait_args *p = params;
2156 uarg[a++] = (intptr_t)p->set; /* const sigset_t * */
2157 uarg[a++] = (intptr_t)p->sig; /* int * */
2163 struct thr_create_args *p = params;
2164 uarg[a++] = (intptr_t)p->ctx; /* ucontext_t * */
2165 uarg[a++] = (intptr_t)p->id; /* long * */
2166 iarg[a++] = p->flags; /* int */
2172 struct thr_exit_args *p = params;
2173 uarg[a++] = (intptr_t)p->state; /* long * */
2179 struct thr_self_args *p = params;
2180 uarg[a++] = (intptr_t)p->id; /* long * */
2186 struct thr_kill_args *p = params;
2187 iarg[a++] = p->id; /* long */
2188 iarg[a++] = p->sig; /* int */
2194 struct jail_attach_args *p = params;
2195 iarg[a++] = p->jid; /* int */
2201 struct extattr_list_fd_args *p = params;
2202 iarg[a++] = p->fd; /* int */
2203 iarg[a++] = p->attrnamespace; /* int */
2204 uarg[a++] = (intptr_t)p->data; /* void * */
2205 uarg[a++] = p->nbytes; /* size_t */
2211 struct extattr_list_file_args *p = params;
2212 uarg[a++] = (intptr_t)p->path; /* const char * */
2213 iarg[a++] = p->attrnamespace; /* int */
2214 uarg[a++] = (intptr_t)p->data; /* void * */
2215 uarg[a++] = p->nbytes; /* size_t */
2221 struct extattr_list_link_args *p = params;
2222 uarg[a++] = (intptr_t)p->path; /* const char * */
2223 iarg[a++] = p->attrnamespace; /* int */
2224 uarg[a++] = (intptr_t)p->data; /* void * */
2225 uarg[a++] = p->nbytes; /* size_t */
2231 struct ksem_timedwait_args *p = params;
2232 iarg[a++] = p->id; /* semid_t */
2233 uarg[a++] = (intptr_t)p->abstime; /* const struct timespec * */
2239 struct thr_suspend_args *p = params;
2240 uarg[a++] = (intptr_t)p->timeout; /* const struct timespec * */
2246 struct thr_wake_args *p = params;
2247 iarg[a++] = p->id; /* long */
2253 struct kldunloadf_args *p = params;
2254 iarg[a++] = p->fileid; /* int */
2255 iarg[a++] = p->flags; /* int */
2261 struct audit_args *p = params;
2262 uarg[a++] = (intptr_t)p->record; /* const void * */
2263 uarg[a++] = p->length; /* u_int */
2269 struct auditon_args *p = params;
2270 iarg[a++] = p->cmd; /* int */
2271 uarg[a++] = (intptr_t)p->data; /* void * */
2272 uarg[a++] = p->length; /* u_int */
2278 struct getauid_args *p = params;
2279 uarg[a++] = (intptr_t)p->auid; /* uid_t * */
2285 struct setauid_args *p = params;
2286 uarg[a++] = (intptr_t)p->auid; /* uid_t * */
2292 struct getaudit_args *p = params;
2293 uarg[a++] = (intptr_t)p->auditinfo; /* struct auditinfo * */
2299 struct setaudit_args *p = params;
2300 uarg[a++] = (intptr_t)p->auditinfo; /* struct auditinfo * */
2306 struct getaudit_addr_args *p = params;
2307 uarg[a++] = (intptr_t)p->auditinfo_addr; /* struct auditinfo_addr * */
2308 uarg[a++] = p->length; /* u_int */
2314 struct setaudit_addr_args *p = params;
2315 uarg[a++] = (intptr_t)p->auditinfo_addr; /* struct auditinfo_addr * */
2316 uarg[a++] = p->length; /* u_int */
2322 struct auditctl_args *p = params;
2323 uarg[a++] = (intptr_t)p->path; /* const char * */
2329 struct _umtx_op_args *p = params;
2330 uarg[a++] = (intptr_t)p->obj; /* void * */
2331 iarg[a++] = p->op; /* int */
2332 uarg[a++] = p->val; /* u_long */
2333 uarg[a++] = (intptr_t)p->uaddr1; /* void * */
2334 uarg[a++] = (intptr_t)p->uaddr2; /* void * */
2340 struct thr_new_args *p = params;
2341 uarg[a++] = (intptr_t)p->param; /* struct thr_param * */
2342 iarg[a++] = p->param_size; /* int */
2348 struct sigqueue_args *p = params;
2349 iarg[a++] = p->pid; /* pid_t */
2350 iarg[a++] = p->signum; /* int */
2351 uarg[a++] = (intptr_t)p->value; /* void * */
2357 struct kmq_open_args *p = params;
2358 uarg[a++] = (intptr_t)p->path; /* const char * */
2359 iarg[a++] = p->flags; /* int */
2360 iarg[a++] = p->mode; /* mode_t */
2361 uarg[a++] = (intptr_t)p->attr; /* const struct mq_attr * */
2367 struct kmq_setattr_args *p = params;
2368 iarg[a++] = p->mqd; /* int */
2369 uarg[a++] = (intptr_t)p->attr; /* const struct mq_attr * */
2370 uarg[a++] = (intptr_t)p->oattr; /* struct mq_attr * */
2376 struct kmq_timedreceive_args *p = params;
2377 iarg[a++] = p->mqd; /* int */
2378 uarg[a++] = (intptr_t)p->msg_ptr; /* char * */
2379 uarg[a++] = p->msg_len; /* size_t */
2380 uarg[a++] = (intptr_t)p->msg_prio; /* unsigned * */
2381 uarg[a++] = (intptr_t)p->abs_timeout; /* const struct timespec * */
2387 struct kmq_timedsend_args *p = params;
2388 iarg[a++] = p->mqd; /* int */
2389 uarg[a++] = (intptr_t)p->msg_ptr; /* const char * */
2390 uarg[a++] = p->msg_len; /* size_t */
2391 uarg[a++] = p->msg_prio; /* unsigned */
2392 uarg[a++] = (intptr_t)p->abs_timeout; /* const struct timespec * */
2398 struct kmq_notify_args *p = params;
2399 iarg[a++] = p->mqd; /* int */
2400 uarg[a++] = (intptr_t)p->sigev; /* const struct sigevent * */
2406 struct kmq_unlink_args *p = params;
2407 uarg[a++] = (intptr_t)p->path; /* const char * */
2413 struct abort2_args *p = params;
2414 uarg[a++] = (intptr_t)p->why; /* const char * */
2415 iarg[a++] = p->nargs; /* int */
2416 uarg[a++] = (intptr_t)p->args; /* void ** */
2422 struct thr_set_name_args *p = params;
2423 iarg[a++] = p->id; /* long */
2424 uarg[a++] = (intptr_t)p->name; /* const char * */
2430 struct aio_fsync_args *p = params;
2431 iarg[a++] = p->op; /* int */
2432 uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb * */
2438 struct rtprio_thread_args *p = params;
2439 iarg[a++] = p->function; /* int */
2440 iarg[a++] = p->lwpid; /* lwpid_t */
2441 uarg[a++] = (intptr_t)p->rtp; /* struct rtprio * */
2447 struct sctp_peeloff_args *p = params;
2448 iarg[a++] = p->sd; /* int */
2449 uarg[a++] = p->name; /* uint32_t */
2455 struct sctp_generic_sendmsg_args *p = params;
2456 iarg[a++] = p->sd; /* int */
2457 uarg[a++] = (intptr_t)p->msg; /* void * */
2458 iarg[a++] = p->mlen; /* int */
2459 uarg[a++] = (intptr_t)p->to; /* const struct sockaddr * */
2460 iarg[a++] = p->tolen; /* __socklen_t */
2461 uarg[a++] = (intptr_t)p->sinfo; /* struct sctp_sndrcvinfo * */
2462 iarg[a++] = p->flags; /* int */
2468 struct sctp_generic_sendmsg_iov_args *p = params;
2469 iarg[a++] = p->sd; /* int */
2470 uarg[a++] = (intptr_t)p->iov; /* struct iovec * */
2471 iarg[a++] = p->iovlen; /* int */
2472 uarg[a++] = (intptr_t)p->to; /* const struct sockaddr * */
2473 iarg[a++] = p->tolen; /* __socklen_t */
2474 uarg[a++] = (intptr_t)p->sinfo; /* struct sctp_sndrcvinfo * */
2475 iarg[a++] = p->flags; /* int */
2481 struct sctp_generic_recvmsg_args *p = params;
2482 iarg[a++] = p->sd; /* int */
2483 uarg[a++] = (intptr_t)p->iov; /* struct iovec * */
2484 iarg[a++] = p->iovlen; /* int */
2485 uarg[a++] = (intptr_t)p->from; /* struct sockaddr * */
2486 uarg[a++] = (intptr_t)p->fromlenaddr; /* __socklen_t * */
2487 uarg[a++] = (intptr_t)p->sinfo; /* struct sctp_sndrcvinfo * */
2488 uarg[a++] = (intptr_t)p->msg_flags; /* int * */
2494 struct pread_args *p = params;
2495 iarg[a++] = p->fd; /* int */
2496 uarg[a++] = (intptr_t)p->buf; /* void * */
2497 uarg[a++] = p->nbyte; /* size_t */
2498 iarg[a++] = p->offset; /* off_t */
2504 struct pwrite_args *p = params;
2505 iarg[a++] = p->fd; /* int */
2506 uarg[a++] = (intptr_t)p->buf; /* const void * */
2507 uarg[a++] = p->nbyte; /* size_t */
2508 iarg[a++] = p->offset; /* off_t */
2514 struct mmap_args *p = params;
2515 uarg[a++] = (intptr_t)p->addr; /* void * */
2516 uarg[a++] = p->len; /* size_t */
2517 iarg[a++] = p->prot; /* int */
2518 iarg[a++] = p->flags; /* int */
2519 iarg[a++] = p->fd; /* int */
2520 iarg[a++] = p->pos; /* off_t */
2526 struct lseek_args *p = params;
2527 iarg[a++] = p->fd; /* int */
2528 iarg[a++] = p->offset; /* off_t */
2529 iarg[a++] = p->whence; /* int */
2535 struct truncate_args *p = params;
2536 uarg[a++] = (intptr_t)p->path; /* const char * */
2537 iarg[a++] = p->length; /* off_t */
2543 struct ftruncate_args *p = params;
2544 iarg[a++] = p->fd; /* int */
2545 iarg[a++] = p->length; /* off_t */
2551 struct thr_kill2_args *p = params;
2552 iarg[a++] = p->pid; /* pid_t */
2553 iarg[a++] = p->id; /* long */
2554 iarg[a++] = p->sig; /* int */
2560 struct shm_unlink_args *p = params;
2561 uarg[a++] = (intptr_t)p->path; /* const char * */
2567 struct cpuset_args *p = params;
2568 uarg[a++] = (intptr_t)p->setid; /* cpusetid_t * */
2574 struct cpuset_setid_args *p = params;
2575 iarg[a++] = p->which; /* cpuwhich_t */
2576 iarg[a++] = p->id; /* id_t */
2577 iarg[a++] = p->setid; /* cpusetid_t */
2583 struct cpuset_getid_args *p = params;
2584 iarg[a++] = p->level; /* cpulevel_t */
2585 iarg[a++] = p->which; /* cpuwhich_t */
2586 iarg[a++] = p->id; /* id_t */
2587 uarg[a++] = (intptr_t)p->setid; /* cpusetid_t * */
2593 struct cpuset_getaffinity_args *p = params;
2594 iarg[a++] = p->level; /* cpulevel_t */
2595 iarg[a++] = p->which; /* cpuwhich_t */
2596 iarg[a++] = p->id; /* id_t */
2597 uarg[a++] = p->cpusetsize; /* size_t */
2598 uarg[a++] = (intptr_t)p->mask; /* cpuset_t * */
2604 struct cpuset_setaffinity_args *p = params;
2605 iarg[a++] = p->level; /* cpulevel_t */
2606 iarg[a++] = p->which; /* cpuwhich_t */
2607 iarg[a++] = p->id; /* id_t */
2608 uarg[a++] = p->cpusetsize; /* size_t */
2609 uarg[a++] = (intptr_t)p->mask; /* const cpuset_t * */
2615 struct faccessat_args *p = params;
2616 iarg[a++] = p->fd; /* int */
2617 uarg[a++] = (intptr_t)p->path; /* const char * */
2618 iarg[a++] = p->amode; /* int */
2619 iarg[a++] = p->flag; /* int */
2625 struct fchmodat_args *p = params;
2626 iarg[a++] = p->fd; /* int */
2627 uarg[a++] = (intptr_t)p->path; /* const char * */
2628 iarg[a++] = p->mode; /* mode_t */
2629 iarg[a++] = p->flag; /* int */
2635 struct fchownat_args *p = params;
2636 iarg[a++] = p->fd; /* int */
2637 uarg[a++] = (intptr_t)p->path; /* const char * */
2638 uarg[a++] = p->uid; /* uid_t */
2639 iarg[a++] = p->gid; /* gid_t */
2640 iarg[a++] = p->flag; /* int */
2646 struct fexecve_args *p = params;
2647 iarg[a++] = p->fd; /* int */
2648 uarg[a++] = (intptr_t)p->argv; /* char ** */
2649 uarg[a++] = (intptr_t)p->envv; /* char ** */
2655 struct futimesat_args *p = params;
2656 iarg[a++] = p->fd; /* int */
2657 uarg[a++] = (intptr_t)p->path; /* const char * */
2658 uarg[a++] = (intptr_t)p->times; /* const struct timeval * */
2664 struct linkat_args *p = params;
2665 iarg[a++] = p->fd1; /* int */
2666 uarg[a++] = (intptr_t)p->path1; /* const char * */
2667 iarg[a++] = p->fd2; /* int */
2668 uarg[a++] = (intptr_t)p->path2; /* const char * */
2669 iarg[a++] = p->flag; /* int */
2675 struct mkdirat_args *p = params;
2676 iarg[a++] = p->fd; /* int */
2677 uarg[a++] = (intptr_t)p->path; /* const char * */
2678 iarg[a++] = p->mode; /* mode_t */
2684 struct mkfifoat_args *p = params;
2685 iarg[a++] = p->fd; /* int */
2686 uarg[a++] = (intptr_t)p->path; /* const char * */
2687 iarg[a++] = p->mode; /* mode_t */
2693 struct openat_args *p = params;
2694 iarg[a++] = p->fd; /* int */
2695 uarg[a++] = (intptr_t)p->path; /* const char * */
2696 iarg[a++] = p->flag; /* int */
2697 iarg[a++] = p->mode; /* mode_t */
2703 struct readlinkat_args *p = params;
2704 iarg[a++] = p->fd; /* int */
2705 uarg[a++] = (intptr_t)p->path; /* const char * */
2706 uarg[a++] = (intptr_t)p->buf; /* char * */
2707 uarg[a++] = p->bufsize; /* size_t */
2713 struct renameat_args *p = params;
2714 iarg[a++] = p->oldfd; /* int */
2715 uarg[a++] = (intptr_t)p->old; /* const char * */
2716 iarg[a++] = p->newfd; /* int */
2717 uarg[a++] = (intptr_t)p->new; /* const char * */
2723 struct symlinkat_args *p = params;
2724 uarg[a++] = (intptr_t)p->path1; /* const char * */
2725 iarg[a++] = p->fd; /* int */
2726 uarg[a++] = (intptr_t)p->path2; /* const char * */
2732 struct unlinkat_args *p = params;
2733 iarg[a++] = p->fd; /* int */
2734 uarg[a++] = (intptr_t)p->path; /* const char * */
2735 iarg[a++] = p->flag; /* int */
2741 struct posix_openpt_args *p = params;
2742 iarg[a++] = p->flags; /* int */
2748 struct gssd_syscall_args *p = params;
2749 uarg[a++] = (intptr_t)p->path; /* const char * */
2755 struct jail_get_args *p = params;
2756 uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */
2757 uarg[a++] = p->iovcnt; /* unsigned int */
2758 iarg[a++] = p->flags; /* int */
2764 struct jail_set_args *p = params;
2765 uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */
2766 uarg[a++] = p->iovcnt; /* unsigned int */
2767 iarg[a++] = p->flags; /* int */
2773 struct jail_remove_args *p = params;
2774 iarg[a++] = p->jid; /* int */
2780 struct __semctl_args *p = params;
2781 iarg[a++] = p->semid; /* int */
2782 iarg[a++] = p->semnum; /* int */
2783 iarg[a++] = p->cmd; /* int */
2784 uarg[a++] = (intptr_t)p->arg; /* union semun * */
2790 struct msgctl_args *p = params;
2791 iarg[a++] = p->msqid; /* int */
2792 iarg[a++] = p->cmd; /* int */
2793 uarg[a++] = (intptr_t)p->buf; /* struct msqid_ds * */
2799 struct shmctl_args *p = params;
2800 iarg[a++] = p->shmid; /* int */
2801 iarg[a++] = p->cmd; /* int */
2802 uarg[a++] = (intptr_t)p->buf; /* struct shmid_ds * */
2808 struct lpathconf_args *p = params;
2809 uarg[a++] = (intptr_t)p->path; /* const char * */
2810 iarg[a++] = p->name; /* int */
2816 struct __cap_rights_get_args *p = params;
2817 iarg[a++] = p->version; /* int */
2818 iarg[a++] = p->fd; /* int */
2819 uarg[a++] = (intptr_t)p->rightsp; /* cap_rights_t * */
2830 struct cap_getmode_args *p = params;
2831 uarg[a++] = (intptr_t)p->modep; /* u_int * */
2837 struct pdfork_args *p = params;
2838 uarg[a++] = (intptr_t)p->fdp; /* int * */
2839 iarg[a++] = p->flags; /* int */
2845 struct pdkill_args *p = params;
2846 iarg[a++] = p->fd; /* int */
2847 iarg[a++] = p->signum; /* int */
2853 struct pdgetpid_args *p = params;
2854 iarg[a++] = p->fd; /* int */
2855 uarg[a++] = (intptr_t)p->pidp; /* pid_t * */
2861 struct pselect_args *p = params;
2862 iarg[a++] = p->nd; /* int */
2863 uarg[a++] = (intptr_t)p->in; /* fd_set * */
2864 uarg[a++] = (intptr_t)p->ou; /* fd_set * */
2865 uarg[a++] = (intptr_t)p->ex; /* fd_set * */
2866 uarg[a++] = (intptr_t)p->ts; /* const struct timespec * */
2867 uarg[a++] = (intptr_t)p->sm; /* const sigset_t * */
2873 struct getloginclass_args *p = params;
2874 uarg[a++] = (intptr_t)p->namebuf; /* char * */
2875 uarg[a++] = p->namelen; /* size_t */
2881 struct setloginclass_args *p = params;
2882 uarg[a++] = (intptr_t)p->namebuf; /* const char * */
2888 struct rctl_get_racct_args *p = params;
2889 uarg[a++] = (intptr_t)p->inbufp; /* const void * */
2890 uarg[a++] = p->inbuflen; /* size_t */
2891 uarg[a++] = (intptr_t)p->outbufp; /* void * */
2892 uarg[a++] = p->outbuflen; /* size_t */
2898 struct rctl_get_rules_args *p = params;
2899 uarg[a++] = (intptr_t)p->inbufp; /* const void * */
2900 uarg[a++] = p->inbuflen; /* size_t */
2901 uarg[a++] = (intptr_t)p->outbufp; /* void * */
2902 uarg[a++] = p->outbuflen; /* size_t */
2908 struct rctl_get_limits_args *p = params;
2909 uarg[a++] = (intptr_t)p->inbufp; /* const void * */
2910 uarg[a++] = p->inbuflen; /* size_t */
2911 uarg[a++] = (intptr_t)p->outbufp; /* void * */
2912 uarg[a++] = p->outbuflen; /* size_t */
2918 struct rctl_add_rule_args *p = params;
2919 uarg[a++] = (intptr_t)p->inbufp; /* const void * */
2920 uarg[a++] = p->inbuflen; /* size_t */
2921 uarg[a++] = (intptr_t)p->outbufp; /* void * */
2922 uarg[a++] = p->outbuflen; /* size_t */
2928 struct rctl_remove_rule_args *p = params;
2929 uarg[a++] = (intptr_t)p->inbufp; /* const void * */
2930 uarg[a++] = p->inbuflen; /* size_t */
2931 uarg[a++] = (intptr_t)p->outbufp; /* void * */
2932 uarg[a++] = p->outbuflen; /* size_t */
2938 struct posix_fallocate_args *p = params;
2939 iarg[a++] = p->fd; /* int */
2940 iarg[a++] = p->offset; /* off_t */
2941 iarg[a++] = p->len; /* off_t */
2947 struct posix_fadvise_args *p = params;
2948 iarg[a++] = p->fd; /* int */
2949 iarg[a++] = p->offset; /* off_t */
2950 iarg[a++] = p->len; /* off_t */
2951 iarg[a++] = p->advice; /* int */
2957 struct wait6_args *p = params;
2958 iarg[a++] = p->idtype; /* idtype_t */
2959 iarg[a++] = p->id; /* id_t */
2960 uarg[a++] = (intptr_t)p->status; /* int * */
2961 iarg[a++] = p->options; /* int */
2962 uarg[a++] = (intptr_t)p->wrusage; /* struct __wrusage * */
2963 uarg[a++] = (intptr_t)p->info; /* struct __siginfo * */
2969 struct cap_rights_limit_args *p = params;
2970 iarg[a++] = p->fd; /* int */
2971 uarg[a++] = (intptr_t)p->rightsp; /* cap_rights_t * */
2977 struct cap_ioctls_limit_args *p = params;
2978 iarg[a++] = p->fd; /* int */
2979 uarg[a++] = (intptr_t)p->cmds; /* const u_long * */
2980 uarg[a++] = p->ncmds; /* size_t */
2986 struct cap_ioctls_get_args *p = params;
2987 iarg[a++] = p->fd; /* int */
2988 uarg[a++] = (intptr_t)p->cmds; /* u_long * */
2989 uarg[a++] = p->maxcmds; /* size_t */
2995 struct cap_fcntls_limit_args *p = params;
2996 iarg[a++] = p->fd; /* int */
2997 uarg[a++] = p->fcntlrights; /* uint32_t */
3003 struct cap_fcntls_get_args *p = params;
3004 iarg[a++] = p->fd; /* int */
3005 uarg[a++] = (intptr_t)p->fcntlrightsp; /* uint32_t * */
3011 struct bindat_args *p = params;
3012 iarg[a++] = p->fd; /* int */
3013 iarg[a++] = p->s; /* int */
3014 uarg[a++] = (intptr_t)p->name; /* const struct sockaddr * */
3015 iarg[a++] = p->namelen; /* __socklen_t */
3021 struct connectat_args *p = params;
3022 iarg[a++] = p->fd; /* int */
3023 iarg[a++] = p->s; /* int */
3024 uarg[a++] = (intptr_t)p->name; /* const struct sockaddr * */
3025 iarg[a++] = p->namelen; /* __socklen_t */
3031 struct chflagsat_args *p = params;
3032 iarg[a++] = p->fd; /* int */
3033 uarg[a++] = (intptr_t)p->path; /* const char * */
3034 uarg[a++] = p->flags; /* u_long */
3035 iarg[a++] = p->atflag; /* int */
3041 struct accept4_args *p = params;
3042 iarg[a++] = p->s; /* int */
3043 uarg[a++] = (intptr_t)p->name; /* struct sockaddr * */
3044 uarg[a++] = (intptr_t)p->anamelen; /* __socklen_t * */
3045 iarg[a++] = p->flags; /* int */
3051 struct pipe2_args *p = params;
3052 uarg[a++] = (intptr_t)p->fildes; /* int * */
3053 iarg[a++] = p->flags; /* int */
3059 struct aio_mlock_args *p = params;
3060 uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb * */
3066 struct procctl_args *p = params;
3067 iarg[a++] = p->idtype; /* idtype_t */
3068 iarg[a++] = p->id; /* id_t */
3069 iarg[a++] = p->com; /* int */
3070 uarg[a++] = (intptr_t)p->data; /* void * */
3076 struct ppoll_args *p = params;
3077 uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
3078 uarg[a++] = p->nfds; /* u_int */
3079 uarg[a++] = (intptr_t)p->ts; /* const struct timespec * */
3080 uarg[a++] = (intptr_t)p->set; /* const sigset_t * */
3086 struct futimens_args *p = params;
3087 iarg[a++] = p->fd; /* int */
3088 uarg[a++] = (intptr_t)p->times; /* const struct timespec * */
3094 struct utimensat_args *p = params;
3095 iarg[a++] = p->fd; /* int */
3096 uarg[a++] = (intptr_t)p->path; /* const char * */
3097 uarg[a++] = (intptr_t)p->times; /* const struct timespec * */
3098 iarg[a++] = p->flag; /* int */
3104 struct fdatasync_args *p = params;
3105 iarg[a++] = p->fd; /* int */
3111 struct fstat_args *p = params;
3112 iarg[a++] = p->fd; /* int */
3113 uarg[a++] = (intptr_t)p->sb; /* struct stat * */
3119 struct fstatat_args *p = params;
3120 iarg[a++] = p->fd; /* int */
3121 uarg[a++] = (intptr_t)p->path; /* const char * */
3122 uarg[a++] = (intptr_t)p->buf; /* struct stat * */
3123 iarg[a++] = p->flag; /* int */
3129 struct fhstat_args *p = params;
3130 uarg[a++] = (intptr_t)p->u_fhp; /* const struct fhandle * */
3131 uarg[a++] = (intptr_t)p->sb; /* struct stat * */
3137 struct getdirentries_args *p = params;
3138 iarg[a++] = p->fd; /* int */
3139 uarg[a++] = (intptr_t)p->buf; /* char * */
3140 uarg[a++] = p->count; /* size_t */
3141 uarg[a++] = (intptr_t)p->basep; /* off_t * */
3147 struct statfs_args *p = params;
3148 uarg[a++] = (intptr_t)p->path; /* const char * */
3149 uarg[a++] = (intptr_t)p->buf; /* struct statfs * */
3155 struct fstatfs_args *p = params;
3156 iarg[a++] = p->fd; /* int */
3157 uarg[a++] = (intptr_t)p->buf; /* struct statfs * */
3163 struct getfsstat_args *p = params;
3164 uarg[a++] = (intptr_t)p->buf; /* struct statfs * */
3165 iarg[a++] = p->bufsize; /* long */
3166 iarg[a++] = p->mode; /* int */
3172 struct fhstatfs_args *p = params;
3173 uarg[a++] = (intptr_t)p->u_fhp; /* const struct fhandle * */
3174 uarg[a++] = (intptr_t)p->buf; /* struct statfs * */
3180 struct mknodat_args *p = params;
3181 iarg[a++] = p->fd; /* int */
3182 uarg[a++] = (intptr_t)p->path; /* const char * */
3183 iarg[a++] = p->mode; /* mode_t */
3184 iarg[a++] = p->dev; /* dev_t */
3190 struct kevent_args *p = params;
3191 iarg[a++] = p->fd; /* int */
3192 uarg[a++] = (intptr_t)p->changelist; /* const struct kevent * */
3193 iarg[a++] = p->nchanges; /* int */
3194 uarg[a++] = (intptr_t)p->eventlist; /* struct kevent * */
3195 iarg[a++] = p->nevents; /* int */
3196 uarg[a++] = (intptr_t)p->timeout; /* const struct timespec * */
3202 struct cpuset_getdomain_args *p = params;
3203 iarg[a++] = p->level; /* cpulevel_t */
3204 iarg[a++] = p->which; /* cpuwhich_t */
3205 iarg[a++] = p->id; /* id_t */
3206 uarg[a++] = p->domainsetsize; /* size_t */
3207 uarg[a++] = (intptr_t)p->mask; /* domainset_t * */
3208 uarg[a++] = (intptr_t)p->policy; /* int * */
3214 struct cpuset_setdomain_args *p = params;
3215 iarg[a++] = p->level; /* cpulevel_t */
3216 iarg[a++] = p->which; /* cpuwhich_t */
3217 iarg[a++] = p->id; /* id_t */
3218 uarg[a++] = p->domainsetsize; /* size_t */
3219 uarg[a++] = (intptr_t)p->mask; /* domainset_t * */
3220 iarg[a++] = p->policy; /* int */
3226 struct getrandom_args *p = params;
3227 uarg[a++] = (intptr_t)p->buf; /* void * */
3228 uarg[a++] = p->buflen; /* size_t */
3229 uarg[a++] = p->flags; /* unsigned int */
3235 struct getfhat_args *p = params;
3236 iarg[a++] = p->fd; /* int */
3237 uarg[a++] = (intptr_t)p->path; /* char * */
3238 uarg[a++] = (intptr_t)p->fhp; /* struct fhandle * */
3239 iarg[a++] = p->flags; /* int */
3245 struct fhlink_args *p = params;
3246 uarg[a++] = (intptr_t)p->fhp; /* struct fhandle * */
3247 uarg[a++] = (intptr_t)p->to; /* const char * */
3253 struct fhlinkat_args *p = params;
3254 uarg[a++] = (intptr_t)p->fhp; /* struct fhandle * */
3255 iarg[a++] = p->tofd; /* int */
3256 uarg[a++] = (intptr_t)p->to; /* const char * */
3262 struct fhreadlink_args *p = params;
3263 uarg[a++] = (intptr_t)p->fhp; /* struct fhandle * */
3264 uarg[a++] = (intptr_t)p->buf; /* char * */
3265 uarg[a++] = p->bufsize; /* size_t */
3271 struct funlinkat_args *p = params;
3272 iarg[a++] = p->dfd; /* int */
3273 uarg[a++] = (intptr_t)p->path; /* const char * */
3274 iarg[a++] = p->fd; /* int */
3275 iarg[a++] = p->flag; /* int */
3281 struct copy_file_range_args *p = params;
3282 iarg[a++] = p->infd; /* int */
3283 uarg[a++] = (intptr_t)p->inoffp; /* off_t * */
3284 iarg[a++] = p->outfd; /* int */
3285 uarg[a++] = (intptr_t)p->outoffp; /* off_t * */
3286 uarg[a++] = p->len; /* size_t */
3287 uarg[a++] = p->flags; /* unsigned int */
3293 struct __sysctlbyname_args *p = params;
3294 uarg[a++] = (intptr_t)p->name; /* const char * */
3295 uarg[a++] = p->namelen; /* size_t */
3296 uarg[a++] = (intptr_t)p->old; /* void * */
3297 uarg[a++] = (intptr_t)p->oldlenp; /* size_t * */
3298 uarg[a++] = (intptr_t)p->new; /* void * */
3299 uarg[a++] = p->newlen; /* size_t */
3305 struct shm_open2_args *p = params;
3306 uarg[a++] = (intptr_t)p->path; /* const char * */
3307 iarg[a++] = p->flags; /* int */
3308 iarg[a++] = p->mode; /* mode_t */
3309 iarg[a++] = p->shmflags; /* int */
3310 uarg[a++] = (intptr_t)p->name; /* const char * */
3316 struct shm_rename_args *p = params;
3317 uarg[a++] = (intptr_t)p->path_from; /* const char * */
3318 uarg[a++] = (intptr_t)p->path_to; /* const char * */
3319 iarg[a++] = p->flags; /* int */
3325 struct sigfastblock_args *p = params;
3326 iarg[a++] = p->cmd; /* int */
3327 uarg[a++] = (intptr_t)p->ptr; /* void * */
3333 struct __realpathat_args *p = params;
3334 iarg[a++] = p->fd; /* int */
3335 uarg[a++] = (intptr_t)p->path; /* const char * */
3336 uarg[a++] = (intptr_t)p->buf; /* char * */
3337 uarg[a++] = p->size; /* size_t */
3338 iarg[a++] = p->flags; /* int */
3344 struct close_range_args *p = params;
3345 uarg[a++] = p->lowfd; /* u_int */
3346 uarg[a++] = p->highfd; /* u_int */
3347 iarg[a++] = p->flags; /* int */
3353 struct rpctls_syscall_args *p = params;
3354 iarg[a++] = p->op; /* int */
3355 uarg[a++] = (intptr_t)p->path; /* const char * */
3361 struct __specialfd_args *p = params;
3362 iarg[a++] = p->type; /* int */
3363 uarg[a++] = (intptr_t)p->req; /* const void * */
3364 uarg[a++] = p->len; /* size_t */
3370 struct aio_writev_args *p = params;
3371 uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb * */
3377 struct aio_readv_args *p = params;
3378 uarg[a++] = (intptr_t)p->aiocbp; /* struct aiocb * */
3384 struct fspacectl_args *p = params;
3385 iarg[a++] = p->fd; /* int */
3386 iarg[a++] = p->cmd; /* int */
3387 uarg[a++] = (intptr_t)p->rqsr; /* const struct spacectl_range * */
3388 iarg[a++] = p->flags; /* int */
3389 uarg[a++] = (intptr_t)p->rmsr; /* struct spacectl_range * */
3400 struct swapoff_args *p = params;
3401 uarg[a++] = (intptr_t)p->name; /* const char * */
3402 uarg[a++] = p->flags; /* u_int */
3408 struct kqueuex_args *p = params;
3409 uarg[a++] = p->flags; /* u_int */
3415 struct membarrier_args *p = params;
3416 iarg[a++] = p->cmd; /* int */
3417 uarg[a++] = p->flags; /* unsigned */
3418 iarg[a++] = p->cpu_id; /* int */
3424 struct timerfd_create_args *p = params;
3425 iarg[a++] = p->clockid; /* int */
3426 iarg[a++] = p->flags; /* int */
3432 struct timerfd_gettime_args *p = params;
3433 iarg[a++] = p->fd; /* int */
3434 uarg[a++] = (intptr_t)p->curr_value; /* struct itimerspec * */
3440 struct timerfd_settime_args *p = params;
3441 iarg[a++] = p->fd; /* int */
3442 iarg[a++] = p->flags; /* int */
3443 uarg[a++] = (intptr_t)p->new_value; /* const struct itimerspec * */
3444 uarg[a++] = (intptr_t)p->old_value; /* struct itimerspec * */
3450 struct kcmp_args *p = params;
3451 iarg[a++] = p->pid1; /* pid_t */
3452 iarg[a++] = p->pid2; /* pid_t */
3453 iarg[a++] = p->type; /* int */
3454 uarg[a++] = (intptr_t)p->idx1; /* uintptr_t */
3455 uarg[a++] = (intptr_t)p->idx2; /* uintptr_t */
3461 struct getrlimitusage_args *p = params;
3462 uarg[a++] = p->which; /* u_int */
3463 iarg[a++] = p->flags; /* int */
3464 uarg[a++] = (intptr_t)p->res; /* rlim_t * */
3470 struct fchroot_args *p = params;
3471 iarg[a++] = p->fd; /* int */
3477 struct setcred_args *p = params;
3478 uarg[a++] = p->flags; /* u_int */
3479 uarg[a++] = (intptr_t)p->wcred; /* const struct setcred * */
3480 uarg[a++] = p->size; /* size_t */
3492 const char *p = NULL;
3501 p = "int";
3514 p = "int";
3517 p = "userland void *";
3520 p = "size_t";
3530 p = "int";
3533 p = "userland const void *";
3536 p = "size_t";
3546 p = "userland const char *";
3549 p = "int";
3552 p = "mode_t";
3562 p = "int";
3572 p = "int";
3575 p = "userland int *";
3578 p = "int";
3581 p = "userland struct rusage *";
3591 p = "userland const char *";
3594 p = "userland const char *";
3604 p = "userland const char *";
3614 p = "userland const char *";
3624 p = "int";
3634 p = "userland const char *";
3637 p = "mode_t";
3647 p = "userland const char *";
3650 p = "int";
3653 p = "int";
3663 p = "userland char *";
3676 p = "userland const char *";
3679 p = "userland const char *";
3682 p = "int";
3685 p = "userland void *";
3695 p = "userland const char *";
3698 p = "int";
3708 p = "uid_t";
3724 p = "int";
3727 p = "pid_t";
3730 p = "caddr_t";
3733 p = "int";
3743 p = "int";
3746 p = "userland struct msghdr *";
3749 p = "int";
3759 p = "int";
3762 p = "userland const struct msghdr *";
3765 p = "int";
3775 p = "int";
3778 p = "userland void *";
3781 p = "size_t";
3784 p = "int";
3787 p = "userland struct sockaddr *";
3790 p = "userland __socklen_t *";
3800 p = "int";
3803 p = "userland struct sockaddr *";
3806 p = "userland __socklen_t *";
3816 p = "int";
3819 p = "userland struct sockaddr *";
3822 p = "userland __socklen_t *";
3832 p = "int";
3835 p = "userland struct sockaddr *";
3838 p = "userland __socklen_t *";
3848 p = "userland const char *";
3851 p = "int";
3861 p = "userland const char *";
3864 p = "u_long";
3874 p = "int";
3877 p = "u_long";
3890 p = "int";
3893 p = "int";
3906 p = "u_int";
3919 p = "userland char *";
3922 p = "size_t";
3925 p = "size_t";
3928 p = "u_int";
3938 p = "userland const char *";
3941 p = "int";
3944 p = "int";
3947 p = "int";
3960 p = "userland char *";
3963 p = "u_int";
3973 p = "userland const char *";
3983 p = "userland const char *";
3993 p = "userland const struct sigaltstack *";
3996 p = "userland struct sigaltstack *";
4006 p = "int";
4009 p = "u_long";
4012 p = "userland char *";
4022 p = "int";
4032 p = "userland const char *";
4042 p = "userland const char *";
4045 p = "userland const char *";
4055 p = "userland const char *";
4058 p = "userland char *";
4061 p = "size_t";
4071 p = "userland const char *";
4074 p = "userland char **";
4077 p = "userland char **";
4087 p = "mode_t";
4097 p = "userland const char *";
4107 p = "userland void *";
4110 p = "size_t";
4113 p = "int";
4126 p = "userland void *";
4129 p = "size_t";
4139 p = "userland void *";
4142 p = "size_t";
4145 p = "int";
4155 p = "userland void *";
4158 p = "size_t";
4161 p = "int";
4171 p = "userland const void *";
4174 p = "size_t";
4177 p = "userland char *";
4187 p = "int";
4190 p = "userland gid_t *";
4200 p = "int";
4203 p = "userland const gid_t *";
4216 p = "int";
4219 p = "int";
4229 p = "int";
4232 p = "userland const struct itimerval *";
4235 p = "userland struct itimerval *";
4245 p = "userland const char *";
4255 p = "int";
4258 p = "userland struct itimerval *";
4271 p = "u_int";
4274 p = "u_int";
4284 p = "int";
4287 p = "int";
4290 p = "intptr_t";
4300 p = "int";
4303 p = "userland fd_set *";
4306 p = "userland fd_set *";
4309 p = "userland fd_set *";
4312 p = "userland struct timeval *";
4322 p = "int";
4332 p = "int";
4335 p = "int";
4338 p = "int";
4348 p = "int";
4351 p = "int";
4354 p = "int";
4364 p = "int";
4367 p = "userland const struct sockaddr *";
4370 p = "__socklen_t";
4380 p = "int";
4383 p = "int";
4393 p = "int";
4396 p = "userland const struct sockaddr *";
4399 p = "__socklen_t";
4409 p = "int";
4412 p = "int";
4415 p = "int";
4418 p = "userland const void *";
4421 p = "__socklen_t";
4431 p = "int";
4434 p = "int";
4444 p = "userland struct timeval *";
4447 p = "userland struct timezone *";
4457 p = "int";
4460 p = "userland struct rusage *";
4470 p = "int";
4473 p = "int";
4476 p = "int";
4479 p = "userland void *";
4482 p = "userland __socklen_t *";
4492 p = "int";
4495 p = "userland const struct iovec *";
4498 p = "u_int";
4508 p = "int";
4511 p = "userland const struct iovec *";
4514 p = "u_int";
4524 p = "userland const struct timeval *";
4527 p = "userland const struct timezone *";
4537 p = "int";
4540 p = "int";
4543 p = "int";
4553 p = "int";
4556 p = "mode_t";
4566 p = "int";
4569 p = "int";
4579 p = "int";
4582 p = "int";
4592 p = "userland const char *";
4595 p = "userland const char *";
4605 p = "int";
4608 p = "int";
4618 p = "userland const char *";
4621 p = "mode_t";
4631 p = "int";
4634 p = "userland const void *";
4637 p = "size_t";
4640 p = "int";
4643 p = "userland const struct sockaddr *";
4646 p = "__socklen_t";
4656 p = "int";
4659 p = "int";
4669 p = "int";
4672 p = "int";
4675 p = "int";
4678 p = "userland int *";
4688 p = "userland const char *";
4691 p = "mode_t";
4701 p = "userland const char *";
4711 p = "userland const char *";
4714 p = "userland const struct timeval *";
4724 p = "userland const struct timeval *";
4727 p = "userland struct timeval *";
4740 p = "userland const char *";
4743 p = "int";
4746 p = "int";
4749 p = "userland void *";
4759 p = "int";
4762 p = "int";
4765 p = "int";
4768 p = "userland char **";
4778 p = "int";
4781 p = "userland void *";
4791 p = "userland const char *";
4794 p = "userland struct fhandle *";
4804 p = "userland const char *";
4807 p = "userland struct fhandle *";
4817 p = "int";
4820 p = "userland char *";
4830 p = "int";
4833 p = "pid_t";
4836 p = "userland struct rtprio *";
4846 p = "int";
4849 p = "int";
4852 p = "int";
4855 p = "int";
4858 p = "int";
4868 p = "int";
4871 p = "int";
4874 p = "int";
4877 p = "int";
4880 p = "int";
4883 p = "int";
4893 p = "int";
4896 p = "int";
4899 p = "int";
4902 p = "int";
4912 p = "int";
4922 p = "userland struct timex *";
4932 p = "gid_t";
4942 p = "gid_t";
4952 p = "uid_t";
4962 p = "userland const char *";
4965 p = "int";
4975 p = "int";
4978 p = "int";
4988 p = "u_int";
4991 p = "userland struct rlimit *";
5001 p = "u_int";
5004 p = "userland struct rlimit *";
5017 p = "userland int *";
5020 p = "u_int";
5023 p = "userland void *";
5026 p = "userland size_t *";
5029 p = "userland const void *";
5032 p = "size_t";
5042 p = "userland const void *";
5045 p = "size_t";
5055 p = "userland const void *";
5058 p = "size_t";
5068 p = "userland const char *";
5078 p = "int";
5081 p = "userland const struct timeval *";
5091 p = "pid_t";
5101 p = "userland struct pollfd *";
5104 p = "u_int";
5107 p = "int";
5147 p = "key_t";
5150 p = "int";
5153 p = "int";
5163 p = "int";
5166 p = "userland struct sembuf *";
5169 p = "size_t";
5179 p = "key_t";
5182 p = "int";
5192 p = "int";
5195 p = "userland const void *";
5198 p = "size_t";
5201 p = "int";
5211 p = "int";
5214 p = "userland void *";
5217 p = "size_t";
5220 p = "long";
5223 p = "int";
5233 p = "int";
5236 p = "userland const void *";
5239 p = "int";
5249 p = "userland const void *";
5259 p = "key_t";
5262 p = "size_t";
5265 p = "int";
5275 p = "clockid_t";
5278 p = "userland struct timespec *";
5288 p = "clockid_t";
5291 p = "userland const struct timespec *";
5301 p = "clockid_t";
5304 p = "userland struct timespec *";
5314 p = "clockid_t";
5317 p = "userland struct sigevent *";
5320 p = "userland int *";
5330 p = "int";
5340 p = "int";
5343 p = "int";
5346 p = "userland const struct itimerspec *";
5349 p = "userland struct itimerspec *";
5359 p = "int";
5362 p = "userland struct itimerspec *";
5372 p = "int";
5382 p = "userland const struct timespec *";
5385 p = "userland struct timespec *";
5395 p = "userland ffcounter *";
5405 p = "userland struct ffclock_estimate *";
5415 p = "userland struct ffclock_estimate *";
5425 p = "clockid_t";
5428 p = "int";
5431 p = "userland const struct timespec *";
5434 p = "userland struct timespec *";
5444 p = "id_t";
5447 p = "int";
5450 p = "userland clockid_t *";
5460 p = "userland struct ntptimeval *";
5470 p = "userland void *";
5473 p = "size_t";
5476 p = "int";
5486 p = "int";
5499 p = "userland const char *";
5502 p = "int";
5505 p = "int";
5515 p = "userland struct aiocb *";
5525 p = "userland struct aiocb *";
5535 p = "int";
5538 p = "userland struct aiocb * const *";
5541 p = "int";
5544 p = "userland struct sigevent *";
5554 p = "userland const char *";
5557 p = "mode_t";
5567 p = "userland const char *";
5570 p = "userland const struct timeval *";
5580 p = "int";
5583 p = "userland struct iovec *";
5586 p = "u_int";
5589 p = "off_t";
5599 p = "int";
5602 p = "userland struct iovec *";
5605 p = "u_int";
5608 p = "off_t";
5618 p = "userland const struct fhandle *";
5621 p = "int";
5631 p = "int";
5641 p = "int";
5644 p = "userland struct module_stat *";
5654 p = "int";
5664 p = "userland const char *";
5674 p = "userland const char *";
5684 p = "int";
5694 p = "userland const char *";
5704 p = "int";
5714 p = "int";
5717 p = "userland struct kld_file_stat *";
5727 p = "int";
5737 p = "pid_t";
5747 p = "uid_t";
5750 p = "uid_t";
5753 p = "uid_t";
5763 p = "gid_t";
5766 p = "gid_t";
5769 p = "gid_t";
5779 p = "userland struct aiocb *";
5789 p = "userland const struct aiocb * const *";
5792 p = "int";
5795 p = "userland const struct timespec *";
5805 p = "int";
5808 p = "userland struct aiocb *";
5818 p = "userland struct aiocb *";
5831 p = "int";
5844 p = "userland char *";
5847 p = "size_t";
5857 p = "pid_t";
5860 p = "userland const struct sched_param *";
5870 p = "pid_t";
5873 p = "userland struct sched_param *";
5883 p = "pid_t";
5886 p = "int";
5889 p = "userland const struct sched_param *";
5899 p = "pid_t";
5912 p = "int";
5922 p = "int";
5932 p = "pid_t";
5935 p = "userland struct timespec *";
5945 p = "userland const void *";
5948 p = "size_t";
5958 p = "int";
5961 p = "int";
5964 p = "userland void *";
5974 p = "userland struct jail *";
5984 p = "int";
5987 p = "userland char *";
5990 p = "int";
5993 p = "userland void *";
5996 p = "int";
6006 p = "int";
6009 p = "userland const sigset_t *";
6012 p = "userland sigset_t *";
6022 p = "userland const sigset_t *";
6032 p = "userland sigset_t *";
6042 p = "userland const sigset_t *";
6045 p = "userland struct __siginfo *";
6048 p = "userland const struct timespec *";
6058 p = "userland const sigset_t *";
6061 p = "userland struct __siginfo *";
6071 p = "userland const char *";
6074 p = "__acl_type_t";
6077 p = "userland struct acl *";
6087 p = "userland const char *";
6090 p = "__acl_type_t";
6093 p = "userland struct acl *";
6103 p = "int";
6106 p = "__acl_type_t";
6109 p = "userland struct acl *";
6119 p = "int";
6122 p = "__acl_type_t";
6125 p = "userland struct acl *";
6135 p = "userland const char *";
6138 p = "__acl_type_t";
6148 p = "int";
6151 p = "__acl_type_t";
6161 p = "userland const char *";
6164 p = "__acl_type_t";
6167 p = "userland struct acl *";
6177 p = "int";
6180 p = "__acl_type_t";
6183 p = "userland struct acl *";
6193 p = "userland const char *";
6196 p = "int";
6199 p = "userland const char *";
6202 p = "int";
6205 p = "userland const char *";
6215 p = "userland const char *";
6218 p = "int";
6221 p = "userland const char *";
6224 p = "userland void *";
6227 p = "size_t";
6237 p = "userland const char *";
6240 p = "int";
6243 p = "userland const char *";
6246 p = "userland void *";
6249 p = "size_t";
6259 p = "userland const char *";
6262 p = "int";
6265 p = "userland const char *";
6275 p = "userland struct aiocb **";
6278 p = "userland struct timespec *";
6288 p = "userland uid_t *";
6291 p = "userland uid_t *";
6294 p = "userland uid_t *";
6304 p = "userland gid_t *";
6307 p = "userland gid_t *";
6310 p = "userland gid_t *";
6323 p = "int";
6326 p = "int";
6329 p = "userland const char *";
6332 p = "userland void *";
6335 p = "size_t";
6345 p = "int";
6348 p = "int";
6351 p = "userland const char *";
6354 p = "userland void *";
6357 p = "size_t";
6367 p = "int";
6370 p = "int";
6373 p = "userland const char *";
6383 p = "int";
6393 p = "userland const char *";
6396 p = "int";
6406 p = "long";
6409 p = "long";
6412 p = "long";
6415 p = "long";
6418 p = "long";
6421 p = "long";
6424 p = "long";
6434 p = "userland struct iovec *";
6437 p = "unsigned int";
6440 p = "int";
6450 p = "userland struct mac *";
6460 p = "userland struct mac *";
6470 p = "int";
6473 p = "userland struct mac *";
6483 p = "userland const char *";
6486 p = "userland struct mac *";
6496 p = "int";
6499 p = "userland struct mac *";
6509 p = "userland const char *";
6512 p = "userland struct mac *";
6522 p = "int";
6525 p = "userland const char *";
6528 p = "userland char *";
6531 p = "int";
6541 p = "userland const char *";
6544 p = "u_long";
6554 p = "userland struct uuid *";
6557 p = "int";
6567 p = "int";
6570 p = "int";
6573 p = "off_t";
6576 p = "size_t";
6579 p = "userland struct sf_hdtr *";
6582 p = "userland off_t *";
6585 p = "int";
6595 p = "userland const char *";
6598 p = "int";
6601 p = "userland void *";
6611 p = "semid_t";
6621 p = "semid_t";
6631 p = "semid_t";
6641 p = "semid_t";
6651 p = "userland semid_t *";
6654 p = "unsigned int";
6664 p = "userland semid_t *";
6667 p = "userland const char *";
6670 p = "int";
6673 p = "mode_t";
6676 p = "unsigned int";
6686 p = "userland const char *";
6696 p = "semid_t";
6699 p = "userland int *";
6709 p = "semid_t";
6719 p = "pid_t";
6722 p = "userland struct mac *";
6732 p = "userland const char *";
6735 p = "userland struct mac *";
6745 p = "userland const char *";
6748 p = "userland struct mac *";
6758 p = "userland const char *";
6761 p = "int";
6764 p = "userland const char *";
6767 p = "userland void *";
6770 p = "size_t";
6780 p = "userland const char *";
6783 p = "int";
6786 p = "userland const char *";
6789 p = "userland void *";
6792 p = "size_t";
6802 p = "userland const char *";
6805 p = "int";
6808 p = "userland const char *";
6818 p = "userland const char *";
6821 p = "userland char **";
6824 p = "userland char **";
6827 p = "userland struct mac *";
6837 p = "int";
6840 p = "userland const struct sigaction *";
6843 p = "userland struct sigaction *";
6853 p = "userland const struct __ucontext *";
6863 p = "userland struct __ucontext *";
6873 p = "userland const struct __ucontext *";
6883 p = "userland struct __ucontext *";
6886 p = "userland const struct __ucontext *";
6896 p = "userland const char *";
6899 p = "__acl_type_t";
6902 p = "userland struct acl *";
6912 p = "userland const char *";
6915 p = "__acl_type_t";
6918 p = "userland struct acl *";
6928 p = "userland const char *";
6931 p = "__acl_type_t";
6941 p = "userland const char *";
6944 p = "__acl_type_t";
6947 p = "userland struct acl *";
6957 p = "userland const sigset_t *";
6960 p = "userland int *";
6970 p = "userland ucontext_t *";
6973 p = "userland long *";
6976 p = "int";
6986 p = "userland long *";
6996 p = "userland long *";
7006 p = "long";
7009 p = "int";
7019 p = "int";
7029 p = "int";
7032 p = "int";
7035 p = "userland void *";
7038 p = "size_t";
7048 p = "userland const char *";
7051 p = "int";
7054 p = "userland void *";
7057 p = "size_t";
7067 p = "userland const char *";
7070 p = "int";
7073 p = "userland void *";
7076 p = "size_t";
7086 p = "semid_t";
7089 p = "userland const struct timespec *";
7099 p = "userland const struct timespec *";
7109 p = "long";
7119 p = "int";
7122 p = "int";
7132 p = "userland const void *";
7135 p = "u_int";
7145 p = "int";
7148 p = "userland void *";
7151 p = "u_int";
7161 p = "userland uid_t *";
7171 p = "userland uid_t *";
7181 p = "userland struct auditinfo *";
7191 p = "userland struct auditinfo *";
7201 p = "userland struct auditinfo_addr *";
7204 p = "u_int";
7214 p = "userland struct auditinfo_addr *";
7217 p = "u_int";
7227 p = "userland const char *";
7237 p = "userland void *";
7240 p = "int";
7243 p = "u_long";
7246 p = "userland void *";
7249 p = "userland void *";
7259 p = "userland struct thr_param *";
7262 p = "int";
7272 p = "pid_t";
7275 p = "int";
7278 p = "userland void *";
7288 p = "userland const char *";
7291 p = "int";
7294 p = "mode_t";
7297 p = "userland const struct mq_attr *";
7307 p = "int";
7310 p = "userland const struct mq_attr *";
7313 p = "userland struct mq_attr *";
7323 p = "int";
7326 p = "userland char *";
7329 p = "size_t";
7332 p = "userland unsigned *";
7335 p = "userland const struct timespec *";
7345 p = "int";
7348 p = "userland const char *";
7351 p = "size_t";
7354 p = "unsigned";
7357 p = "userland const struct timespec *";
7367 p = "int";
7370 p = "userland const struct sigevent *";
7380 p = "userland const char *";
7390 p = "userland const char *";
7393 p = "int";
7396 p = "userland void **";
7406 p = "long";
7409 p = "userland const char *";
7419 p = "int";
7422 p = "userland struct aiocb *";
7432 p = "int";
7435 p = "lwpid_t";
7438 p = "userland struct rtprio *";
7448 p = "int";
7451 p = "uint32_t";
7461 p = "int";
7464 p = "userland void *";
7467 p = "int";
7470 p = "userland const struct sockaddr *";
7473 p = "__socklen_t";
7476 p = "userland struct sctp_sndrcvinfo *";
7479 p = "int";
7489 p = "int";
7492 p = "userland struct iovec *";
7495 p = "int";
7498 p = "userland const struct sockaddr *";
7501 p = "__socklen_t";
7504 p = "userland struct sctp_sndrcvinfo *";
7507 p = "int";
7517 p = "int";
7520 p = "userland struct iovec *";
7523 p = "int";
7526 p = "userland struct sockaddr *";
7529 p = "userland __socklen_t *";
7532 p = "userland struct sctp_sndrcvinfo *";
7535 p = "userland int *";
7545 p = "int";
7548 p = "userland void *";
7551 p = "size_t";
7554 p = "off_t";
7564 p = "int";
7567 p = "userland const void *";
7570 p = "size_t";
7573 p = "off_t";
7583 p = "userland void *";
7586 p = "size_t";
7589 p = "int";
7592 p = "int";
7595 p = "int";
7598 p = "off_t";
7608 p = "int";
7611 p = "off_t";
7614 p = "int";
7624 p = "userland const char *";
7627 p = "off_t";
7637 p = "int";
7640 p = "off_t";
7650 p = "pid_t";
7653 p = "long";
7656 p = "int";
7666 p = "userland const char *";
7676 p = "userland cpusetid_t *";
7686 p = "cpuwhich_t";
7689 p = "id_t";
7692 p = "cpusetid_t";
7702 p = "cpulevel_t";
7705 p = "cpuwhich_t";
7708 p = "id_t";
7711 p = "userland cpusetid_t *";
7721 p = "cpulevel_t";
7724 p = "cpuwhich_t";
7727 p = "id_t";
7730 p = "size_t";
7733 p = "userland cpuset_t *";
7743 p = "cpulevel_t";
7746 p = "cpuwhich_t";
7749 p = "id_t";
7752 p = "size_t";
7755 p = "userland const cpuset_t *";
7765 p = "int";
7768 p = "userland const char *";
7771 p = "int";
7774 p = "int";
7784 p = "int";
7787 p = "userland const char *";
7790 p = "mode_t";
7793 p = "int";
7803 p = "int";
7806 p = "userland const char *";
7809 p = "uid_t";
7812 p = "gid_t";
7815 p = "int";
7825 p = "int";
7828 p = "userland char **";
7831 p = "userland char **";
7841 p = "int";
7844 p = "userland const char *";
7847 p = "userland const struct timeval *";
7857 p = "int";
7860 p = "userland const char *";
7863 p = "int";
7866 p = "userland const char *";
7869 p = "int";
7879 p = "int";
7882 p = "userland const char *";
7885 p = "mode_t";
7895 p = "int";
7898 p = "userland const char *";
7901 p = "mode_t";
7911 p = "int";
7914 p = "userland const char *";
7917 p = "int";
7920 p = "mode_t";
7930 p = "int";
7933 p = "userland const char *";
7936 p = "userland char *";
7939 p = "size_t";
7949 p = "int";
7952 p = "userland const char *";
7955 p = "int";
7958 p = "userland const char *";
7968 p = "userland const char *";
7971 p = "int";
7974 p = "userland const char *";
7984 p = "int";
7987 p = "userland const char *";
7990 p = "int";
8000 p = "int";
8010 p = "userland const char *";
8020 p = "userland struct iovec *";
8023 p = "unsigned int";
8026 p = "int";
8036 p = "userland struct iovec *";
8039 p = "unsigned int";
8042 p = "int";
8052 p = "int";
8062 p = "int";
8065 p = "int";
8068 p = "int";
8071 p = "userland union semun *";
8081 p = "int";
8084 p = "int";
8087 p = "userland struct msqid_ds *";
8097 p = "int";
8100 p = "int";
8103 p = "userland struct shmid_ds *";
8113 p = "userland const char *";
8116 p = "int";
8126 p = "int";
8129 p = "int";
8132 p = "userland cap_rights_t *";
8145 p = "userland u_int *";
8155 p = "userland int *";
8158 p = "int";
8168 p = "int";
8171 p = "int";
8181 p = "int";
8184 p = "userland pid_t *";
8194 p = "int";
8197 p = "userland fd_set *";
8200 p = "userland fd_set *";
8203 p = "userland fd_set *";
8206 p = "userland const struct timespec *";
8209 p = "userland const sigset_t *";
8219 p = "userland char *";
8222 p = "size_t";
8232 p = "userland const char *";
8242 p = "userland const void *";
8245 p = "size_t";
8248 p = "userland void *";
8251 p = "size_t";
8261 p = "userland const void *";
8264 p = "size_t";
8267 p = "userland void *";
8270 p = "size_t";
8280 p = "userland const void *";
8283 p = "size_t";
8286 p = "userland void *";
8289 p = "size_t";
8299 p = "userland const void *";
8302 p = "size_t";
8305 p = "userland void *";
8308 p = "size_t";
8318 p = "userland const void *";
8321 p = "size_t";
8324 p = "userland void *";
8327 p = "size_t";
8337 p = "int";
8340 p = "off_t";
8343 p = "off_t";
8353 p = "int";
8356 p = "off_t";
8359 p = "off_t";
8362 p = "int";
8372 p = "idtype_t";
8375 p = "id_t";
8378 p = "userland int *";
8381 p = "int";
8384 p = "userland struct __wrusage *";
8387 p = "userland struct __siginfo *";
8397 p = "int";
8400 p = "userland cap_rights_t *";
8410 p = "int";
8413 p = "userland const u_long *";
8416 p = "size_t";
8426 p = "int";
8429 p = "userland u_long *";
8432 p = "size_t";
8442 p = "int";
8445 p = "uint32_t";
8455 p = "int";
8458 p = "userland uint32_t *";
8468 p = "int";
8471 p = "int";
8474 p = "userland const struct sockaddr *";
8477 p = "__socklen_t";
8487 p = "int";
8490 p = "int";
8493 p = "userland const struct sockaddr *";
8496 p = "__socklen_t";
8506 p = "int";
8509 p = "userland const char *";
8512 p = "u_long";
8515 p = "int";
8525 p = "int";
8528 p = "userland struct sockaddr *";
8531 p = "userland __socklen_t *";
8534 p = "int";
8544 p = "userland int *";
8547 p = "int";
8557 p = "userland struct aiocb *";
8567 p = "idtype_t";
8570 p = "id_t";
8573 p = "int";
8576 p = "userland void *";
8586 p = "userland struct pollfd *";
8589 p = "u_int";
8592 p = "userland const struct timespec *";
8595 p = "userland const sigset_t *";
8605 p = "int";
8608 p = "userland const struct timespec *";
8618 p = "int";
8621 p = "userland const char *";
8624 p = "userland const struct timespec *";
8627 p = "int";
8637 p = "int";
8647 p = "int";
8650 p = "userland struct stat *";
8660 p = "int";
8663 p = "userland const char *";
8666 p = "userland struct stat *";
8669 p = "int";
8679 p = "userland const struct fhandle *";
8682 p = "userland struct stat *";
8692 p = "int";
8695 p = "userland char *";
8698 p = "size_t";
8701 p = "userland off_t *";
8711 p = "userland const char *";
8714 p = "userland struct statfs *";
8724 p = "int";
8727 p = "userland struct statfs *";
8737 p = "userland struct statfs *";
8740 p = "long";
8743 p = "int";
8753 p = "userland const struct fhandle *";
8756 p = "userland struct statfs *";
8766 p = "int";
8769 p = "userland const char *";
8772 p = "mode_t";
8775 p = "dev_t";
8785 p = "int";
8788 p = "userland const struct kevent *";
8791 p = "int";
8794 p = "userland struct kevent *";
8797 p = "int";
8800 p = "userland const struct timespec *";
8810 p = "cpulevel_t";
8813 p = "cpuwhich_t";
8816 p = "id_t";
8819 p = "size_t";
8822 p = "userland domainset_t *";
8825 p = "userland int *";
8835 p = "cpulevel_t";
8838 p = "cpuwhich_t";
8841 p = "id_t";
8844 p = "size_t";
8847 p = "userland domainset_t *";
8850 p = "int";
8860 p = "userland void *";
8863 p = "size_t";
8866 p = "unsigned int";
8876 p = "int";
8879 p = "userland char *";
8882 p = "userland struct fhandle *";
8885 p = "int";
8895 p = "userland struct fhandle *";
8898 p = "userland const char *";
8908 p = "userland struct fhandle *";
8911 p = "int";
8914 p = "userland const char *";
8924 p = "userland struct fhandle *";
8927 p = "userland char *";
8930 p = "size_t";
8940 p = "int";
8943 p = "userland const char *";
8946 p = "int";
8949 p = "int";
8959 p = "int";
8962 p = "userland off_t *";
8965 p = "int";
8968 p = "userland off_t *";
8971 p = "size_t";
8974 p = "unsigned int";
8984 p = "userland const char *";
8987 p = "size_t";
8990 p = "userland void *";
8993 p = "userland size_t *";
8996 p = "userland void *";
8999 p = "size_t";
9009 p = "userland const char *";
9012 p = "int";
9015 p = "mode_t";
9018 p = "int";
9021 p = "userland const char *";
9031 p = "userland const char *";
9034 p = "userland const char *";
9037 p = "int";
9047 p = "int";
9050 p = "userland void *";
9060 p = "int";
9063 p = "userland const char *";
9066 p = "userland char *";
9069 p = "size_t";
9072 p = "int";
9082 p = "u_int";
9085 p = "u_int";
9088 p = "int";
9098 p = "int";
9101 p = "userland const char *";
9111 p = "int";
9114 p = "userland const void *";
9117 p = "size_t";
9127 p = "userland struct aiocb *";
9137 p = "userland struct aiocb *";
9147 p = "int";
9150 p = "int";
9153 p = "userland const struct spacectl_range *";
9156 p = "int";
9159 p = "userland struct spacectl_range *";
9172 p = "userland const char *";
9175 p = "u_int";
9185 p = "u_int";
9195 p = "int";
9198 p = "unsigned";
9201 p = "int";
9211 p = "int";
9214 p = "int";
9224 p = "int";
9227 p = "userland struct itimerspec *";
9237 p = "int";
9240 p = "int";
9243 p = "userland const struct itimerspec *";
9246 p = "userland struct itimerspec *";
9256 p = "pid_t";
9259 p = "pid_t";
9262 p = "int";
9265 p = "uintptr_t";
9268 p = "uintptr_t";
9278 p = "u_int";
9281 p = "int";
9284 p = "userland rlim_t *";
9294 p = "int";
9304 p = "u_int";
9307 p = "userland const struct setcred *";
9310 p = "size_t";
9319 if (p != NULL)
9320 strlcpy(desc, p, descsz);
9325 const char *p = NULL;
9332 p = "void";
9339 p = "ssize_t";
9344 p = "ssize_t";
9349 p = "int";
9354 p = "int";
9359 p = "int";
9364 p = "int";
9369 p = "int";
9374 p = "int";
9379 p = "int";
9384 p = "int";
9389 p = "int";
9394 p = "void *";
9401 p = "int";
9406 p = "int";
9411 p = "int";
9420 p = "int";
9425 p = "ssize_t";
9430 p = "ssize_t";
9435 p = "ssize_t";
9440 p = "int";
9445 p = "int";
9450 p = "int";
9455 p = "int";
9460 p = "int";
9465 p = "int";
9472 p = "int";
9479 p = "int";
9486 p = "int";
9491 p = "int";
9498 p = "int";
9503 p = "int";
9508 p = "int";
9513 p = "int";
9518 p = "int";
9523 p = "int";
9528 p = "int";
9533 p = "int";
9538 p = "ssize_t";
9543 p = "int";
9548 p = "mode_t";
9553 p = "int";
9558 p = "int";
9565 p = "int";
9570 p = "int";
9575 p = "int";
9580 p = "int";
9585 p = "int";
9590 p = "int";
9597 p = "int";
9602 p = "int";
9607 p = "int";
9612 p = "int";
9619 p = "int";
9624 p = "int";
9629 p = "int";
9634 p = "int";
9639 p = "int";
9644 p = "int";
9649 p = "int";
9654 p = "int";
9659 p = "int";
9664 p = "int";
9669 p = "int";
9674 p = "int";
9679 p = "int";
9684 p = "int";
9689 p = "ssize_t";
9694 p = "ssize_t";
9699 p = "int";
9704 p = "int";
9709 p = "int";
9714 p = "int";
9719 p = "int";
9724 p = "int";
9729 p = "int";
9734 p = "int";
9739 p = "ssize_t";
9744 p = "int";
9749 p = "int";
9754 p = "int";
9759 p = "int";
9764 p = "int";
9769 p = "int";
9776 p = "int";
9781 p = "int";
9786 p = "int";
9791 p = "int";
9796 p = "int";
9801 p = "int";
9806 p = "int";
9811 p = "int";
9816 p = "int";
9821 p = "int";
9826 p = "int";
9831 p = "int";
9836 p = "int";
9841 p = "int";
9846 p = "int";
9851 p = "int";
9856 p = "int";
9861 p = "int";
9866 p = "int";
9873 p = "int";
9878 p = "int";
9883 p = "int";
9888 p = "int";
9893 p = "int";
9898 p = "int";
9903 p = "int";
9928 p = "int";
9933 p = "int";
9938 p = "int";
9943 p = "int";
9948 p = "ssize_t";
9953 p = "void *";
9958 p = "int";
9963 p = "int";
9968 p = "int";
9973 p = "int";
9978 p = "int";
9983 p = "int";
9988 p = "int";
9993 p = "int";
9998 p = "int";
10003 p = "int";
10008 p = "int";
10013 p = "int";
10018 p = "int";
10023 p = "int";
10028 p = "int";
10033 p = "int";
10038 p = "int";
10043 p = "int";
10048 p = "int";
10055 p = "int";
10060 p = "int";
10065 p = "int";
10070 p = "int";
10075 p = "int";
10080 p = "int";
10085 p = "ssize_t";
10090 p = "ssize_t";
10095 p = "int";
10100 p = "int";
10105 p = "int";
10110 p = "int";
10115 p = "int";
10120 p = "int";
10125 p = "int";
10130 p = "int";
10135 p = "int";
10140 p = "int";
10145 p = "int";
10150 p = "int";
10155 p = "int";
10160 p = "int";
10165 p = "ssize_t";
10170 p = "int";
10175 p = "int";
10180 p = "int";
10187 p = "int";
10194 p = "int";
10199 p = "int";
10204 p = "int";
10209 p = "int";
10214 p = "int";
10221 p = "int";
10226 p = "int";
10231 p = "int";
10236 p = "int";
10241 p = "int";
10246 p = "int";
10251 p = "int";
10256 p = "int";
10261 p = "int";
10266 p = "int";
10271 p = "int";
10276 p = "int";
10281 p = "int";
10286 p = "int";
10291 p = "int";
10296 p = "int";
10301 p = "int";
10306 p = "int";
10311 p = "int";
10316 p = "int";
10321 p = "int";
10326 p = "ssize_t";
10331 p = "ssize_t";
10336 p = "int";
10341 p = "ssize_t";
10346 p = "int";
10351 p = "int";
10358 p = "ssize_t";
10363 p = "ssize_t";
10368 p = "int";
10373 p = "int";
10378 p = "int";
10383 p = "int";
10388 p = "int";
10393 p = "int";
10398 p = "int";
10403 p = "int";
10408 p = "int";
10413 p = "int";
10418 p = "int";
10423 p = "int";
10428 p = "int";
10433 p = "int";
10438 p = "int";
10443 p = "int";
10448 p = "int";
10453 p = "int";
10458 p = "int";
10463 p = "int";
10468 p = "int";
10473 p = "int";
10478 p = "int";
10483 p = "int";
10488 p = "int";
10493 p = "int";
10498 p = "int";
10503 p = "int";
10508 p = "ssize_t";
10513 p = "ssize_t";
10518 p = "int";
10523 p = "int";
10528 p = "int";
10533 p = "int";
10538 p = "int";
10543 p = "int";
10548 p = "int";
10553 p = "int";
10558 p = "int";
10563 p = "int";
10568 p = "int";
10573 p = "int";
10578 p = "int";
10583 p = "void";
10588 p = "int";
10593 p = "int";
10598 p = "int";
10603 p = "ssize_t";
10608 p = "ssize_t";
10613 p = "ssize_t";
10618 p = "int";
10623 p = "int";
10628 p = "int";
10633 p = "int";
10638 p = "int";
10643 p = "int";
10648 p = "int";
10653 p = "int";
10658 p = "int";
10663 p = "int";
10668 p = "int";
10673 p = "int";
10678 p = "int";
10683 p = "int";
10688 p = "int";
10693 p = "int";
10698 p = "int";
10703 p = "int";
10708 p = "int";
10713 p = "int";
10718 p = "int";
10723 p = "int";
10728 p = "void";
10733 p = "int";
10738 p = "int";
10743 p = "int";
10748 p = "int";
10753 p = "int";
10758 p = "int";
10763 p = "int";
10768 p = "ssize_t";
10773 p = "ssize_t";
10778 p = "void *";
10783 p = "off_t";
10788 p = "int";
10793 p = "int";
10798 p = "int";
10803 p = "int";
10808 p = "int";
10813 p = "int";
10818 p = "int";
10823 p = "int";
10828 p = "int";
10833 p = "int";
10838 p = "int";
10843 p = "int";
10848 p = "int";
10853 p = "int";
10858 p = "int";
10863 p = "int";
10868 p = "int";
10873 p = "int";
10878 p = "ssize_t";
10883 p = "int";
10888 p = "int";
10893 p = "int";
10898 p = "int";
10903 p = "int";
10908 p = "int";
10913 p = "int";
10918 p = "int";
10923 p = "int";
10928 p = "int";
10933 p = "int";
10938 p = "int";
10943 p = "int";
10950 p = "int";
10955 p = "int";
10960 p = "int";
10965 p = "int";
10970 p = "int";
10975 p = "int";
10980 p = "int";
10985 p = "int";
10990 p = "int";
10995 p = "int";
11000 p = "int";
11005 p = "int";
11010 p = "int";
11015 p = "int";
11020 p = "int";
11025 p = "int";
11030 p = "int";
11035 p = "ssize_t";
11040 p = "int";
11045 p = "int";
11050 p = "int";
11055 p = "int";
11060 p = "int";
11065 p = "int";
11070 p = "int";
11075 p = "int";
11080 p = "int";
11085 p = "int";
11090 p = "int";
11095 p = "int";
11100 p = "int";
11105 p = "int";
11110 p = "int";
11115 p = "int";
11120 p = "ssize_t";
11125 p = "int";
11130 p = "int";
11135 p = "int";
11140 p = "int";
11145 p = "int";
11150 p = "int";
11155 p = "int";
11160 p = "int";
11165 p = "int";
11170 p = "int";
11175 p = "int";
11180 p = "int";
11185 p = "int";
11190 p = "int";
11195 p = "ssize_t";
11200 p = "int";
11205 p = "int";
11210 p = "int";
11215 p = "int";
11220 p = "int";
11225 p = "int";
11230 p = "int";
11235 p = "int";
11240 p = "int";
11245 p = "int";
11250 p = "int";
11257 p = "int";
11262 p = "int";
11267 p = "int";
11272 p = "int";
11277 p = "int";
11282 p = "int";
11287 p = "int";
11292 p = "int";
11297 p = "int";
11302 p = "int";
11307 if (p != NULL)
11308 strlcpy(desc, p, descsz);