Lines Matching defs:p

17 		struct linux_exit_args *p = params;
18 iarg[a++] = p->rval; /* int */
29 struct read_args *p = params;
30 iarg[a++] = p->fd; /* int */
31 uarg[a++] = (intptr_t)p->buf; /* char * */
32 uarg[a++] = p->nbyte; /* u_int */
38 struct linux_write_args *p = params;
39 iarg[a++] = p->fd; /* int */
40 uarg[a++] = (intptr_t)p->buf; /* char * */
41 iarg[a++] = p->nbyte; /* l_size_t */
47 struct linux_open_args *p = params;
48 uarg[a++] = (intptr_t)p->path; /* char * */
49 iarg[a++] = p->flags; /* l_int */
50 iarg[a++] = p->mode; /* l_int */
56 struct close_args *p = params;
57 iarg[a++] = p->fd; /* int */
63 struct linux_waitpid_args *p = params;
64 iarg[a++] = p->pid; /* l_pid_t */
65 uarg[a++] = (intptr_t)p->status; /* l_int * */
66 iarg[a++] = p->options; /* l_int */
72 struct linux_creat_args *p = params;
73 uarg[a++] = (intptr_t)p->path; /* char * */
74 iarg[a++] = p->mode; /* l_int */
80 struct linux_link_args *p = params;
81 uarg[a++] = (intptr_t)p->path; /* char * */
82 uarg[a++] = (intptr_t)p->to; /* char * */
88 struct linux_unlink_args *p = params;
89 uarg[a++] = (intptr_t)p->path; /* char * */
95 struct linux_execve_args *p = params;
96 uarg[a++] = (intptr_t)p->path; /* char * */
97 uarg[a++] = (intptr_t)p->argp; /* l_uintptr_t * */
98 uarg[a++] = (intptr_t)p->envp; /* l_uintptr_t * */
104 struct linux_chdir_args *p = params;
105 uarg[a++] = (intptr_t)p->path; /* char * */
111 struct linux_time_args *p = params;
112 uarg[a++] = (intptr_t)p->tm; /* l_time_t * */
118 struct linux_mknod_args *p = params;
119 uarg[a++] = (intptr_t)p->path; /* char * */
120 iarg[a++] = p->mode; /* l_int */
121 iarg[a++] = p->dev; /* l_dev_t */
127 struct linux_chmod_args *p = params;
128 uarg[a++] = (intptr_t)p->path; /* char * */
129 iarg[a++] = p->mode; /* l_mode_t */
135 struct linux_lchown16_args *p = params;
136 uarg[a++] = (intptr_t)p->path; /* char * */
137 iarg[a++] = p->uid; /* l_uid16_t */
138 iarg[a++] = p->gid; /* l_gid16_t */
144 struct linux_stat_args *p = params;
145 uarg[a++] = (intptr_t)p->path; /* char * */
146 uarg[a++] = (intptr_t)p->up; /* struct l_old_stat * */
152 struct linux_lseek_args *p = params;
153 iarg[a++] = p->fdes; /* l_uint */
154 iarg[a++] = p->off; /* l_off_t */
155 iarg[a++] = p->whence; /* l_int */
166 struct linux_mount_args *p = params;
167 uarg[a++] = (intptr_t)p->specialfile; /* char * */
168 uarg[a++] = (intptr_t)p->dir; /* char * */
169 uarg[a++] = (intptr_t)p->filesystemtype; /* char * */
170 iarg[a++] = p->rwflag; /* l_ulong */
171 uarg[a++] = (intptr_t)p->data; /* void * */
177 struct linux_oldumount_args *p = params;
178 uarg[a++] = (intptr_t)p->path; /* char * */
184 struct linux_setuid16_args *p = params;
185 iarg[a++] = p->uid; /* l_uid16_t */
201 struct linux_ptrace_args *p = params;
202 iarg[a++] = p->req; /* l_long */
203 iarg[a++] = p->pid; /* l_long */
204 iarg[a++] = p->addr; /* l_long */
205 iarg[a++] = p->data; /* l_long */
211 struct linux_alarm_args *p = params;
212 iarg[a++] = p->secs; /* l_uint */
223 struct linux_utime_args *p = params;
224 uarg[a++] = (intptr_t)p->fname; /* char * */
225 uarg[a++] = (intptr_t)p->times; /* struct l_utimbuf * */
231 struct linux_access_args *p = params;
232 uarg[a++] = (intptr_t)p->path; /* char * */
233 iarg[a++] = p->amode; /* l_int */
239 struct linux_nice_args *p = params;
240 iarg[a++] = p->inc; /* l_int */
251 struct linux_kill_args *p = params;
252 iarg[a++] = p->pid; /* l_int */
253 iarg[a++] = p->signum; /* l_int */
259 struct linux_rename_args *p = params;
260 uarg[a++] = (intptr_t)p->from; /* char * */
261 uarg[a++] = (intptr_t)p->to; /* char * */
267 struct linux_mkdir_args *p = params;
268 uarg[a++] = (intptr_t)p->path; /* char * */
269 iarg[a++] = p->mode; /* l_int */
275 struct linux_rmdir_args *p = params;
276 uarg[a++] = (intptr_t)p->path; /* char * */
282 struct dup_args *p = params;
283 uarg[a++] = p->fd; /* u_int */
289 struct linux_pipe_args *p = params;
290 uarg[a++] = (intptr_t)p->pipefds; /* l_int * */
296 struct linux_times_args *p = params;
297 uarg[a++] = (intptr_t)p->buf; /* struct l_times_argv * */
303 struct linux_brk_args *p = params;
304 iarg[a++] = p->dsend; /* l_ulong */
310 struct linux_setgid16_args *p = params;
311 iarg[a++] = p->gid; /* l_gid16_t */
322 struct linux_signal_args *p = params;
323 iarg[a++] = p->sig; /* l_int */
324 uarg[a++] = (intptr_t)p->handler; /* void * */
340 struct acct_args *p = params;
341 uarg[a++] = (intptr_t)p->path; /* char * */
347 struct linux_umount_args *p = params;
348 uarg[a++] = (intptr_t)p->path; /* char * */
349 iarg[a++] = p->flags; /* l_int */
355 struct linux_ioctl_args *p = params;
356 iarg[a++] = p->fd; /* l_uint */
357 iarg[a++] = p->cmd; /* l_uint */
358 iarg[a++] = p->arg; /* l_ulong */
364 struct linux_fcntl_args *p = params;
365 iarg[a++] = p->fd; /* l_uint */
366 iarg[a++] = p->cmd; /* l_uint */
367 iarg[a++] = p->arg; /* l_ulong */
373 struct setpgid_args *p = params;
374 iarg[a++] = p->pid; /* int */
375 iarg[a++] = p->pgid; /* int */
386 struct umask_args *p = params;
387 iarg[a++] = p->newmask; /* int */
393 struct chroot_args *p = params;
394 uarg[a++] = (intptr_t)p->path; /* char * */
400 struct linux_ustat_args *p = params;
401 iarg[a++] = p->dev; /* l_dev_t */
402 uarg[a++] = (intptr_t)p->ubuf; /* struct l_ustat * */
408 struct dup2_args *p = params;
409 uarg[a++] = p->from; /* u_int */
410 uarg[a++] = p->to; /* u_int */
431 struct linux_sigaction_args *p = params;
432 iarg[a++] = p->sig; /* l_int */
433 uarg[a++] = (intptr_t)p->nsa; /* l_osigaction_t * */
434 uarg[a++] = (intptr_t)p->osa; /* l_osigaction_t * */
445 struct linux_ssetmask_args *p = params;
446 iarg[a++] = p->mask; /* l_osigset_t */
452 struct linux_setreuid16_args *p = params;
453 iarg[a++] = p->ruid; /* l_uid16_t */
454 iarg[a++] = p->euid; /* l_uid16_t */
460 struct linux_setregid16_args *p = params;
461 iarg[a++] = p->rgid; /* l_gid16_t */
462 iarg[a++] = p->egid; /* l_gid16_t */
468 struct linux_sigsuspend_args *p = params;
469 iarg[a++] = p->hist0; /* l_int */
470 iarg[a++] = p->hist1; /* l_int */
471 iarg[a++] = p->mask; /* l_osigset_t */
477 struct linux_sigpending_args *p = params;
478 uarg[a++] = (intptr_t)p->mask; /* l_osigset_t * */
484 struct linux_sethostname_args *p = params;
485 uarg[a++] = (intptr_t)p->hostname; /* char * */
486 uarg[a++] = p->len; /* u_int */
492 struct linux_setrlimit_args *p = params;
493 iarg[a++] = p->resource; /* l_uint */
494 uarg[a++] = (intptr_t)p->rlim; /* struct l_rlimit * */
500 struct linux_old_getrlimit_args *p = params;
501 iarg[a++] = p->resource; /* l_uint */
502 uarg[a++] = (intptr_t)p->rlim; /* struct l_rlimit * */
508 struct getrusage_args *p = params;
509 iarg[a++] = p->who; /* int */
510 uarg[a++] = (intptr_t)p->rusage; /* struct rusage * */
516 struct gettimeofday_args *p = params;
517 uarg[a++] = (intptr_t)p->tp; /* struct timeval * */
518 uarg[a++] = (intptr_t)p->tzp; /* struct timezone * */
524 struct settimeofday_args *p = params;
525 uarg[a++] = (intptr_t)p->tv; /* struct timeval * */
526 uarg[a++] = (intptr_t)p->tzp; /* struct timezone * */
532 struct linux_getgroups16_args *p = params;
533 iarg[a++] = p->gidsetsize; /* l_uint */
534 uarg[a++] = (intptr_t)p->gidset; /* l_gid16_t * */
540 struct linux_setgroups16_args *p = params;
541 iarg[a++] = p->gidsetsize; /* l_uint */
542 uarg[a++] = (intptr_t)p->gidset; /* l_gid16_t * */
548 struct linux_old_select_args *p = params;
549 uarg[a++] = (intptr_t)p->ptr; /* struct l_old_select_argv * */
555 struct linux_symlink_args *p = params;
556 uarg[a++] = (intptr_t)p->path; /* char * */
557 uarg[a++] = (intptr_t)p->to; /* char * */
563 struct linux_lstat_args *p = params;
564 uarg[a++] = (intptr_t)p->path; /* char * */
565 uarg[a++] = (intptr_t)p->up; /* struct l_old_stat * */
571 struct linux_readlink_args *p = params;
572 uarg[a++] = (intptr_t)p->name; /* char * */
573 uarg[a++] = (intptr_t)p->buf; /* char * */
574 iarg[a++] = p->count; /* l_int */
580 struct linux_uselib_args *p = params;
581 uarg[a++] = (intptr_t)p->library; /* char * */
587 struct swapon_args *p = params;
588 uarg[a++] = (intptr_t)p->name; /* char * */
594 struct linux_reboot_args *p = params;
595 iarg[a++] = p->magic1; /* l_int */
596 iarg[a++] = p->magic2; /* l_int */
597 iarg[a++] = p->cmd; /* l_uint */
598 uarg[a++] = (intptr_t)p->arg; /* void * */
604 struct linux_readdir_args *p = params;
605 iarg[a++] = p->fd; /* l_uint */
606 uarg[a++] = (intptr_t)p->dent; /* struct l_dirent * */
607 iarg[a++] = p->count; /* l_uint */
613 struct linux_mmap_args *p = params;
614 uarg[a++] = (intptr_t)p->ptr; /* struct l_mmap_argv * */
620 struct munmap_args *p = params;
621 uarg[a++] = (intptr_t)p->addr; /* caddr_t */
622 iarg[a++] = p->len; /* int */
628 struct linux_truncate_args *p = params;
629 uarg[a++] = (intptr_t)p->path; /* char * */
630 iarg[a++] = p->length; /* l_ulong */
636 struct linux_ftruncate_args *p = params;
637 iarg[a++] = p->fd; /* int */
638 iarg[a++] = p->length; /* long */
644 struct fchmod_args *p = params;
645 iarg[a++] = p->fd; /* int */
646 iarg[a++] = p->mode; /* int */
652 struct fchown_args *p = params;
653 iarg[a++] = p->fd; /* int */
654 iarg[a++] = p->uid; /* int */
655 iarg[a++] = p->gid; /* int */
661 struct linux_getpriority_args *p = params;
662 iarg[a++] = p->which; /* int */
663 iarg[a++] = p->who; /* int */
669 struct setpriority_args *p = params;
670 iarg[a++] = p->which; /* int */
671 iarg[a++] = p->who; /* int */
672 iarg[a++] = p->prio; /* int */
678 struct linux_statfs_args *p = params;
679 uarg[a++] = (intptr_t)p->path; /* char * */
680 uarg[a++] = (intptr_t)p->buf; /* struct l_statfs_buf * */
686 struct linux_fstatfs_args *p = params;
687 iarg[a++] = p->fd; /* l_uint */
688 uarg[a++] = (intptr_t)p->buf; /* struct l_statfs_buf * */
694 struct linux_ioperm_args *p = params;
695 iarg[a++] = p->start; /* l_ulong */
696 iarg[a++] = p->length; /* l_ulong */
697 iarg[a++] = p->enable; /* l_int */
703 struct linux_socketcall_args *p = params;
704 iarg[a++] = p->what; /* l_int */
705 iarg[a++] = p->args; /* l_ulong */
711 struct linux_syslog_args *p = params;
712 iarg[a++] = p->type; /* l_int */
713 uarg[a++] = (intptr_t)p->buf; /* char * */
714 iarg[a++] = p->len; /* l_int */
720 struct linux_setitimer_args *p = params;
721 iarg[a++] = p->which; /* l_int */
722 uarg[a++] = (intptr_t)p->itv; /* struct l_itimerval * */
723 uarg[a++] = (intptr_t)p->oitv; /* struct l_itimerval * */
729 struct linux_getitimer_args *p = params;
730 iarg[a++] = p->which; /* l_int */
731 uarg[a++] = (intptr_t)p->itv; /* struct l_itimerval * */
737 struct linux_newstat_args *p = params;
738 uarg[a++] = (intptr_t)p->path; /* char * */
739 uarg[a++] = (intptr_t)p->buf; /* struct l_newstat * */
745 struct linux_newlstat_args *p = params;
746 uarg[a++] = (intptr_t)p->path; /* char * */
747 uarg[a++] = (intptr_t)p->buf; /* struct l_newstat * */
753 struct linux_newfstat_args *p = params;
754 iarg[a++] = p->fd; /* l_uint */
755 uarg[a++] = (intptr_t)p->buf; /* struct l_newstat * */
766 struct linux_iopl_args *p = params;
767 iarg[a++] = p->level; /* l_int */
783 struct linux_wait4_args *p = params;
784 iarg[a++] = p->pid; /* l_pid_t */
785 uarg[a++] = (intptr_t)p->status; /* l_int * */
786 iarg[a++] = p->options; /* l_int */
787 uarg[a++] = (intptr_t)p->rusage; /* void * */
798 struct linux_sysinfo_args *p = params;
799 uarg[a++] = (intptr_t)p->info; /* struct l_sysinfo * */
805 struct linux_ipc_args *p = params;
806 iarg[a++] = p->what; /* l_uint */
807 iarg[a++] = p->arg1; /* l_int */
808 iarg[a++] = p->arg2; /* l_int */
809 iarg[a++] = p->arg3; /* l_uint */
810 uarg[a++] = (intptr_t)p->ptr; /* l_uintptr_t */
811 iarg[a++] = p->arg5; /* l_uint */
817 struct fsync_args *p = params;
818 iarg[a++] = p->fd; /* int */
824 struct linux_sigreturn_args *p = params;
825 uarg[a++] = (intptr_t)p->sfp; /* struct l_sigframe * */
831 struct linux_clone_args *p = params;
832 iarg[a++] = p->flags; /* l_ulong */
833 iarg[a++] = p->stack; /* l_ulong */
834 uarg[a++] = (intptr_t)p->parent_tidptr; /* l_int * */
835 iarg[a++] = p->tls; /* l_ulong */
836 uarg[a++] = (intptr_t)p->child_tidptr; /* l_int * */
842 struct linux_setdomainname_args *p = params;
843 uarg[a++] = (intptr_t)p->name; /* char * */
844 iarg[a++] = p->len; /* int */
850 struct linux_newuname_args *p = params;
851 uarg[a++] = (intptr_t)p->buf; /* struct l_new_utsname * */
857 struct linux_modify_ldt_args *p = params;
858 iarg[a++] = p->func; /* l_int */
859 uarg[a++] = (intptr_t)p->ptr; /* void * */
860 iarg[a++] = p->bytecount; /* l_ulong */
871 struct linux_mprotect_args *p = params;
872 uarg[a++] = (intptr_t)p->addr; /* caddr_t */
873 iarg[a++] = p->len; /* int */
874 iarg[a++] = p->prot; /* int */
880 struct linux_sigprocmask_args *p = params;
881 iarg[a++] = p->how; /* l_int */
882 uarg[a++] = (intptr_t)p->mask; /* l_osigset_t * */
883 uarg[a++] = (intptr_t)p->omask; /* l_osigset_t * */
904 struct getpgid_args *p = params;
905 iarg[a++] = p->pid; /* int */
911 struct fchdir_args *p = params;
912 iarg[a++] = p->fd; /* int */
923 struct linux_sysfs_args *p = params;
924 iarg[a++] = p->option; /* l_int */
925 iarg[a++] = p->arg1; /* l_ulong */
926 iarg[a++] = p->arg2; /* l_ulong */
932 struct linux_personality_args *p = params;
933 iarg[a++] = p->per; /* l_uint */
939 struct linux_setfsuid16_args *p = params;
940 iarg[a++] = p->uid; /* l_uid16_t */
946 struct linux_setfsgid16_args *p = params;
947 iarg[a++] = p->gid; /* l_gid16_t */
953 struct linux_llseek_args *p = params;
954 iarg[a++] = p->fd; /* l_int */
955 iarg[a++] = p->ohigh; /* l_ulong */
956 iarg[a++] = p->olow; /* l_ulong */
957 uarg[a++] = (intptr_t)p->res; /* l_loff_t * */
958 iarg[a++] = p->whence; /* l_uint */
964 struct linux_getdents_args *p = params;
965 iarg[a++] = p->fd; /* l_uint */
966 uarg[a++] = (intptr_t)p->dent; /* void * */
967 iarg[a++] = p->count; /* l_uint */
973 struct linux_select_args *p = params;
974 iarg[a++] = p->nfds; /* l_int */
975 uarg[a++] = (intptr_t)p->readfds; /* l_fd_set * */
976 uarg[a++] = (intptr_t)p->writefds; /* l_fd_set * */
977 uarg[a++] = (intptr_t)p->exceptfds; /* l_fd_set * */
978 uarg[a++] = (intptr_t)p->timeout; /* struct l_timeval * */
984 struct flock_args *p = params;
985 iarg[a++] = p->fd; /* int */
986 iarg[a++] = p->how; /* int */
992 struct linux_msync_args *p = params;
993 iarg[a++] = p->addr; /* l_ulong */
994 iarg[a++] = p->len; /* l_size_t */
995 iarg[a++] = p->fl; /* l_int */
1001 struct readv_args *p = params;
1002 iarg[a++] = p->fd; /* int */
1003 uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */
1004 uarg[a++] = p->iovcnt; /* u_int */
1010 struct linux_writev_args *p = params;
1011 iarg[a++] = p->fd; /* int */
1012 uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */
1013 uarg[a++] = p->iovcnt; /* u_int */
1019 struct linux_getsid_args *p = params;
1020 iarg[a++] = p->pid; /* l_pid_t */
1026 struct linux_fdatasync_args *p = params;
1027 iarg[a++] = p->fd; /* l_uint */
1033 struct linux_sysctl_args *p = params;
1034 uarg[a++] = (intptr_t)p->args; /* struct l___sysctl_args * */
1040 struct mlock_args *p = params;
1041 uarg[a++] = (intptr_t)p->addr; /* const void * */
1042 uarg[a++] = p->len; /* size_t */
1048 struct munlock_args *p = params;
1049 uarg[a++] = (intptr_t)p->addr; /* const void * */
1050 uarg[a++] = p->len; /* size_t */
1056 struct mlockall_args *p = params;
1057 iarg[a++] = p->how; /* int */
1068 struct linux_sched_setparam_args *p = params;
1069 iarg[a++] = p->pid; /* l_pid_t */
1070 uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
1076 struct linux_sched_getparam_args *p = params;
1077 iarg[a++] = p->pid; /* l_pid_t */
1078 uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
1084 struct linux_sched_setscheduler_args *p = params;
1085 iarg[a++] = p->pid; /* l_pid_t */
1086 iarg[a++] = p->policy; /* l_int */
1087 uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
1093 struct linux_sched_getscheduler_args *p = params;
1094 iarg[a++] = p->pid; /* l_pid_t */
1105 struct linux_sched_get_priority_max_args *p = params;
1106 iarg[a++] = p->policy; /* l_int */
1112 struct linux_sched_get_priority_min_args *p = params;
1113 iarg[a++] = p->policy; /* l_int */
1119 struct linux_sched_rr_get_interval_args *p = params;
1120 iarg[a++] = p->pid; /* l_pid_t */
1121 uarg[a++] = (intptr_t)p->interval; /* struct l_timespec * */
1127 struct linux_nanosleep_args *p = params;
1128 uarg[a++] = (intptr_t)p->rqtp; /* const struct l_timespec * */
1129 uarg[a++] = (intptr_t)p->rmtp; /* struct l_timespec * */
1135 struct linux_mremap_args *p = params;
1136 iarg[a++] = p->addr; /* l_ulong */
1137 iarg[a++] = p->old_len; /* l_ulong */
1138 iarg[a++] = p->new_len; /* l_ulong */
1139 iarg[a++] = p->flags; /* l_ulong */
1140 iarg[a++] = p->new_addr; /* l_ulong */
1146 struct linux_setresuid16_args *p = params;
1147 iarg[a++] = p->ruid; /* l_uid16_t */
1148 iarg[a++] = p->euid; /* l_uid16_t */
1149 iarg[a++] = p->suid; /* l_uid16_t */
1155 struct linux_getresuid16_args *p = params;
1156 uarg[a++] = (intptr_t)p->ruid; /* l_uid16_t * */
1157 uarg[a++] = (intptr_t)p->euid; /* l_uid16_t * */
1158 uarg[a++] = (intptr_t)p->suid; /* l_uid16_t * */
1169 struct linux_poll_args *p = params;
1170 uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
1171 uarg[a++] = p->nfds; /* unsigned int */
1172 iarg[a++] = p->timeout; /* long */
1178 struct linux_setresgid16_args *p = params;
1179 iarg[a++] = p->rgid; /* l_gid16_t */
1180 iarg[a++] = p->egid; /* l_gid16_t */
1181 iarg[a++] = p->sgid; /* l_gid16_t */
1187 struct linux_getresgid16_args *p = params;
1188 uarg[a++] = (intptr_t)p->rgid; /* l_gid16_t * */
1189 uarg[a++] = (intptr_t)p->egid; /* l_gid16_t * */
1190 uarg[a++] = (intptr_t)p->sgid; /* l_gid16_t * */
1196 struct linux_prctl_args *p = params;
1197 iarg[a++] = p->option; /* l_int */
1198 uarg[a++] = (intptr_t)p->arg2; /* l_uintptr_t */
1199 uarg[a++] = (intptr_t)p->arg3; /* l_uintptr_t */
1200 uarg[a++] = (intptr_t)p->arg4; /* l_uintptr_t */
1201 uarg[a++] = (intptr_t)p->arg5; /* l_uintptr_t */
1207 struct linux_rt_sigreturn_args *p = params;
1208 uarg[a++] = (intptr_t)p->ucp; /* struct l_ucontext * */
1214 struct linux_rt_sigaction_args *p = params;
1215 iarg[a++] = p->sig; /* l_int */
1216 uarg[a++] = (intptr_t)p->act; /* l_sigaction_t * */
1217 uarg[a++] = (intptr_t)p->oact; /* l_sigaction_t * */
1218 iarg[a++] = p->sigsetsize; /* l_size_t */
1224 struct linux_rt_sigprocmask_args *p = params;
1225 iarg[a++] = p->how; /* l_int */
1226 uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
1227 uarg[a++] = (intptr_t)p->omask; /* l_sigset_t * */
1228 iarg[a++] = p->sigsetsize; /* l_size_t */
1234 struct linux_rt_sigpending_args *p = params;
1235 uarg[a++] = (intptr_t)p->set; /* l_sigset_t * */
1236 iarg[a++] = p->sigsetsize; /* l_size_t */
1242 struct linux_rt_sigtimedwait_args *p = params;
1243 uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
1244 uarg[a++] = (intptr_t)p->ptr; /* l_siginfo_t * */
1245 uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
1246 iarg[a++] = p->sigsetsize; /* l_size_t */
1252 struct linux_rt_sigqueueinfo_args *p = params;
1253 iarg[a++] = p->pid; /* l_pid_t */
1254 iarg[a++] = p->sig; /* l_int */
1255 uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
1261 struct linux_rt_sigsuspend_args *p = params;
1262 uarg[a++] = (intptr_t)p->newset; /* l_sigset_t * */
1263 iarg[a++] = p->sigsetsize; /* l_size_t */
1269 struct linux_pread_args *p = params;
1270 iarg[a++] = p->fd; /* l_uint */
1271 uarg[a++] = (intptr_t)p->buf; /* char * */
1272 iarg[a++] = p->nbyte; /* l_size_t */
1273 iarg[a++] = p->offset; /* l_loff_t */
1279 struct linux_pwrite_args *p = params;
1280 iarg[a++] = p->fd; /* l_uint */
1281 uarg[a++] = (intptr_t)p->buf; /* char * */
1282 iarg[a++] = p->nbyte; /* l_size_t */
1283 iarg[a++] = p->offset; /* l_loff_t */
1289 struct linux_chown16_args *p = params;
1290 uarg[a++] = (intptr_t)p->path; /* char * */
1291 iarg[a++] = p->uid; /* l_uid16_t */
1292 iarg[a++] = p->gid; /* l_gid16_t */
1298 struct linux_getcwd_args *p = params;
1299 uarg[a++] = (intptr_t)p->buf; /* char * */
1300 iarg[a++] = p->bufsize; /* l_ulong */
1306 struct linux_capget_args *p = params;
1307 uarg[a++] = (intptr_t)p->hdrp; /* struct l_user_cap_header * */
1308 uarg[a++] = (intptr_t)p->datap; /* struct l_user_cap_data * */
1314 struct linux_capset_args *p = params;
1315 uarg[a++] = (intptr_t)p->hdrp; /* struct l_user_cap_header * */
1316 uarg[a++] = (intptr_t)p->datap; /* struct l_user_cap_data * */
1322 struct linux_sigaltstack_args *p = params;
1323 uarg[a++] = (intptr_t)p->uss; /* l_stack_t * */
1324 uarg[a++] = (intptr_t)p->uoss; /* l_stack_t * */
1330 struct linux_sendfile_args *p = params;
1331 iarg[a++] = p->out; /* l_int */
1332 iarg[a++] = p->in; /* l_int */
1333 uarg[a++] = (intptr_t)p->offset; /* l_off_t * */
1334 iarg[a++] = p->count; /* l_size_t */
1345 struct linux_getrlimit_args *p = params;
1346 iarg[a++] = p->resource; /* l_uint */
1347 uarg[a++] = (intptr_t)p->rlim; /* struct l_rlimit * */
1353 struct linux_mmap2_args *p = params;
1354 iarg[a++] = p->addr; /* l_ulong */
1355 iarg[a++] = p->len; /* l_ulong */
1356 iarg[a++] = p->prot; /* l_ulong */
1357 iarg[a++] = p->flags; /* l_ulong */
1358 iarg[a++] = p->fd; /* l_ulong */
1359 iarg[a++] = p->pgoff; /* l_ulong */
1365 struct linux_truncate64_args *p = params;
1366 uarg[a++] = (intptr_t)p->path; /* char * */
1367 iarg[a++] = p->length; /* l_loff_t */
1373 struct linux_ftruncate64_args *p = params;
1374 iarg[a++] = p->fd; /* l_uint */
1375 iarg[a++] = p->length; /* l_loff_t */
1381 struct linux_stat64_args *p = params;
1382 uarg[a++] = (intptr_t)p->filename; /* const char * */
1383 uarg[a++] = (intptr_t)p->statbuf; /* struct l_stat64 * */
1389 struct linux_lstat64_args *p = params;
1390 uarg[a++] = (intptr_t)p->filename; /* const char * */
1391 uarg[a++] = (intptr_t)p->statbuf; /* struct l_stat64 * */
1397 struct linux_fstat64_args *p = params;
1398 iarg[a++] = p->fd; /* l_int */
1399 uarg[a++] = (intptr_t)p->statbuf; /* struct l_stat64 * */
1405 struct linux_lchown_args *p = params;
1406 uarg[a++] = (intptr_t)p->path; /* char * */
1407 iarg[a++] = p->uid; /* l_uid_t */
1408 iarg[a++] = p->gid; /* l_gid_t */
1434 struct setreuid_args *p = params;
1435 uarg[a++] = p->ruid; /* uid_t */
1436 uarg[a++] = p->euid; /* uid_t */
1442 struct setregid_args *p = params;
1443 iarg[a++] = p->rgid; /* gid_t */
1444 iarg[a++] = p->egid; /* gid_t */
1450 struct linux_getgroups_args *p = params;
1451 iarg[a++] = p->gidsetsize; /* l_int */
1452 uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */
1458 struct linux_setgroups_args *p = params;
1459 iarg[a++] = p->gidsetsize; /* l_int */
1460 uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */
1471 struct setresuid_args *p = params;
1472 uarg[a++] = p->ruid; /* uid_t */
1473 uarg[a++] = p->euid; /* uid_t */
1474 uarg[a++] = p->suid; /* uid_t */
1480 struct getresuid_args *p = params;
1481 uarg[a++] = (intptr_t)p->ruid; /* uid_t * */
1482 uarg[a++] = (intptr_t)p->euid; /* uid_t * */
1483 uarg[a++] = (intptr_t)p->suid; /* uid_t * */
1489 struct setresgid_args *p = params;
1490 iarg[a++] = p->rgid; /* gid_t */
1491 iarg[a++] = p->egid; /* gid_t */
1492 iarg[a++] = p->sgid; /* gid_t */
1498 struct getresgid_args *p = params;
1499 uarg[a++] = (intptr_t)p->rgid; /* gid_t * */
1500 uarg[a++] = (intptr_t)p->egid; /* gid_t * */
1501 uarg[a++] = (intptr_t)p->sgid; /* gid_t * */
1507 struct linux_chown_args *p = params;
1508 uarg[a++] = (intptr_t)p->path; /* char * */
1509 iarg[a++] = p->uid; /* l_uid_t */
1510 iarg[a++] = p->gid; /* l_gid_t */
1516 struct setuid_args *p = params;
1517 uarg[a++] = p->uid; /* uid_t */
1523 struct setgid_args *p = params;
1524 iarg[a++] = p->gid; /* gid_t */
1530 struct linux_setfsuid_args *p = params;
1531 iarg[a++] = p->uid; /* l_uid_t */
1537 struct linux_setfsgid_args *p = params;
1538 iarg[a++] = p->gid; /* l_gid_t */
1544 struct linux_pivot_root_args *p = params;
1545 uarg[a++] = (intptr_t)p->new_root; /* char * */
1546 uarg[a++] = (intptr_t)p->put_old; /* char * */
1552 struct linux_mincore_args *p = params;
1553 iarg[a++] = p->start; /* l_ulong */
1554 iarg[a++] = p->len; /* l_size_t */
1555 uarg[a++] = (intptr_t)p->vec; /* u_char * */
1561 struct linux_madvise_args *p = params;
1562 uarg[a++] = (intptr_t)p->addr; /* void * */
1563 uarg[a++] = p->len; /* size_t */
1564 iarg[a++] = p->behav; /* int */
1570 struct linux_getdents64_args *p = params;
1571 iarg[a++] = p->fd; /* l_uint */
1572 uarg[a++] = (intptr_t)p->dirent; /* void * */
1573 iarg[a++] = p->count; /* l_uint */
1579 struct linux_fcntl64_args *p = params;
1580 iarg[a++] = p->fd; /* l_uint */
1581 iarg[a++] = p->cmd; /* l_uint */
1582 iarg[a++] = p->arg; /* l_ulong */
1593 struct linux_setxattr_args *p = params;
1594 uarg[a++] = (intptr_t)p->path; /* const char * */
1595 uarg[a++] = (intptr_t)p->name; /* const char * */
1596 uarg[a++] = (intptr_t)p->value; /* void * */
1597 iarg[a++] = p->size; /* l_size_t */
1598 iarg[a++] = p->flags; /* l_int */
1604 struct linux_lsetxattr_args *p = params;
1605 uarg[a++] = (intptr_t)p->path; /* const char * */
1606 uarg[a++] = (intptr_t)p->name; /* const char * */
1607 uarg[a++] = (intptr_t)p->value; /* void * */
1608 iarg[a++] = p->size; /* l_size_t */
1609 iarg[a++] = p->flags; /* l_int */
1615 struct linux_fsetxattr_args *p = params;
1616 iarg[a++] = p->fd; /* l_int */
1617 uarg[a++] = (intptr_t)p->name; /* const char * */
1618 uarg[a++] = (intptr_t)p->value; /* void * */
1619 iarg[a++] = p->size; /* l_size_t */
1620 iarg[a++] = p->flags; /* l_int */
1626 struct linux_getxattr_args *p = params;
1627 uarg[a++] = (intptr_t)p->path; /* const char * */
1628 uarg[a++] = (intptr_t)p->name; /* const char * */
1629 uarg[a++] = (intptr_t)p->value; /* void * */
1630 iarg[a++] = p->size; /* l_size_t */
1636 struct linux_lgetxattr_args *p = params;
1637 uarg[a++] = (intptr_t)p->path; /* const char * */
1638 uarg[a++] = (intptr_t)p->name; /* const char * */
1639 uarg[a++] = (intptr_t)p->value; /* void * */
1640 iarg[a++] = p->size; /* l_size_t */
1646 struct linux_fgetxattr_args *p = params;
1647 iarg[a++] = p->fd; /* l_int */
1648 uarg[a++] = (intptr_t)p->name; /* const char * */
1649 uarg[a++] = (intptr_t)p->value; /* void * */
1650 iarg[a++] = p->size; /* l_size_t */
1656 struct linux_listxattr_args *p = params;
1657 uarg[a++] = (intptr_t)p->path; /* const char * */
1658 uarg[a++] = (intptr_t)p->list; /* char * */
1659 iarg[a++] = p->size; /* l_size_t */
1665 struct linux_llistxattr_args *p = params;
1666 uarg[a++] = (intptr_t)p->path; /* const char * */
1667 uarg[a++] = (intptr_t)p->list; /* char * */
1668 iarg[a++] = p->size; /* l_size_t */
1674 struct linux_flistxattr_args *p = params;
1675 iarg[a++] = p->fd; /* l_int */
1676 uarg[a++] = (intptr_t)p->list; /* char * */
1677 iarg[a++] = p->size; /* l_size_t */
1683 struct linux_removexattr_args *p = params;
1684 uarg[a++] = (intptr_t)p->path; /* const char * */
1685 uarg[a++] = (intptr_t)p->name; /* const char * */
1691 struct linux_lremovexattr_args *p = params;
1692 uarg[a++] = (intptr_t)p->path; /* const char * */
1693 uarg[a++] = (intptr_t)p->name; /* const char * */
1699 struct linux_fremovexattr_args *p = params;
1700 iarg[a++] = p->fd; /* l_int */
1701 uarg[a++] = (intptr_t)p->name; /* const char * */
1707 struct linux_tkill_args *p = params;
1708 iarg[a++] = p->tid; /* int */
1709 iarg[a++] = p->sig; /* int */
1715 struct linux_sendfile64_args *p = params;
1716 iarg[a++] = p->out; /* l_int */
1717 iarg[a++] = p->in; /* l_int */
1718 uarg[a++] = (intptr_t)p->offset; /* l_loff_t * */
1719 iarg[a++] = p->count; /* l_size_t */
1725 struct linux_sys_futex_args *p = params;
1726 uarg[a++] = (intptr_t)p->uaddr; /* uint32_t * */
1727 iarg[a++] = p->op; /* l_int */
1728 uarg[a++] = p->val; /* uint32_t */
1729 uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
1730 uarg[a++] = (intptr_t)p->uaddr2; /* uint32_t * */
1731 uarg[a++] = p->val3; /* uint32_t */
1737 struct linux_sched_setaffinity_args *p = params;
1738 iarg[a++] = p->pid; /* l_pid_t */
1739 iarg[a++] = p->len; /* l_uint */
1740 uarg[a++] = (intptr_t)p->user_mask_ptr; /* l_ulong * */
1746 struct linux_sched_getaffinity_args *p = params;
1747 iarg[a++] = p->pid; /* l_pid_t */
1748 iarg[a++] = p->len; /* l_uint */
1749 uarg[a++] = (intptr_t)p->user_mask_ptr; /* l_ulong * */
1755 struct linux_set_thread_area_args *p = params;
1756 uarg[a++] = (intptr_t)p->desc; /* struct l_user_desc * */
1762 struct linux_get_thread_area_args *p = params;
1763 uarg[a++] = (intptr_t)p->desc; /* struct l_user_desc * */
1769 struct linux_fadvise64_args *p = params;
1770 iarg[a++] = p->fd; /* int */
1771 iarg[a++] = p->offset; /* l_loff_t */
1772 iarg[a++] = p->len; /* l_size_t */
1773 iarg[a++] = p->advice; /* int */
1779 struct linux_exit_group_args *p = params;
1780 iarg[a++] = p->error_code; /* int */
1791 struct linux_epoll_create_args *p = params;
1792 iarg[a++] = p->size; /* l_int */
1798 struct linux_epoll_ctl_args *p = params;
1799 iarg[a++] = p->epfd; /* l_int */
1800 iarg[a++] = p->op; /* l_int */
1801 iarg[a++] = p->fd; /* l_int */
1802 uarg[a++] = (intptr_t)p->event; /* struct epoll_event * */
1808 struct linux_epoll_wait_args *p = params;
1809 iarg[a++] = p->epfd; /* l_int */
1810 uarg[a++] = (intptr_t)p->events; /* struct epoll_event * */
1811 iarg[a++] = p->maxevents; /* l_int */
1812 iarg[a++] = p->timeout; /* l_int */
1823 struct linux_set_tid_address_args *p = params;
1824 uarg[a++] = (intptr_t)p->tidptr; /* int * */
1830 struct linux_timer_create_args *p = params;
1831 iarg[a++] = p->clock_id; /* clockid_t */
1832 uarg[a++] = (intptr_t)p->evp; /* struct l_sigevent * */
1833 uarg[a++] = (intptr_t)p->timerid; /* l_timer_t * */
1839 struct linux_timer_settime_args *p = params;
1840 iarg[a++] = p->timerid; /* l_timer_t */
1841 iarg[a++] = p->flags; /* l_int */
1842 uarg[a++] = (intptr_t)p->new; /* const struct itimerspec * */
1843 uarg[a++] = (intptr_t)p->old; /* struct itimerspec * */
1849 struct linux_timer_gettime_args *p = params;
1850 iarg[a++] = p->timerid; /* l_timer_t */
1851 uarg[a++] = (intptr_t)p->setting; /* struct itimerspec * */
1857 struct linux_timer_getoverrun_args *p = params;
1858 iarg[a++] = p->timerid; /* l_timer_t */
1864 struct linux_timer_delete_args *p = params;
1865 iarg[a++] = p->timerid; /* l_timer_t */
1871 struct linux_clock_settime_args *p = params;
1872 iarg[a++] = p->which; /* clockid_t */
1873 uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
1879 struct linux_clock_gettime_args *p = params;
1880 iarg[a++] = p->which; /* clockid_t */
1881 uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
1887 struct linux_clock_getres_args *p = params;
1888 iarg[a++] = p->which; /* clockid_t */
1889 uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
1895 struct linux_clock_nanosleep_args *p = params;
1896 iarg[a++] = p->which; /* clockid_t */
1897 iarg[a++] = p->flags; /* int */
1898 uarg[a++] = (intptr_t)p->rqtp; /* struct l_timespec * */
1899 uarg[a++] = (intptr_t)p->rmtp; /* struct l_timespec * */
1905 struct linux_statfs64_args *p = params;
1906 uarg[a++] = (intptr_t)p->path; /* char * */
1907 uarg[a++] = p->bufsize; /* size_t */
1908 uarg[a++] = (intptr_t)p->buf; /* struct l_statfs64_buf * */
1914 struct linux_fstatfs64_args *p = params;
1915 iarg[a++] = p->fd; /* l_uint */
1916 uarg[a++] = p->bufsize; /* size_t */
1917 uarg[a++] = (intptr_t)p->buf; /* struct l_statfs64_buf * */
1923 struct linux_tgkill_args *p = params;
1924 iarg[a++] = p->tgid; /* int */
1925 iarg[a++] = p->pid; /* int */
1926 iarg[a++] = p->sig; /* int */
1932 struct linux_utimes_args *p = params;
1933 uarg[a++] = (intptr_t)p->fname; /* char * */
1934 uarg[a++] = (intptr_t)p->tptr; /* struct l_timeval * */
1940 struct linux_fadvise64_64_args *p = params;
1941 iarg[a++] = p->fd; /* int */
1942 iarg[a++] = p->offset; /* l_loff_t */
1943 iarg[a++] = p->len; /* l_loff_t */
1944 iarg[a++] = p->advice; /* int */
1965 struct linux_mq_open_args *p = params;
1966 uarg[a++] = (intptr_t)p->name; /* const char * */
1967 iarg[a++] = p->oflag; /* l_int */
1968 iarg[a++] = p->mode; /* l_mode_t */
1969 uarg[a++] = (intptr_t)p->attr; /* struct mq_attr * */
1975 struct linux_mq_unlink_args *p = params;
1976 uarg[a++] = (intptr_t)p->name; /* const char * */
1982 struct linux_mq_timedsend_args *p = params;
1983 iarg[a++] = p->mqd; /* l_mqd_t */
1984 uarg[a++] = (intptr_t)p->msg_ptr; /* const char * */
1985 iarg[a++] = p->msg_len; /* l_size_t */
1986 iarg[a++] = p->msg_prio; /* l_uint */
1987 uarg[a++] = (intptr_t)p->abs_timeout; /* const struct l_timespec * */
1993 struct linux_mq_timedreceive_args *p = params;
1994 iarg[a++] = p->mqd; /* l_mqd_t */
1995 uarg[a++] = (intptr_t)p->msg_ptr; /* char * */
1996 iarg[a++] = p->msg_len; /* l_size_t */
1997 uarg[a++] = (intptr_t)p->msg_prio; /* l_uint * */
1998 uarg[a++] = (intptr_t)p->abs_timeout; /* const struct l_timespec * */
2004 struct linux_mq_notify_args *p = params;
2005 iarg[a++] = p->mqd; /* l_mqd_t */
2006 uarg[a++] = (intptr_t)p->sevp; /* const struct l_sigevent * */
2012 struct linux_mq_getsetattr_args *p = params;
2013 iarg[a++] = p->mqd; /* l_mqd_t */
2014 uarg[a++] = (intptr_t)p->attr; /* const struct mq_attr * */
2015 uarg[a++] = (intptr_t)p->oattr; /* struct mq_attr * */
2026 struct linux_waitid_args *p = params;
2027 iarg[a++] = p->idtype; /* int */
2028 iarg[a++] = p->id; /* l_pid_t */
2029 uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
2030 iarg[a++] = p->options; /* int */
2031 uarg[a++] = (intptr_t)p->rusage; /* void * */
2052 struct linux_ioprio_set_args *p = params;
2053 iarg[a++] = p->which; /* l_int */
2054 iarg[a++] = p->who; /* l_int */
2055 iarg[a++] = p->ioprio; /* l_int */
2061 struct linux_ioprio_get_args *p = params;
2062 iarg[a++] = p->which; /* l_int */
2063 iarg[a++] = p->who; /* l_int */
2089 struct linux_openat_args *p = params;
2090 iarg[a++] = p->dfd; /* l_int */
2091 uarg[a++] = (intptr_t)p->filename; /* const char * */
2092 iarg[a++] = p->flags; /* l_int */
2093 iarg[a++] = p->mode; /* l_int */
2099 struct linux_mkdirat_args *p = params;
2100 iarg[a++] = p->dfd; /* l_int */
2101 uarg[a++] = (intptr_t)p->pathname; /* const char * */
2102 iarg[a++] = p->mode; /* l_int */
2108 struct linux_mknodat_args *p = params;
2109 iarg[a++] = p->dfd; /* l_int */
2110 uarg[a++] = (intptr_t)p->filename; /* const char * */
2111 iarg[a++] = p->mode; /* l_int */
2112 iarg[a++] = p->dev; /* l_dev_t */
2118 struct linux_fchownat_args *p = params;
2119 iarg[a++] = p->dfd; /* l_int */
2120 uarg[a++] = (intptr_t)p->filename; /* const char * */
2121 iarg[a++] = p->uid; /* l_uid16_t */
2122 iarg[a++] = p->gid; /* l_gid16_t */
2123 iarg[a++] = p->flag; /* l_int */
2129 struct linux_futimesat_args *p = params;
2130 iarg[a++] = p->dfd; /* l_int */
2131 uarg[a++] = (intptr_t)p->filename; /* char * */
2132 uarg[a++] = (intptr_t)p->utimes; /* struct l_timeval * */
2138 struct linux_fstatat64_args *p = params;
2139 iarg[a++] = p->dfd; /* l_int */
2140 uarg[a++] = (intptr_t)p->pathname; /* char * */
2141 uarg[a++] = (intptr_t)p->statbuf; /* struct l_stat64 * */
2142 iarg[a++] = p->flag; /* l_int */
2148 struct linux_unlinkat_args *p = params;
2149 iarg[a++] = p->dfd; /* l_int */
2150 uarg[a++] = (intptr_t)p->pathname; /* const char * */
2151 iarg[a++] = p->flag; /* l_int */
2157 struct linux_renameat_args *p = params;
2158 iarg[a++] = p->olddfd; /* l_int */
2159 uarg[a++] = (intptr_t)p->oldname; /* const char * */
2160 iarg[a++] = p->newdfd; /* l_int */
2161 uarg[a++] = (intptr_t)p->newname; /* const char * */
2167 struct linux_linkat_args *p = params;
2168 iarg[a++] = p->olddfd; /* l_int */
2169 uarg[a++] = (intptr_t)p->oldname; /* const char * */
2170 iarg[a++] = p->newdfd; /* l_int */
2171 uarg[a++] = (intptr_t)p->newname; /* const char * */
2172 iarg[a++] = p->flag; /* l_int */
2178 struct linux_symlinkat_args *p = params;
2179 uarg[a++] = (intptr_t)p->oldname; /* const char * */
2180 iarg[a++] = p->newdfd; /* l_int */
2181 uarg[a++] = (intptr_t)p->newname; /* const char * */
2187 struct linux_readlinkat_args *p = params;
2188 iarg[a++] = p->dfd; /* l_int */
2189 uarg[a++] = (intptr_t)p->path; /* const char * */
2190 uarg[a++] = (intptr_t)p->buf; /* char * */
2191 iarg[a++] = p->bufsiz; /* l_int */
2197 struct linux_fchmodat_args *p = params;
2198 iarg[a++] = p->dfd; /* l_int */
2199 uarg[a++] = (intptr_t)p->filename; /* const char * */
2200 iarg[a++] = p->mode; /* l_mode_t */
2206 struct linux_faccessat_args *p = params;
2207 iarg[a++] = p->dfd; /* l_int */
2208 uarg[a++] = (intptr_t)p->filename; /* const char * */
2209 iarg[a++] = p->amode; /* l_int */
2215 struct linux_pselect6_args *p = params;
2216 iarg[a++] = p->nfds; /* l_int */
2217 uarg[a++] = (intptr_t)p->readfds; /* l_fd_set * */
2218 uarg[a++] = (intptr_t)p->writefds; /* l_fd_set * */
2219 uarg[a++] = (intptr_t)p->exceptfds; /* l_fd_set * */
2220 uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec * */
2221 uarg[a++] = (intptr_t)p->sig; /* l_uintptr_t * */
2227 struct linux_ppoll_args *p = params;
2228 uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
2229 uarg[a++] = p->nfds; /* uint32_t */
2230 uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec * */
2231 uarg[a++] = (intptr_t)p->sset; /* l_sigset_t * */
2232 iarg[a++] = p->ssize; /* l_size_t */
2243 struct linux_set_robust_list_args *p = params;
2244 uarg[a++] = (intptr_t)p->head; /* struct linux_robust_list_head * */
2245 iarg[a++] = p->len; /* l_size_t */
2251 struct linux_get_robust_list_args *p = params;
2252 iarg[a++] = p->pid; /* l_int */
2253 uarg[a++] = (intptr_t)p->head; /* struct linux_robust_list_head ** */
2254 uarg[a++] = (intptr_t)p->len; /* l_size_t * */
2260 struct linux_splice_args *p = params;
2261 iarg[a++] = p->fd_in; /* int */
2262 uarg[a++] = (intptr_t)p->off_in; /* l_loff_t * */
2263 iarg[a++] = p->fd_out; /* int */
2264 uarg[a++] = (intptr_t)p->off_out; /* l_loff_t * */
2265 iarg[a++] = p->len; /* l_size_t */
2266 iarg[a++] = p->flags; /* l_uint */
2272 struct linux_sync_file_range_args *p = params;
2273 iarg[a++] = p->fd; /* l_int */
2274 iarg[a++] = p->offset; /* l_loff_t */
2275 iarg[a++] = p->nbytes; /* l_loff_t */
2276 uarg[a++] = p->flags; /* unsigned int */
2297 struct linux_getcpu_args *p = params;
2298 uarg[a++] = (intptr_t)p->cpu; /* l_uint * */
2299 uarg[a++] = (intptr_t)p->node; /* l_uint * */
2300 uarg[a++] = (intptr_t)p->cache; /* void * */
2306 struct linux_epoll_pwait_args *p = params;
2307 iarg[a++] = p->epfd; /* l_int */
2308 uarg[a++] = (intptr_t)p->events; /* struct epoll_event * */
2309 iarg[a++] = p->maxevents; /* l_int */
2310 iarg[a++] = p->timeout; /* l_int */
2311 uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
2312 iarg[a++] = p->sigsetsize; /* l_size_t */
2318 struct linux_utimensat_args *p = params;
2319 iarg[a++] = p->dfd; /* l_int */
2320 uarg[a++] = (intptr_t)p->pathname; /* const char * */
2321 uarg[a++] = (intptr_t)p->times; /* const struct l_timespec * */
2322 iarg[a++] = p->flags; /* l_int */
2333 struct linux_timerfd_create_args *p = params;
2334 iarg[a++] = p->clockid; /* l_int */
2335 iarg[a++] = p->flags; /* l_int */
2341 struct linux_eventfd_args *p = params;
2342 iarg[a++] = p->initval; /* l_uint */
2348 struct linux_fallocate_args *p = params;
2349 iarg[a++] = p->fd; /* l_int */
2350 iarg[a++] = p->mode; /* l_int */
2351 iarg[a++] = p->offset; /* l_loff_t */
2352 iarg[a++] = p->len; /* l_loff_t */
2358 struct linux_timerfd_settime_args *p = params;
2359 iarg[a++] = p->fd; /* l_int */
2360 iarg[a++] = p->flags; /* l_int */
2361 uarg[a++] = (intptr_t)p->new_value; /* const struct l_itimerspec * */
2362 uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec * */
2368 struct linux_timerfd_gettime_args *p = params;
2369 iarg[a++] = p->fd; /* l_int */
2370 uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec * */
2381 struct linux_eventfd2_args *p = params;
2382 iarg[a++] = p->initval; /* l_uint */
2383 iarg[a++] = p->flags; /* l_int */
2389 struct linux_epoll_create1_args *p = params;
2390 iarg[a++] = p->flags; /* l_int */
2396 struct linux_dup3_args *p = params;
2397 iarg[a++] = p->oldfd; /* l_int */
2398 iarg[a++] = p->newfd; /* l_int */
2399 iarg[a++] = p->flags; /* l_int */
2405 struct linux_pipe2_args *p = params;
2406 uarg[a++] = (intptr_t)p->pipefds; /* l_int * */
2407 iarg[a++] = p->flags; /* l_int */
2418 struct linux_preadv_args *p = params;
2419 iarg[a++] = p->fd; /* l_ulong */
2420 uarg[a++] = (intptr_t)p->vec; /* struct iovec * */
2421 iarg[a++] = p->vlen; /* l_ulong */
2422 iarg[a++] = p->pos_l; /* l_ulong */
2423 iarg[a++] = p->pos_h; /* l_ulong */
2429 struct linux_pwritev_args *p = params;
2430 iarg[a++] = p->fd; /* l_ulong */
2431 uarg[a++] = (intptr_t)p->vec; /* struct iovec * */
2432 iarg[a++] = p->vlen; /* l_ulong */
2433 iarg[a++] = p->pos_l; /* l_ulong */
2434 iarg[a++] = p->pos_h; /* l_ulong */
2440 struct linux_rt_tgsigqueueinfo_args *p = params;
2441 iarg[a++] = p->tgid; /* l_pid_t */
2442 iarg[a++] = p->tid; /* l_pid_t */
2443 iarg[a++] = p->sig; /* l_int */
2444 uarg[a++] = (intptr_t)p->uinfo; /* l_siginfo_t * */
2455 struct linux_recvmmsg_args *p = params;
2456 iarg[a++] = p->s; /* l_int */
2457 uarg[a++] = (intptr_t)p->msg; /* struct l_mmsghdr * */
2458 iarg[a++] = p->vlen; /* l_uint */
2459 iarg[a++] = p->flags; /* l_uint */
2460 uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
2476 struct linux_prlimit64_args *p = params;
2477 iarg[a++] = p->pid; /* l_pid_t */
2478 iarg[a++] = p->resource; /* l_uint */
2479 uarg[a++] = (intptr_t)p->new; /* struct rlimit * */
2480 uarg[a++] = (intptr_t)p->old; /* struct rlimit * */
2486 struct linux_name_to_handle_at_args *p = params;
2487 iarg[a++] = p->dirfd; /* l_int */
2488 uarg[a++] = (intptr_t)p->name; /* const char * */
2489 uarg[a++] = (intptr_t)p->handle; /* struct l_file_handle * */
2490 uarg[a++] = (intptr_t)p->mnt_id; /* l_int * */
2491 iarg[a++] = p->flags; /* l_int */
2497 struct linux_open_by_handle_at_args *p = params;
2498 iarg[a++] = p->mountdirfd; /* l_int */
2499 uarg[a++] = (intptr_t)p->handle; /* struct l_file_handle * */
2500 iarg[a++] = p->flags; /* l_int */
2511 struct linux_syncfs_args *p = params;
2512 iarg[a++] = p->fd; /* l_int */
2518 struct linux_sendmmsg_args *p = params;
2519 iarg[a++] = p->s; /* l_int */
2520 uarg[a++] = (intptr_t)p->msg; /* struct l_mmsghdr * */
2521 iarg[a++] = p->vlen; /* l_uint */
2522 iarg[a++] = p->flags; /* l_uint */
2533 struct linux_process_vm_readv_args *p = params;
2534 iarg[a++] = p->pid; /* l_pid_t */
2535 uarg[a++] = (intptr_t)p->lvec; /* const struct iovec * */
2536 iarg[a++] = p->liovcnt; /* l_ulong */
2537 uarg[a++] = (intptr_t)p->rvec; /* const struct iovec * */
2538 iarg[a++] = p->riovcnt; /* l_ulong */
2539 iarg[a++] = p->flags; /* l_ulong */
2545 struct linux_process_vm_writev_args *p = params;
2546 iarg[a++] = p->pid; /* l_pid_t */
2547 uarg[a++] = (intptr_t)p->lvec; /* const struct iovec * */
2548 iarg[a++] = p->liovcnt; /* l_ulong */
2549 uarg[a++] = (intptr_t)p->rvec; /* const struct iovec * */
2550 iarg[a++] = p->riovcnt; /* l_ulong */
2551 iarg[a++] = p->flags; /* l_ulong */
2557 struct linux_kcmp_args *p = params;
2558 iarg[a++] = p->pid1; /* l_pid_t */
2559 iarg[a++] = p->pid2; /* l_pid_t */
2560 iarg[a++] = p->type; /* l_int */
2561 iarg[a++] = p->idx1; /* l_ulong */
2562 iarg[a++] = p->idx; /* l_ulong */
2568 struct linux_finit_module_args *p = params;
2569 iarg[a++] = p->fd; /* l_int */
2570 uarg[a++] = (intptr_t)p->uargs; /* const char * */
2571 iarg[a++] = p->flags; /* l_int */
2577 struct linux_sched_setattr_args *p = params;
2578 iarg[a++] = p->pid; /* l_pid_t */
2579 uarg[a++] = (intptr_t)p->attr; /* void * */
2580 iarg[a++] = p->flags; /* l_uint */
2586 struct linux_sched_getattr_args *p = params;
2587 iarg[a++] = p->pid; /* l_pid_t */
2588 uarg[a++] = (intptr_t)p->attr; /* void * */
2589 iarg[a++] = p->size; /* l_uint */
2590 iarg[a++] = p->flags; /* l_uint */
2596 struct linux_renameat2_args *p = params;
2597 iarg[a++] = p->olddfd; /* l_int */
2598 uarg[a++] = (intptr_t)p->oldname; /* const char * */
2599 iarg[a++] = p->newdfd; /* l_int */
2600 uarg[a++] = (intptr_t)p->newname; /* const char * */
2601 uarg[a++] = p->flags; /* unsigned int */
2607 struct linux_seccomp_args *p = params;
2608 iarg[a++] = p->op; /* l_uint */
2609 iarg[a++] = p->flags; /* l_uint */
2610 uarg[a++] = (intptr_t)p->uargs; /* const char * */
2616 struct linux_getrandom_args *p = params;
2617 uarg[a++] = (intptr_t)p->buf; /* char * */
2618 iarg[a++] = p->count; /* l_size_t */
2619 iarg[a++] = p->flags; /* l_uint */
2625 struct linux_memfd_create_args *p = params;
2626 uarg[a++] = (intptr_t)p->uname_ptr; /* const char * */
2627 iarg[a++] = p->flags; /* l_uint */
2633 struct linux_bpf_args *p = params;
2634 iarg[a++] = p->cmd; /* l_int */
2635 uarg[a++] = (intptr_t)p->attr; /* void * */
2636 iarg[a++] = p->size; /* l_uint */
2642 struct linux_execveat_args *p = params;
2643 iarg[a++] = p->dfd; /* l_int */
2644 uarg[a++] = (intptr_t)p->filename; /* const char * */
2645 uarg[a++] = (intptr_t)p->argv; /* const char ** */
2646 uarg[a++] = (intptr_t)p->envp; /* const char ** */
2647 iarg[a++] = p->flags; /* l_int */
2653 struct linux_socket_args *p = params;
2654 iarg[a++] = p->domain; /* l_int */
2655 iarg[a++] = p->type; /* l_int */
2656 iarg[a++] = p->protocol; /* l_int */
2662 struct linux_socketpair_args *p = params;
2663 iarg[a++] = p->domain; /* l_int */
2664 iarg[a++] = p->type; /* l_int */
2665 iarg[a++] = p->protocol; /* l_int */
2666 uarg[a++] = (intptr_t)p->rsv; /* l_uintptr_t */
2672 struct linux_bind_args *p = params;
2673 iarg[a++] = p->s; /* l_int */
2674 uarg[a++] = (intptr_t)p->name; /* l_uintptr_t */
2675 iarg[a++] = p->namelen; /* l_int */
2681 struct linux_connect_args *p = params;
2682 iarg[a++] = p->s; /* l_int */
2683 uarg[a++] = (intptr_t)p->name; /* l_uintptr_t */
2684 iarg[a++] = p->namelen; /* l_int */
2690 struct linux_listen_args *p = params;
2691 iarg[a++] = p->s; /* l_int */
2692 iarg[a++] = p->backlog; /* l_int */
2698 struct linux_accept4_args *p = params;
2699 iarg[a++] = p->s; /* l_int */
2700 uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
2701 uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
2702 iarg[a++] = p->flags; /* l_int */
2708 struct linux_getsockopt_args *p = params;
2709 iarg[a++] = p->s; /* l_int */
2710 iarg[a++] = p->level; /* l_int */
2711 iarg[a++] = p->optname; /* l_int */
2712 uarg[a++] = (intptr_t)p->optval; /* l_uintptr_t */
2713 uarg[a++] = (intptr_t)p->optlen; /* l_uintptr_t */
2719 struct linux_setsockopt_args *p = params;
2720 iarg[a++] = p->s; /* l_int */
2721 iarg[a++] = p->level; /* l_int */
2722 iarg[a++] = p->optname; /* l_int */
2723 uarg[a++] = (intptr_t)p->optval; /* l_uintptr_t */
2724 iarg[a++] = p->optlen; /* l_int */
2730 struct linux_getsockname_args *p = params;
2731 iarg[a++] = p->s; /* l_int */
2732 uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
2733 uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
2739 struct linux_getpeername_args *p = params;
2740 iarg[a++] = p->s; /* l_int */
2741 uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
2742 uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
2748 struct linux_sendto_args *p = params;
2749 iarg[a++] = p->s; /* l_int */
2750 uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
2751 iarg[a++] = p->len; /* l_int */
2752 iarg[a++] = p->flags; /* l_int */
2753 uarg[a++] = (intptr_t)p->to; /* l_uintptr_t */
2754 iarg[a++] = p->tolen; /* l_int */
2760 struct linux_sendmsg_args *p = params;
2761 iarg[a++] = p->s; /* l_int */
2762 uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
2763 iarg[a++] = p->flags; /* l_int */
2769 struct linux_recvfrom_args *p = params;
2770 iarg[a++] = p->s; /* l_int */
2771 uarg[a++] = (intptr_t)p->buf; /* l_uintptr_t */
2772 iarg[a++] = p->len; /* l_size_t */
2773 iarg[a++] = p->flags; /* l_int */
2774 uarg[a++] = (intptr_t)p->from; /* l_uintptr_t */
2775 uarg[a++] = (intptr_t)p->fromlen; /* l_uintptr_t */
2781 struct linux_recvmsg_args *p = params;
2782 iarg[a++] = p->s; /* l_int */
2783 uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
2784 iarg[a++] = p->flags; /* l_int */
2790 struct linux_shutdown_args *p = params;
2791 iarg[a++] = p->s; /* l_int */
2792 iarg[a++] = p->how; /* l_int */
2798 struct linux_userfaultfd_args *p = params;
2799 iarg[a++] = p->flags; /* l_int */
2805 struct linux_membarrier_args *p = params;
2806 iarg[a++] = p->cmd; /* l_int */
2807 iarg[a++] = p->flags; /* l_int */
2813 struct linux_mlock2_args *p = params;
2814 iarg[a++] = p->start; /* l_ulong */
2815 iarg[a++] = p->len; /* l_size_t */
2816 iarg[a++] = p->flags; /* l_int */
2822 struct linux_copy_file_range_args *p = params;
2823 iarg[a++] = p->fd_in; /* l_int */
2824 uarg[a++] = (intptr_t)p->off_in; /* l_loff_t * */
2825 iarg[a++] = p->fd_out; /* l_int */
2826 uarg[a++] = (intptr_t)p->off_out; /* l_loff_t * */
2827 iarg[a++] = p->len; /* l_size_t */
2828 iarg[a++] = p->flags; /* l_uint */
2834 struct linux_preadv2_args *p = params;
2835 iarg[a++] = p->fd; /* l_ulong */
2836 uarg[a++] = (intptr_t)p->vec; /* const struct iovec * */
2837 iarg[a++] = p->vlen; /* l_ulong */
2838 iarg[a++] = p->pos_l; /* l_ulong */
2839 iarg[a++] = p->pos_h; /* l_ulong */
2840 iarg[a++] = p->flags; /* l_int */
2846 struct linux_pwritev2_args *p = params;
2847 iarg[a++] = p->fd; /* l_ulong */
2848 uarg[a++] = (intptr_t)p->vec; /* const struct iovec * */
2849 iarg[a++] = p->vlen; /* l_ulong */
2850 iarg[a++] = p->pos_l; /* l_ulong */
2851 iarg[a++] = p->pos_h; /* l_ulong */
2852 iarg[a++] = p->flags; /* l_int */
2858 struct linux_pkey_mprotect_args *p = params;
2859 iarg[a++] = p->start; /* l_ulong */
2860 iarg[a++] = p->len; /* l_size_t */
2861 iarg[a++] = p->prot; /* l_ulong */
2862 iarg[a++] = p->pkey; /* l_int */
2868 struct linux_pkey_alloc_args *p = params;
2869 iarg[a++] = p->flags; /* l_ulong */
2870 iarg[a++] = p->init_val; /* l_ulong */
2876 struct linux_pkey_free_args *p = params;
2877 iarg[a++] = p->pkey; /* l_int */
2883 struct linux_statx_args *p = params;
2884 iarg[a++] = p->dirfd; /* l_int */
2885 uarg[a++] = (intptr_t)p->pathname; /* const char * */
2886 iarg[a++] = p->flags; /* l_uint */
2887 iarg[a++] = p->mask; /* l_uint */
2888 uarg[a++] = (intptr_t)p->statxbuf; /* void * */
2894 struct linux_arch_prctl_args *p = params;
2895 iarg[a++] = p->option; /* l_int */
2896 iarg[a++] = p->arg2; /* l_ulong */
2907 struct linux_rseq_args *p = params;
2908 uarg[a++] = (intptr_t)p->rseq; /* struct linux_rseq * */
2909 uarg[a++] = p->rseq_len; /* uint32_t */
2910 iarg[a++] = p->flags; /* l_int */
2911 uarg[a++] = p->sig; /* uint32_t */
2917 struct linux_semget_args *p = params;
2918 iarg[a++] = p->key; /* l_key_t */
2919 iarg[a++] = p->nsems; /* l_int */
2920 iarg[a++] = p->semflg; /* l_int */
2926 struct linux_semctl_args *p = params;
2927 iarg[a++] = p->semid; /* l_int */
2928 iarg[a++] = p->semnum; /* l_int */
2929 iarg[a++] = p->cmd; /* l_int */
2930 uarg[a++] = p->arg.buf; /* union l_semun */
2936 struct linux_shmget_args *p = params;
2937 iarg[a++] = p->key; /* l_key_t */
2938 iarg[a++] = p->size; /* l_size_t */
2939 iarg[a++] = p->shmflg; /* l_int */
2945 struct linux_shmctl_args *p = params;
2946 iarg[a++] = p->shmid; /* l_int */
2947 iarg[a++] = p->cmd; /* l_int */
2948 uarg[a++] = (intptr_t)p->buf; /* struct l_shmid_ds * */
2954 struct linux_shmat_args *p = params;
2955 iarg[a++] = p->shmid; /* l_int */
2956 uarg[a++] = (intptr_t)p->shmaddr; /* char * */
2957 iarg[a++] = p->shmflg; /* l_int */
2963 struct linux_shmdt_args *p = params;
2964 uarg[a++] = (intptr_t)p->shmaddr; /* char * */
2970 struct linux_msgget_args *p = params;
2971 iarg[a++] = p->key; /* l_key_t */
2972 iarg[a++] = p->msgflg; /* l_int */
2978 struct linux_msgsnd_args *p = params;
2979 iarg[a++] = p->msqid; /* l_int */
2980 uarg[a++] = (intptr_t)p->msgp; /* struct l_msgbuf * */
2981 iarg[a++] = p->msgsz; /* l_size_t */
2982 iarg[a++] = p->msgflg; /* l_int */
2988 struct linux_msgrcv_args *p = params;
2989 iarg[a++] = p->msqid; /* l_int */
2990 uarg[a++] = (intptr_t)p->msgp; /* struct l_msgbuf * */
2991 iarg[a++] = p->msgsz; /* l_size_t */
2992 iarg[a++] = p->msgtyp; /* l_long */
2993 iarg[a++] = p->msgflg; /* l_int */
2999 struct linux_msgctl_args *p = params;
3000 iarg[a++] = p->msqid; /* l_int */
3001 iarg[a++] = p->cmd; /* l_int */
3002 uarg[a++] = (intptr_t)p->buf; /* struct l_msqid_ds * */
3008 struct linux_clock_gettime64_args *p = params;
3009 iarg[a++] = p->which; /* clockid_t */
3010 uarg[a++] = (intptr_t)p->tp; /* struct l_timespec64 * */
3016 struct linux_clock_settime64_args *p = params;
3017 iarg[a++] = p->which; /* clockid_t */
3018 uarg[a++] = (intptr_t)p->tp; /* struct l_timespec64 * */
3029 struct linux_clock_getres_time64_args *p = params;
3030 iarg[a++] = p->which; /* clockid_t */
3031 uarg[a++] = (intptr_t)p->tp; /* struct l_timespec64 * */
3037 struct linux_clock_nanosleep_time64_args *p = params;
3038 iarg[a++] = p->which; /* clockid_t */
3039 iarg[a++] = p->flags; /* l_int */
3040 uarg[a++] = (intptr_t)p->rqtp; /* struct l_timespec64 * */
3041 uarg[a++] = (intptr_t)p->rmtp; /* struct l_timespec64 * */
3047 struct linux_timer_gettime64_args *p = params;
3048 iarg[a++] = p->timerid; /* l_timer_t */
3049 uarg[a++] = (intptr_t)p->setting; /* struct l_itimerspec64 * */
3055 struct linux_timer_settime64_args *p = params;
3056 iarg[a++] = p->timerid; /* l_timer_t */
3057 iarg[a++] = p->flags; /* l_int */
3058 uarg[a++] = (intptr_t)p->new; /* const struct l_itimerspec64 * */
3059 uarg[a++] = (intptr_t)p->old; /* struct l_itimerspec64 * */
3065 struct linux_timerfd_gettime64_args *p = params;
3066 iarg[a++] = p->fd; /* l_int */
3067 uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec64 * */
3073 struct linux_timerfd_settime64_args *p = params;
3074 iarg[a++] = p->fd; /* l_int */
3075 iarg[a++] = p->flags; /* l_int */
3076 uarg[a++] = (intptr_t)p->new_value; /* const struct l_itimerspec64 * */
3077 uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec64 * */
3083 struct linux_utimensat_time64_args *p = params;
3084 iarg[a++] = p->dfd; /* l_int */
3085 uarg[a++] = (intptr_t)p->pathname; /* const char * */
3086 uarg[a++] = (intptr_t)p->times64; /* const struct l_timespec64 * */
3087 iarg[a++] = p->flags; /* l_int */
3093 struct linux_pselect6_time64_args *p = params;
3094 iarg[a++] = p->nfds; /* l_int */
3095 uarg[a++] = (intptr_t)p->readfds; /* l_fd_set * */
3096 uarg[a++] = (intptr_t)p->writefds; /* l_fd_set * */
3097 uarg[a++] = (intptr_t)p->exceptfds; /* l_fd_set * */
3098 uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec64 * */
3099 uarg[a++] = (intptr_t)p->sig; /* l_uintptr_t * */
3105 struct linux_ppoll_time64_args *p = params;
3106 uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
3107 uarg[a++] = p->nfds; /* uint32_t */
3108 uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec64 * */
3109 uarg[a++] = (intptr_t)p->sset; /* l_sigset_t * */
3110 iarg[a++] = p->ssize; /* l_size_t */
3121 struct linux_recvmmsg_time64_args *p = params;
3122 iarg[a++] = p->s; /* l_int */
3123 uarg[a++] = (intptr_t)p->msg; /* struct l_mmsghdr * */
3124 iarg[a++] = p->vlen; /* l_uint */
3125 iarg[a++] = p->flags; /* l_uint */
3126 uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec64 * */
3142 struct linux_semtimedop_time64_args *p = params;
3143 iarg[a++] = p->semid; /* l_int */
3144 uarg[a++] = (intptr_t)p->tsops; /* struct sembuf * */
3145 iarg[a++] = p->nsops; /* l_size_t */
3146 uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec64 * */
3152 struct linux_rt_sigtimedwait_time64_args *p = params;
3153 uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
3154 uarg[a++] = (intptr_t)p->ptr; /* l_siginfo_t * */
3155 uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec64 * */
3156 iarg[a++] = p->sigsetsize; /* l_size_t */
3162 struct linux_sys_futex_time64_args *p = params;
3163 uarg[a++] = (intptr_t)p->uaddr; /* uint32_t * */
3164 iarg[a++] = p->op; /* l_int */
3165 uarg[a++] = p->val; /* uint32_t */
3166 uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec64 * */
3167 uarg[a++] = (intptr_t)p->uaddr2; /* uint32_t * */
3168 uarg[a++] = p->val3; /* uint32_t */
3174 struct linux_sched_rr_get_interval_time64_args *p = params;
3175 iarg[a++] = p->pid; /* l_pid_t */
3176 uarg[a++] = (intptr_t)p->interval; /* struct l_timespec64 * */
3182 struct linux_pidfd_send_signal_args *p = params;
3183 iarg[a++] = p->pidfd; /* l_int */
3184 iarg[a++] = p->sig; /* l_int */
3185 uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
3186 iarg[a++] = p->flags; /* l_uint */
3242 struct linux_clone3_args *p = params;
3243 uarg[a++] = (intptr_t)p->uargs; /* struct l_user_clone_args * */
3244 iarg[a++] = p->usize; /* l_size_t */
3250 struct linux_close_range_args *p = params;
3251 iarg[a++] = p->first; /* l_uint */
3252 iarg[a++] = p->last; /* l_uint */
3253 iarg[a++] = p->flags; /* l_uint */
3269 struct linux_faccessat2_args *p = params;
3270 iarg[a++] = p->dfd; /* l_int */
3271 uarg[a++] = (intptr_t)p->filename; /* const char * */
3272 iarg[a++] = p->amode; /* l_int */
3273 iarg[a++] = p->flags; /* l_int */
3284 struct linux_epoll_pwait2_64_args *p = params;
3285 iarg[a++] = p->epfd; /* l_int */
3286 uarg[a++] = (intptr_t)p->events; /* struct epoll_event * */
3287 iarg[a++] = p->maxevents; /* l_int */
3288 uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec64 * */
3289 uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
3290 iarg[a++] = p->sigsetsize; /* l_size_t */
3357 const char *p = NULL;
3363 p = "int";
3376 p = "int";
3379 p = "userland char *";
3382 p = "u_int";
3392 p = "int";
3395 p = "userland char *";
3398 p = "l_size_t";
3408 p = "userland char *";
3411 p = "l_int";
3414 p = "l_int";
3424 p = "int";
3434 p = "l_pid_t";
3437 p = "userland l_int *";
3440 p = "l_int";
3450 p = "userland char *";
3453 p = "l_int";
3463 p = "userland char *";
3466 p = "userland char *";
3476 p = "userland char *";
3486 p = "userland char *";
3489 p = "userland l_uintptr_t *";
3492 p = "userland l_uintptr_t *";
3502 p = "userland char *";
3512 p = "userland l_time_t *";
3522 p = "userland char *";
3525 p = "l_int";
3528 p = "l_dev_t";
3538 p = "userland char *";
3541 p = "l_mode_t";
3551 p = "userland char *";
3554 p = "l_uid16_t";
3557 p = "l_gid16_t";
3567 p = "userland char *";
3570 p = "userland struct l_old_stat *";
3580 p = "l_uint";
3583 p = "l_off_t";
3586 p = "l_int";
3599 p = "userland char *";
3602 p = "userland char *";
3605 p = "userland char *";
3608 p = "l_ulong";
3611 p = "userland void *";
3621 p = "userland char *";
3631 p = "l_uid16_t";
3647 p = "l_long";
3650 p = "l_long";
3653 p = "l_long";
3656 p = "l_long";
3666 p = "l_uint";
3679 p = "userland char *";
3682 p = "userland struct l_utimbuf *";
3692 p = "userland char *";
3695 p = "l_int";
3705 p = "l_int";
3718 p = "l_int";
3721 p = "l_int";
3731 p = "userland char *";
3734 p = "userland char *";
3744 p = "userland char *";
3747 p = "l_int";
3757 p = "userland char *";
3767 p = "u_int";
3777 p = "userland l_int *";
3787 p = "userland struct l_times_argv *";
3797 p = "l_ulong";
3807 p = "l_gid16_t";
3820 p = "l_int";
3823 p = "userland void *";
3839 p = "userland char *";
3849 p = "userland char *";
3852 p = "l_int";
3862 p = "l_uint";
3865 p = "l_uint";
3868 p = "l_ulong";
3878 p = "l_uint";
3881 p = "l_uint";
3884 p = "l_ulong";
3894 p = "int";
3897 p = "int";
3910 p = "int";
3920 p = "userland char *";
3930 p = "l_dev_t";
3933 p = "userland struct l_ustat *";
3943 p = "u_int";
3946 p = "u_int";
3965 p = "l_int";
3968 p = "userland l_osigaction_t *";
3971 p = "userland l_osigaction_t *";
3984 p = "l_osigset_t";
3994 p = "l_uid16_t";
3997 p = "l_uid16_t";
4007 p = "l_gid16_t";
4010 p = "l_gid16_t";
4020 p = "l_int";
4023 p = "l_int";
4026 p = "l_osigset_t";
4036 p = "userland l_osigset_t *";
4046 p = "userland char *";
4049 p = "u_int";
4059 p = "l_uint";
4062 p = "userland struct l_rlimit *";
4072 p = "l_uint";
4075 p = "userland struct l_rlimit *";
4085 p = "int";
4088 p = "userland struct rusage *";
4098 p = "userland struct timeval *";
4101 p = "userland struct timezone *";
4111 p = "userland struct timeval *";
4114 p = "userland struct timezone *";
4124 p = "l_uint";
4127 p = "userland l_gid16_t *";
4137 p = "l_uint";
4140 p = "userland l_gid16_t *";
4150 p = "userland struct l_old_select_argv *";
4160 p = "userland char *";
4163 p = "userland char *";
4173 p = "userland char *";
4176 p = "userland struct l_old_stat *";
4186 p = "userland char *";
4189 p = "userland char *";
4192 p = "l_int";
4202 p = "userland char *";
4212 p = "userland char *";
4222 p = "l_int";
4225 p = "l_int";
4228 p = "l_uint";
4231 p = "userland void *";
4241 p = "l_uint";
4244 p = "userland struct l_dirent *";
4247 p = "l_uint";
4257 p = "userland struct l_mmap_argv *";
4267 p = "caddr_t";
4270 p = "int";
4280 p = "userland char *";
4283 p = "l_ulong";
4293 p = "int";
4296 p = "long";
4306 p = "int";
4309 p = "int";
4319 p = "int";
4322 p = "int";
4325 p = "int";
4335 p = "int";
4338 p = "int";
4348 p = "int";
4351 p = "int";
4354 p = "int";
4364 p = "userland char *";
4367 p = "userland struct l_statfs_buf *";
4377 p = "l_uint";
4380 p = "userland struct l_statfs_buf *";
4390 p = "l_ulong";
4393 p = "l_ulong";
4396 p = "l_int";
4406 p = "l_int";
4409 p = "l_ulong";
4419 p = "l_int";
4422 p = "userland char *";
4425 p = "l_int";
4435 p = "l_int";
4438 p = "userland struct l_itimerval *";
4441 p = "userland struct l_itimerval *";
4451 p = "l_int";
4454 p = "userland struct l_itimerval *";
4464 p = "userland char *";
4467 p = "userland struct l_newstat *";
4477 p = "userland char *";
4480 p = "userland struct l_newstat *";
4490 p = "l_uint";
4493 p = "userland struct l_newstat *";
4506 p = "l_int";
4522 p = "l_pid_t";
4525 p = "userland l_int *";
4528 p = "l_int";
4531 p = "userland void *";
4544 p = "userland struct l_sysinfo *";
4554 p = "l_uint";
4557 p = "l_int";
4560 p = "l_int";
4563 p = "l_uint";
4566 p = "l_uintptr_t";
4569 p = "l_uint";
4579 p = "int";
4589 p = "userland struct l_sigframe *";
4599 p = "l_ulong";
4602 p = "l_ulong";
4605 p = "userland l_int *";
4608 p = "l_ulong";
4611 p = "userland l_int *";
4621 p = "userland char *";
4624 p = "int";
4634 p = "userland struct l_new_utsname *";
4644 p = "l_int";
4647 p = "userland void *";
4650 p = "l_ulong";
4663 p = "caddr_t";
4666 p = "int";
4669 p = "int";
4679 p = "l_int";
4682 p = "userland l_osigset_t *";
4685 p = "userland l_osigset_t *";
4704 p = "int";
4714 p = "int";
4727 p = "l_int";
4730 p = "l_ulong";
4733 p = "l_ulong";
4743 p = "l_uint";
4753 p = "l_uid16_t";
4763 p = "l_gid16_t";
4773 p = "l_int";
4776 p = "l_ulong";
4779 p = "l_ulong";
4782 p = "userland l_loff_t *";
4785 p = "l_uint";
4795 p = "l_uint";
4798 p = "userland void *";
4801 p = "l_uint";
4811 p = "l_int";
4814 p = "userland l_fd_set *";
4817 p = "userland l_fd_set *";
4820 p = "userland l_fd_set *";
4823 p = "userland struct l_timeval *";
4833 p = "int";
4836 p = "int";
4846 p = "l_ulong";
4849 p = "l_size_t";
4852 p = "l_int";
4862 p = "int";
4865 p = "userland struct iovec *";
4868 p = "u_int";
4878 p = "int";
4881 p = "userland struct iovec *";
4884 p = "u_int";
4894 p = "l_pid_t";
4904 p = "l_uint";
4914 p = "userland struct l___sysctl_args *";
4924 p = "userland const void *";
4927 p = "size_t";
4937 p = "userland const void *";
4940 p = "size_t";
4950 p = "int";
4963 p = "l_pid_t";
4966 p = "userland struct sched_param *";
4976 p = "l_pid_t";
4979 p = "userland struct sched_param *";
4989 p = "l_pid_t";
4992 p = "l_int";
4995 p = "userland struct sched_param *";
5005 p = "l_pid_t";
5018 p = "l_int";
5028 p = "l_int";
5038 p = "l_pid_t";
5041 p = "userland struct l_timespec *";
5051 p = "userland const struct l_timespec *";
5054 p = "userland struct l_timespec *";
5064 p = "l_ulong";
5067 p = "l_ulong";
5070 p = "l_ulong";
5073 p = "l_ulong";
5076 p = "l_ulong";
5086 p = "l_uid16_t";
5089 p = "l_uid16_t";
5092 p = "l_uid16_t";
5102 p = "userland l_uid16_t *";
5105 p = "userland l_uid16_t *";
5108 p = "userland l_uid16_t *";
5121 p = "userland struct pollfd *";
5124 p = "unsigned int";
5127 p = "long";
5137 p = "l_gid16_t";
5140 p = "l_gid16_t";
5143 p = "l_gid16_t";
5153 p = "userland l_gid16_t *";
5156 p = "userland l_gid16_t *";
5159 p = "userland l_gid16_t *";
5169 p = "l_int";
5172 p = "l_uintptr_t";
5175 p = "l_uintptr_t";
5178 p = "l_uintptr_t";
5181 p = "l_uintptr_t";
5191 p = "userland struct l_ucontext *";
5201 p = "l_int";
5204 p = "userland l_sigaction_t *";
5207 p = "userland l_sigaction_t *";
5210 p = "l_size_t";
5220 p = "l_int";
5223 p = "userland l_sigset_t *";
5226 p = "userland l_sigset_t *";
5229 p = "l_size_t";
5239 p = "userland l_sigset_t *";
5242 p = "l_size_t";
5252 p = "userland l_sigset_t *";
5255 p = "userland l_siginfo_t *";
5258 p = "userland struct l_timespec *";
5261 p = "l_size_t";
5271 p = "l_pid_t";
5274 p = "l_int";
5277 p = "userland l_siginfo_t *";
5287 p = "userland l_sigset_t *";
5290 p = "l_size_t";
5300 p = "l_uint";
5303 p = "userland char *";
5306 p = "l_size_t";
5309 p = "l_loff_t";
5319 p = "l_uint";
5322 p = "userland char *";
5325 p = "l_size_t";
5328 p = "l_loff_t";
5338 p = "userland char *";
5341 p = "l_uid16_t";
5344 p = "l_gid16_t";
5354 p = "userland char *";
5357 p = "l_ulong";
5367 p = "userland struct l_user_cap_header *";
5370 p = "userland struct l_user_cap_data *";
5380 p = "userland struct l_user_cap_header *";
5383 p = "userland struct l_user_cap_data *";
5393 p = "userland l_stack_t *";
5396 p = "userland l_stack_t *";
5406 p = "l_int";
5409 p = "l_int";
5412 p = "userland l_off_t *";
5415 p = "l_size_t";
5428 p = "l_uint";
5431 p = "userland struct l_rlimit *";
5441 p = "l_ulong";
5444 p = "l_ulong";
5447 p = "l_ulong";
5450 p = "l_ulong";
5453 p = "l_ulong";
5456 p = "l_ulong";
5466 p = "userland char *";
5469 p = "l_loff_t";
5479 p = "l_uint";
5482 p = "l_loff_t";
5492 p = "userland const char *";
5495 p = "userland struct l_stat64 *";
5505 p = "userland const char *";
5508 p = "userland struct l_stat64 *";
5518 p = "l_int";
5521 p = "userland struct l_stat64 *";
5531 p = "userland char *";
5534 p = "l_uid_t";
5537 p = "l_gid_t";
5559 p = "uid_t";
5562 p = "uid_t";
5572 p = "gid_t";
5575 p = "gid_t";
5585 p = "l_int";
5588 p = "userland l_gid_t *";
5598 p = "l_int";
5601 p = "userland l_gid_t *";
5614 p = "uid_t";
5617 p = "uid_t";
5620 p = "uid_t";
5630 p = "userland uid_t *";
5633 p = "userland uid_t *";
5636 p = "userland uid_t *";
5646 p = "gid_t";
5649 p = "gid_t";
5652 p = "gid_t";
5662 p = "userland gid_t *";
5665 p = "userland gid_t *";
5668 p = "userland gid_t *";
5678 p = "userland char *";
5681 p = "l_uid_t";
5684 p = "l_gid_t";
5694 p = "uid_t";
5704 p = "gid_t";
5714 p = "l_uid_t";
5724 p = "l_gid_t";
5734 p = "userland char *";
5737 p = "userland char *";
5747 p = "l_ulong";
5750 p = "l_size_t";
5753 p = "userland u_char *";
5763 p = "userland void *";
5766 p = "size_t";
5769 p = "int";
5779 p = "l_uint";
5782 p = "userland void *";
5785 p = "l_uint";
5795 p = "l_uint";
5798 p = "l_uint";
5801 p = "l_ulong";
5814 p = "userland const char *";
5817 p = "userland const char *";
5820 p = "userland void *";
5823 p = "l_size_t";
5826 p = "l_int";
5836 p = "userland const char *";
5839 p = "userland const char *";
5842 p = "userland void *";
5845 p = "l_size_t";
5848 p = "l_int";
5858 p = "l_int";
5861 p = "userland const char *";
5864 p = "userland void *";
5867 p = "l_size_t";
5870 p = "l_int";
5880 p = "userland const char *";
5883 p = "userland const char *";
5886 p = "userland void *";
5889 p = "l_size_t";
5899 p = "userland const char *";
5902 p = "userland const char *";
5905 p = "userland void *";
5908 p = "l_size_t";
5918 p = "l_int";
5921 p = "userland const char *";
5924 p = "userland void *";
5927 p = "l_size_t";
5937 p = "userland const char *";
5940 p = "userland char *";
5943 p = "l_size_t";
5953 p = "userland const char *";
5956 p = "userland char *";
5959 p = "l_size_t";
5969 p = "l_int";
5972 p = "userland char *";
5975 p = "l_size_t";
5985 p = "userland const char *";
5988 p = "userland const char *";
5998 p = "userland const char *";
6001 p = "userland const char *";
6011 p = "l_int";
6014 p = "userland const char *";
6024 p = "int";
6027 p = "int";
6037 p = "l_int";
6040 p = "l_int";
6043 p = "userland l_loff_t *";
6046 p = "l_size_t";
6056 p = "userland uint32_t *";
6059 p = "l_int";
6062 p = "uint32_t";
6065 p = "userland struct l_timespec *";
6068 p = "userland uint32_t *";
6071 p = "uint32_t";
6081 p = "l_pid_t";
6084 p = "l_uint";
6087 p = "userland l_ulong *";
6097 p = "l_pid_t";
6100 p = "l_uint";
6103 p = "userland l_ulong *";
6113 p = "userland struct l_user_desc *";
6123 p = "userland struct l_user_desc *";
6133 p = "int";
6136 p = "l_loff_t";
6139 p = "l_size_t";
6142 p = "int";
6152 p = "int";
6165 p = "l_int";
6175 p = "l_int";
6178 p = "l_int";
6181 p = "l_int";
6184 p = "userland struct epoll_event *";
6194 p = "l_int";
6197 p = "userland struct epoll_event *";
6200 p = "l_int";
6203 p = "l_int";
6216 p = "userland int *";
6226 p = "clockid_t";
6229 p = "userland struct l_sigevent *";
6232 p = "userland l_timer_t *";
6242 p = "l_timer_t";
6245 p = "l_int";
6248 p = "userland const struct itimerspec *";
6251 p = "userland struct itimerspec *";
6261 p = "l_timer_t";
6264 p = "userland struct itimerspec *";
6274 p = "l_timer_t";
6284 p = "l_timer_t";
6294 p = "clockid_t";
6297 p = "userland struct l_timespec *";
6307 p = "clockid_t";
6310 p = "userland struct l_timespec *";
6320 p = "clockid_t";
6323 p = "userland struct l_timespec *";
6333 p = "clockid_t";
6336 p = "int";
6339 p = "userland struct l_timespec *";
6342 p = "userland struct l_timespec *";
6352 p = "userland char *";
6355 p = "size_t";
6358 p = "userland struct l_statfs64_buf *";
6368 p = "l_uint";
6371 p = "size_t";
6374 p = "userland struct l_statfs64_buf *";
6384 p = "int";
6387 p = "int";
6390 p = "int";
6400 p = "userland char *";
6403 p = "userland struct l_timeval *";
6413 p = "int";
6416 p = "l_loff_t";
6419 p = "l_loff_t";
6422 p = "int";
6441 p = "userland const char *";
6444 p = "l_int";
6447 p = "l_mode_t";
6450 p = "userland struct mq_attr *";
6460 p = "userland const char *";
6470 p = "l_mqd_t";
6473 p = "userland const char *";
6476 p = "l_size_t";
6479 p = "l_uint";
6482 p = "userland const struct l_timespec *";
6492 p = "l_mqd_t";
6495 p = "userland char *";
6498 p = "l_size_t";
6501 p = "userland l_uint *";
6504 p = "userland const struct l_timespec *";
6514 p = "l_mqd_t";
6517 p = "userland const struct l_sigevent *";
6527 p = "l_mqd_t";
6530 p = "userland const struct mq_attr *";
6533 p = "userland struct mq_attr *";
6546 p = "int";
6549 p = "l_pid_t";
6552 p = "userland l_siginfo_t *";
6555 p = "int";
6558 p = "userland void *";
6577 p = "l_int";
6580 p = "l_int";
6583 p = "l_int";
6593 p = "l_int";
6596 p = "l_int";
6618 p = "l_int";
6621 p = "userland const char *";
6624 p = "l_int";
6627 p = "l_int";
6637 p = "l_int";
6640 p = "userland const char *";
6643 p = "l_int";
6653 p = "l_int";
6656 p = "userland const char *";
6659 p = "l_int";
6662 p = "l_dev_t";
6672 p = "l_int";
6675 p = "userland const char *";
6678 p = "l_uid16_t";
6681 p = "l_gid16_t";
6684 p = "l_int";
6694 p = "l_int";
6697 p = "userland char *";
6700 p = "userland struct l_timeval *";
6710 p = "l_int";
6713 p = "userland char *";
6716 p = "userland struct l_stat64 *";
6719 p = "l_int";
6729 p = "l_int";
6732 p = "userland const char *";
6735 p = "l_int";
6745 p = "l_int";
6748 p = "userland const char *";
6751 p = "l_int";
6754 p = "userland const char *";
6764 p = "l_int";
6767 p = "userland const char *";
6770 p = "l_int";
6773 p = "userland const char *";
6776 p = "l_int";
6786 p = "userland const char *";
6789 p = "l_int";
6792 p = "userland const char *";
6802 p = "l_int";
6805 p = "userland const char *";
6808 p = "userland char *";
6811 p = "l_int";
6821 p = "l_int";
6824 p = "userland const char *";
6827 p = "l_mode_t";
6837 p = "l_int";
6840 p = "userland const char *";
6843 p = "l_int";
6853 p = "l_int";
6856 p = "userland l_fd_set *";
6859 p = "userland l_fd_set *";
6862 p = "userland l_fd_set *";
6865 p = "userland struct l_timespec *";
6868 p = "userland l_uintptr_t *";
6878 p = "userland struct pollfd *";
6881 p = "uint32_t";
6884 p = "userland struct l_timespec *";
6887 p = "userland l_sigset_t *";
6890 p = "l_size_t";
6903 p = "userland struct linux_robust_list_head *";
6906 p = "l_size_t";
6916 p = "l_int";
6919 p = "userland struct linux_robust_list_head **";
6922 p = "userland l_size_t *";
6932 p = "int";
6935 p = "userland l_loff_t *";
6938 p = "int";
6941 p = "userland l_loff_t *";
6944 p = "l_size_t";
6947 p = "l_uint";
6957 p = "l_int";
6960 p = "l_loff_t";
6963 p = "l_loff_t";
6966 p = "unsigned int";
6985 p = "userland l_uint *";
6988 p = "userland l_uint *";
6991 p = "userland void *";
7001 p = "l_int";
7004 p = "userland struct epoll_event *";
7007 p = "l_int";
7010 p = "l_int";
7013 p = "userland l_sigset_t *";
7016 p = "l_size_t";
7026 p = "l_int";
7029 p = "userland const char *";
7032 p = "userland const struct l_timespec *";
7035 p = "l_int";
7048 p = "l_int";
7051 p = "l_int";
7061 p = "l_uint";
7071 p = "l_int";
7074 p = "l_int";
7077 p = "l_loff_t";
7080 p = "l_loff_t";
7090 p = "l_int";
7093 p = "l_int";
7096 p = "userland const struct l_itimerspec *";
7099 p = "userland struct l_itimerspec *";
7109 p = "l_int";
7112 p = "userland struct l_itimerspec *";
7125 p = "l_uint";
7128 p = "l_int";
7138 p = "l_int";
7148 p = "l_int";
7151 p = "l_int";
7154 p = "l_int";
7164 p = "userland l_int *";
7167 p = "l_int";
7180 p = "l_ulong";
7183 p = "userland struct iovec *";
7186 p = "l_ulong";
7189 p = "l_ulong";
7192 p = "l_ulong";
7202 p = "l_ulong";
7205 p = "userland struct iovec *";
7208 p = "l_ulong";
7211 p = "l_ulong";
7214 p = "l_ulong";
7224 p = "l_pid_t";
7227 p = "l_pid_t";
7230 p = "l_int";
7233 p = "userland l_siginfo_t *";
7246 p = "l_int";
7249 p = "userland struct l_mmsghdr *";
7252 p = "l_uint";
7255 p = "l_uint";
7258 p = "userland struct l_timespec *";
7274 p = "l_pid_t";
7277 p = "l_uint";
7280 p = "userland struct rlimit *";
7283 p = "userland struct rlimit *";
7293 p = "l_int";
7296 p = "userland const char *";
7299 p = "userland struct l_file_handle *";
7302 p = "userland l_int *";
7305 p = "l_int";
7315 p = "l_int";
7318 p = "userland struct l_file_handle *";
7321 p = "l_int";
7334 p = "l_int";
7344 p = "l_int";
7347 p = "userland struct l_mmsghdr *";
7350 p = "l_uint";
7353 p = "l_uint";
7366 p = "l_pid_t";
7369 p = "userland const struct iovec *";
7372 p = "l_ulong";
7375 p = "userland const struct iovec *";
7378 p = "l_ulong";
7381 p = "l_ulong";
7391 p = "l_pid_t";
7394 p = "userland const struct iovec *";
7397 p = "l_ulong";
7400 p = "userland const struct iovec *";
7403 p = "l_ulong";
7406 p = "l_ulong";
7416 p = "l_pid_t";
7419 p = "l_pid_t";
7422 p = "l_int";
7425 p = "l_ulong";
7428 p = "l_ulong";
7438 p = "l_int";
7441 p = "userland const char *";
7444 p = "l_int";
7454 p = "l_pid_t";
7457 p = "userland void *";
7460 p = "l_uint";
7470 p = "l_pid_t";
7473 p = "userland void *";
7476 p = "l_uint";
7479 p = "l_uint";
7489 p = "l_int";
7492 p = "userland const char *";
7495 p = "l_int";
7498 p = "userland const char *";
7501 p = "unsigned int";
7511 p = "l_uint";
7514 p = "l_uint";
7517 p = "userland const char *";
7527 p = "userland char *";
7530 p = "l_size_t";
7533 p = "l_uint";
7543 p = "userland const char *";
7546 p = "l_uint";
7556 p = "l_int";
7559 p = "userland void *";
7562 p = "l_uint";
7572 p = "l_int";
7575 p = "userland const char *";
7578 p = "userland const char **";
7581 p = "userland const char **";
7584 p = "l_int";
7594 p = "l_int";
7597 p = "l_int";
7600 p = "l_int";
7610 p = "l_int";
7613 p = "l_int";
7616 p = "l_int";
7619 p = "l_uintptr_t";
7629 p = "l_int";
7632 p = "l_uintptr_t";
7635 p = "l_int";
7645 p = "l_int";
7648 p = "l_uintptr_t";
7651 p = "l_int";
7661 p = "l_int";
7664 p = "l_int";
7674 p = "l_int";
7677 p = "l_uintptr_t";
7680 p = "l_uintptr_t";
7683 p = "l_int";
7693 p = "l_int";
7696 p = "l_int";
7699 p = "l_int";
7702 p = "l_uintptr_t";
7705 p = "l_uintptr_t";
7715 p = "l_int";
7718 p = "l_int";
7721 p = "l_int";
7724 p = "l_uintptr_t";
7727 p = "l_int";
7737 p = "l_int";
7740 p = "l_uintptr_t";
7743 p = "l_uintptr_t";
7753 p = "l_int";
7756 p = "l_uintptr_t";
7759 p = "l_uintptr_t";
7769 p = "l_int";
7772 p = "l_uintptr_t";
7775 p = "l_int";
7778 p = "l_int";
7781 p = "l_uintptr_t";
7784 p = "l_int";
7794 p = "l_int";
7797 p = "l_uintptr_t";
7800 p = "l_int";
7810 p = "l_int";
7813 p = "l_uintptr_t";
7816 p = "l_size_t";
7819 p = "l_int";
7822 p = "l_uintptr_t";
7825 p = "l_uintptr_t";
7835 p = "l_int";
7838 p = "l_uintptr_t";
7841 p = "l_int";
7851 p = "l_int";
7854 p = "l_int";
7864 p = "l_int";
7874 p = "l_int";
7877 p = "l_int";
7887 p = "l_ulong";
7890 p = "l_size_t";
7893 p = "l_int";
7903 p = "l_int";
7906 p = "userland l_loff_t *";
7909 p = "l_int";
7912 p = "userland l_loff_t *";
7915 p = "l_size_t";
7918 p = "l_uint";
7928 p = "l_ulong";
7931 p = "userland const struct iovec *";
7934 p = "l_ulong";
7937 p = "l_ulong";
7940 p = "l_ulong";
7943 p = "l_int";
7953 p = "l_ulong";
7956 p = "userland const struct iovec *";
7959 p = "l_ulong";
7962 p = "l_ulong";
7965 p = "l_ulong";
7968 p = "l_int";
7978 p = "l_ulong";
7981 p = "l_size_t";
7984 p = "l_ulong";
7987 p = "l_int";
7997 p = "l_ulong";
8000 p = "l_ulong";
8010 p = "l_int";
8020 p = "l_int";
8023 p = "userland const char *";
8026 p = "l_uint";
8029 p = "l_uint";
8032 p = "userland void *";
8042 p = "l_int";
8045 p = "l_ulong";
8058 p = "userland struct linux_rseq *";
8061 p = "uint32_t";
8064 p = "l_int";
8067 p = "uint32_t";
8077 p = "l_key_t";
8080 p = "l_int";
8083 p = "l_int";
8093 p = "l_int";
8096 p = "l_int";
8099 p = "l_int";
8102 p = "union l_semun";
8112 p = "l_key_t";
8115 p = "l_size_t";
8118 p = "l_int";
8128 p = "l_int";
8131 p = "l_int";
8134 p = "userland struct l_shmid_ds *";
8144 p = "l_int";
8147 p = "userland char *";
8150 p = "l_int";
8160 p = "userland char *";
8170 p = "l_key_t";
8173 p = "l_int";
8183 p = "l_int";
8186 p = "userland struct l_msgbuf *";
8189 p = "l_size_t";
8192 p = "l_int";
8202 p = "l_int";
8205 p = "userland struct l_msgbuf *";
8208 p = "l_size_t";
8211 p = "l_long";
8214 p = "l_int";
8224 p = "l_int";
8227 p = "l_int";
8230 p = "userland struct l_msqid_ds *";
8240 p = "clockid_t";
8243 p = "userland struct l_timespec64 *";
8253 p = "clockid_t";
8256 p = "userland struct l_timespec64 *";
8269 p = "clockid_t";
8272 p = "userland struct l_timespec64 *";
8282 p = "clockid_t";
8285 p = "l_int";
8288 p = "userland struct l_timespec64 *";
8291 p = "userland struct l_timespec64 *";
8301 p = "l_timer_t";
8304 p = "userland struct l_itimerspec64 *";
8314 p = "l_timer_t";
8317 p = "l_int";
8320 p = "userland const struct l_itimerspec64 *";
8323 p = "userland struct l_itimerspec64 *";
8333 p = "l_int";
8336 p = "userland struct l_itimerspec64 *";
8346 p = "l_int";
8349 p = "l_int";
8352 p = "userland const struct l_itimerspec64 *";
8355 p = "userland struct l_itimerspec64 *";
8365 p = "l_int";
8368 p = "userland const char *";
8371 p = "userland const struct l_timespec64 *";
8374 p = "l_int";
8384 p = "l_int";
8387 p = "userland l_fd_set *";
8390 p = "userland l_fd_set *";
8393 p = "userland l_fd_set *";
8396 p = "userland struct l_timespec64 *";
8399 p = "userland l_uintptr_t *";
8409 p = "userland struct pollfd *";
8412 p = "uint32_t";
8415 p = "userland struct l_timespec64 *";
8418 p = "userland l_sigset_t *";
8421 p = "l_size_t";
8434 p = "l_int";
8437 p = "userland struct l_mmsghdr *";
8440 p = "l_uint";
8443 p = "l_uint";
8446 p = "userland struct l_timespec64 *";
8462 p = "l_int";
8465 p = "userland struct sembuf *";
8468 p = "l_size_t";
8471 p = "userland struct l_timespec64 *";
8481 p = "userland l_sigset_t *";
8484 p = "userland l_siginfo_t *";
8487 p = "userland struct l_timespec64 *";
8490 p = "l_size_t";
8500 p = "userland uint32_t *";
8503 p = "l_int";
8506 p = "uint32_t";
8509 p = "userland struct l_timespec64 *";
8512 p = "userland uint32_t *";
8515 p = "uint32_t";
8525 p = "l_pid_t";
8528 p = "userland struct l_timespec64 *";
8538 p = "l_int";
8541 p = "l_int";
8544 p = "userland l_siginfo_t *";
8547 p = "l_uint";
8587 p = "userland struct l_user_clone_args *";
8590 p = "l_size_t";
8600 p = "l_uint";
8603 p = "l_uint";
8606 p = "l_uint";
8622 p = "l_int";
8625 p = "userland const char *";
8628 p = "l_int";
8631 p = "l_int";
8644 p = "l_int";
8647 p = "userland struct epoll_event *";
8650 p = "l_int";
8653 p = "userland struct l_timespec64 *";
8656 p = "userland l_sigset_t *";
8659 p = "l_size_t";
8701 if (p != NULL)
8702 strlcpy(desc, p, descsz);
8707 const char *p = NULL;
8712 p = "void";
8719 p = "int";
8724 p = "int";
8729 p = "int";
8734 p = "int";
8739 p = "int";
8744 p = "int";
8749 p = "int";
8754 p = "int";
8759 p = "int";
8764 p = "int";
8769 p = "int";
8774 p = "int";
8779 p = "int";
8784 p = "int";
8789 p = "int";
8794 p = "int";
8801 p = "int";
8806 p = "int";
8811 p = "int";
8820 p = "int";
8825 p = "int";
8832 p = "int";
8837 p = "int";
8842 p = "int";
8849 p = "int";
8854 p = "int";
8859 p = "int";
8864 p = "int";
8869 p = "int";
8874 p = "int";
8879 p = "int";
8884 p = "int";
8889 p = "int";
8896 p = "int";
8905 p = "int";
8910 p = "int";
8915 p = "int";
8920 p = "int";
8925 p = "int";
8932 p = "int";
8937 p = "int";
8942 p = "int";
8947 p = "int";
8958 p = "int";
8965 p = "int";
8970 p = "int";
8975 p = "int";
8980 p = "int";
8985 p = "int";
8990 p = "int";
8995 p = "int";
9000 p = "int";
9005 p = "int";
9010 p = "int";
9015 p = "int";
9020 p = "int";
9025 p = "int";
9030 p = "int";
9035 p = "int";
9040 p = "int";
9045 p = "int";
9050 p = "int";
9055 p = "int";
9060 p = "int";
9065 p = "int";
9070 p = "int";
9075 p = "int";
9080 p = "int";
9085 p = "int";
9090 p = "int";
9095 p = "int";
9100 p = "int";
9105 p = "int";
9110 p = "int";
9115 p = "int";
9120 p = "int";
9125 p = "int";
9130 p = "int";
9135 p = "int";
9140 p = "int";
9145 p = "int";
9150 p = "int";
9155 p = "int";
9162 p = "int";
9171 p = "int";
9178 p = "int";
9183 p = "int";
9188 p = "int";
9193 p = "int";
9198 p = "int";
9203 p = "int";
9208 p = "int";
9213 p = "int";
9220 p = "int";
9225 p = "int";
9236 p = "int";
9241 p = "int";
9248 p = "int";
9253 p = "int";
9258 p = "int";
9263 p = "int";
9268 p = "int";
9273 p = "int";
9278 p = "int";
9283 p = "int";
9288 p = "int";
9293 p = "int";
9298 p = "int";
9303 p = "int";
9308 p = "int";
9313 p = "int";
9318 p = "int";
9323 p = "int";
9328 p = "int";
9335 p = "int";
9340 p = "int";
9345 p = "int";
9350 p = "int";
9357 p = "int";
9362 p = "int";
9367 p = "int";
9372 p = "int";
9377 p = "int";
9382 p = "int";
9387 p = "int";
9394 p = "int";
9399 p = "int";
9404 p = "int";
9409 p = "int";
9414 p = "int";
9419 p = "int";
9424 p = "int";
9429 p = "int";
9434 p = "int";
9439 p = "int";
9444 p = "int";
9449 p = "int";
9454 p = "int";
9459 p = "int";
9464 p = "int";
9469 p = "int";
9474 p = "int";
9479 p = "int";
9484 p = "int";
9491 p = "int";
9496 p = "int";
9501 p = "int";
9506 p = "int";
9511 p = "int";
9516 p = "int";
9521 p = "int";
9526 p = "int";
9539 p = "int";
9544 p = "int";
9549 p = "int";
9554 p = "int";
9561 p = "int";
9566 p = "int";
9571 p = "int";
9576 p = "int";
9581 p = "int";
9586 p = "int";
9591 p = "int";
9596 p = "int";
9601 p = "int";
9606 p = "int";
9611 p = "int";
9616 p = "int";
9621 p = "int";
9626 p = "int";
9633 p = "int";
9638 p = "int";
9643 p = "int";
9648 p = "int";
9653 p = "int";
9658 p = "int";
9663 p = "int";
9668 p = "int";
9673 p = "int";
9678 p = "int";
9683 p = "int";
9688 p = "int";
9693 p = "int";
9698 p = "int";
9703 p = "int";
9708 p = "int";
9713 p = "int";
9718 p = "int";
9723 p = "int";
9728 p = "int";
9733 p = "int";
9740 p = "int";
9745 p = "int";
9750 p = "int";
9757 p = "int";
9762 p = "int";
9767 p = "int";
9772 p = "int";
9777 p = "int";
9782 p = "int";
9787 p = "int";
9792 p = "int";
9797 p = "int";
9802 p = "int";
9807 p = "int";
9812 p = "int";
9817 p = "int";
9822 p = "int";
9827 p = "int";
9838 p = "int";
9843 p = "int";
9848 p = "int";
9853 p = "int";
9858 p = "int";
9863 p = "int";
9870 p = "int";
9881 p = "int";
9886 p = "int";
9899 p = "int";
9904 p = "int";
9909 p = "int";
9914 p = "int";
9919 p = "int";
9924 p = "int";
9929 p = "int";
9934 p = "int";
9939 p = "int";
9944 p = "int";
9949 p = "int";
9954 p = "int";
9959 p = "int";
9964 p = "int";
9969 p = "int";
9976 p = "int";
9981 p = "int";
9986 p = "int";
9991 p = "int";
10002 p = "int";
10007 p = "int";
10012 p = "int";
10019 p = "int";
10024 p = "int";
10029 p = "int";
10034 p = "int";
10039 p = "int";
10046 p = "int";
10051 p = "int";
10056 p = "int";
10061 p = "int";
10068 p = "int";
10073 p = "int";
10078 p = "int";
10085 p = "int";
10094 p = "int";
10099 p = "int";
10104 p = "int";
10111 p = "int";
10116 p = "int";
10123 p = "int";
10128 p = "int";
10133 p = "int";
10138 p = "int";
10143 p = "int";
10148 p = "int";
10153 p = "int";
10158 p = "int";
10163 p = "int";
10168 p = "int";
10173 p = "int";
10178 p = "int";
10183 p = "int";
10188 p = "int";
10193 p = "int";
10198 p = "int";
10203 p = "int";
10208 p = "int";
10213 p = "int";
10218 p = "int";
10223 p = "int";
10228 p = "int";
10233 p = "int";
10238 p = "int";
10243 p = "int";
10248 p = "int";
10253 p = "int";
10258 p = "int";
10263 p = "int";
10268 p = "int";
10273 p = "int";
10278 p = "int";
10283 p = "int";
10288 p = "int";
10293 p = "int";
10298 p = "int";
10303 p = "int";
10308 p = "int";
10315 p = "int";
10320 p = "int";
10325 p = "int";
10330 p = "int";
10335 p = "int";
10340 p = "int";
10345 p = "int";
10350 p = "int";
10355 p = "int";
10360 p = "int";
10365 p = "int";
10370 p = "int";
10375 p = "int";
10382 p = "int";
10387 p = "int";
10392 p = "int";
10397 p = "int";
10402 p = "int";
10407 p = "int";
10412 p = "int";
10417 p = "int";
10422 p = "int";
10429 p = "int";
10438 p = "int";
10443 p = "int";
10448 p = "int";
10453 p = "int";
10458 p = "int";
10483 p = "int";
10488 p = "int";
10497 p = "int";
10504 p = "int";
10531 if (p != NULL)
10532 strlcpy(desc, p, descsz);