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 iarg[a++] = p->handler; /* l_handler_t */
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 uarg[a++] = (intptr_t)p->arg; /* uintptr_t */
364 struct linux_fcntl_args *p = params;
365 iarg[a++] = p->fd; /* l_uint */
366 iarg[a++] = p->cmd; /* l_uint */
367 uarg[a++] = (intptr_t)p->arg; /* uintptr_t */
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 linux_getrusage_args *p = params;
509 iarg[a++] = p->who; /* int */
510 uarg[a++] = (intptr_t)p->rusage; /* struct l_rusage * */
516 struct linux_gettimeofday_args *p = params;
517 uarg[a++] = (intptr_t)p->tp; /* struct l_timeval * */
518 uarg[a++] = (intptr_t)p->tzp; /* struct timezone * */
524 struct linux_settimeofday_args *p = params;
525 uarg[a++] = (intptr_t)p->tp; /* struct l_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 swapon_args *p = params;
581 uarg[a++] = (intptr_t)p->name; /* char * */
587 struct linux_reboot_args *p = params;
588 iarg[a++] = p->magic1; /* l_int */
589 iarg[a++] = p->magic2; /* l_int */
590 iarg[a++] = p->cmd; /* l_uint */
591 uarg[a++] = (intptr_t)p->arg; /* void * */
597 struct linux_readdir_args *p = params;
598 iarg[a++] = p->fd; /* l_uint */
599 uarg[a++] = (intptr_t)p->dent; /* struct l_dirent * */
600 iarg[a++] = p->count; /* l_uint */
606 struct linux_mmap_args *p = params;
607 uarg[a++] = (intptr_t)p->ptr; /* struct l_mmap_argv * */
613 struct munmap_args *p = params;
614 uarg[a++] = (intptr_t)p->addr; /* caddr_t */
615 iarg[a++] = p->len; /* int */
621 struct linux_truncate_args *p = params;
622 uarg[a++] = (intptr_t)p->path; /* char * */
623 iarg[a++] = p->length; /* l_ulong */
629 struct linux_ftruncate_args *p = params;
630 iarg[a++] = p->fd; /* int */
631 iarg[a++] = p->length; /* long */
637 struct fchmod_args *p = params;
638 iarg[a++] = p->fd; /* int */
639 iarg[a++] = p->mode; /* int */
645 struct fchown_args *p = params;
646 iarg[a++] = p->fd; /* int */
647 iarg[a++] = p->uid; /* int */
648 iarg[a++] = p->gid; /* int */
654 struct linux_getpriority_args *p = params;
655 iarg[a++] = p->which; /* int */
656 iarg[a++] = p->who; /* int */
662 struct setpriority_args *p = params;
663 iarg[a++] = p->which; /* int */
664 iarg[a++] = p->who; /* int */
665 iarg[a++] = p->prio; /* int */
671 struct linux_statfs_args *p = params;
672 uarg[a++] = (intptr_t)p->path; /* char * */
673 uarg[a++] = (intptr_t)p->buf; /* struct l_statfs_buf * */
679 struct linux_fstatfs_args *p = params;
680 iarg[a++] = p->fd; /* l_uint */
681 uarg[a++] = (intptr_t)p->buf; /* struct l_statfs_buf * */
687 struct linux_socketcall_args *p = params;
688 iarg[a++] = p->what; /* l_int */
689 iarg[a++] = p->args; /* l_ulong */
695 struct linux_syslog_args *p = params;
696 iarg[a++] = p->type; /* l_int */
697 uarg[a++] = (intptr_t)p->buf; /* char * */
698 iarg[a++] = p->len; /* l_int */
704 struct linux_setitimer_args *p = params;
705 iarg[a++] = p->which; /* l_int */
706 uarg[a++] = (intptr_t)p->itv; /* struct l_itimerval * */
707 uarg[a++] = (intptr_t)p->oitv; /* struct l_itimerval * */
713 struct linux_getitimer_args *p = params;
714 iarg[a++] = p->which; /* l_int */
715 uarg[a++] = (intptr_t)p->itv; /* struct l_itimerval * */
721 struct linux_newstat_args *p = params;
722 uarg[a++] = (intptr_t)p->path; /* char * */
723 uarg[a++] = (intptr_t)p->buf; /* struct l_newstat * */
729 struct linux_newlstat_args *p = params;
730 uarg[a++] = (intptr_t)p->path; /* char * */
731 uarg[a++] = (intptr_t)p->buf; /* struct l_newstat * */
737 struct linux_newfstat_args *p = params;
738 iarg[a++] = p->fd; /* l_uint */
739 uarg[a++] = (intptr_t)p->buf; /* struct l_newstat * */
750 struct linux_iopl_args *p = params;
751 iarg[a++] = p->level; /* l_int */
762 struct linux_wait4_args *p = params;
763 iarg[a++] = p->pid; /* l_pid_t */
764 uarg[a++] = (intptr_t)p->status; /* l_int * */
765 iarg[a++] = p->options; /* l_int */
766 uarg[a++] = (intptr_t)p->rusage; /* struct l_rusage * */
777 struct linux_sysinfo_args *p = params;
778 uarg[a++] = (intptr_t)p->info; /* struct l_sysinfo * */
784 struct linux_ipc_args *p = params;
785 iarg[a++] = p->what; /* l_uint */
786 iarg[a++] = p->arg1; /* l_int */
787 iarg[a++] = p->arg2; /* l_int */
788 iarg[a++] = p->arg3; /* l_uint */
789 uarg[a++] = (intptr_t)p->ptr; /* l_uintptr_t */
790 iarg[a++] = p->arg5; /* l_uint */
796 struct fsync_args *p = params;
797 iarg[a++] = p->fd; /* int */
803 struct linux_sigreturn_args *p = params;
804 uarg[a++] = (intptr_t)p->sfp; /* struct l_sigframe * */
810 struct linux_clone_args *p = params;
811 iarg[a++] = p->flags; /* l_ulong */
812 iarg[a++] = p->stack; /* l_ulong */
813 uarg[a++] = (intptr_t)p->parent_tidptr; /* l_int * */
814 iarg[a++] = p->tls; /* l_ulong */
815 uarg[a++] = (intptr_t)p->child_tidptr; /* l_int * */
821 struct linux_setdomainname_args *p = params;
822 uarg[a++] = (intptr_t)p->name; /* char * */
823 iarg[a++] = p->len; /* int */
829 struct linux_newuname_args *p = params;
830 uarg[a++] = (intptr_t)p->buf; /* struct l_new_utsname * */
841 struct linux_mprotect_args *p = params;
842 uarg[a++] = (intptr_t)p->addr; /* caddr_t */
843 iarg[a++] = p->len; /* int */
844 iarg[a++] = p->prot; /* int */
850 struct linux_sigprocmask_args *p = params;
851 iarg[a++] = p->how; /* l_int */
852 uarg[a++] = (intptr_t)p->mask; /* l_osigset_t * */
853 uarg[a++] = (intptr_t)p->omask; /* l_osigset_t * */
874 struct getpgid_args *p = params;
875 iarg[a++] = p->pid; /* int */
881 struct fchdir_args *p = params;
882 iarg[a++] = p->fd; /* int */
893 struct linux_sysfs_args *p = params;
894 iarg[a++] = p->option; /* l_int */
895 iarg[a++] = p->arg1; /* l_ulong */
896 iarg[a++] = p->arg2; /* l_ulong */
902 struct linux_personality_args *p = params;
903 iarg[a++] = p->per; /* l_uint */
909 struct linux_setfsuid16_args *p = params;
910 iarg[a++] = p->uid; /* l_uid16_t */
916 struct linux_setfsgid16_args *p = params;
917 iarg[a++] = p->gid; /* l_gid16_t */
923 struct linux_llseek_args *p = params;
924 iarg[a++] = p->fd; /* l_int */
925 iarg[a++] = p->ohigh; /* l_ulong */
926 iarg[a++] = p->olow; /* l_ulong */
927 uarg[a++] = (intptr_t)p->res; /* l_loff_t * */
928 iarg[a++] = p->whence; /* l_uint */
934 struct linux_getdents_args *p = params;
935 iarg[a++] = p->fd; /* l_uint */
936 uarg[a++] = (intptr_t)p->dent; /* void * */
937 iarg[a++] = p->count; /* l_uint */
943 struct linux_select_args *p = params;
944 iarg[a++] = p->nfds; /* l_int */
945 uarg[a++] = (intptr_t)p->readfds; /* l_fd_set * */
946 uarg[a++] = (intptr_t)p->writefds; /* l_fd_set * */
947 uarg[a++] = (intptr_t)p->exceptfds; /* l_fd_set * */
948 uarg[a++] = (intptr_t)p->timeout; /* struct l_timeval * */
954 struct flock_args *p = params;
955 iarg[a++] = p->fd; /* int */
956 iarg[a++] = p->how; /* int */
962 struct linux_msync_args *p = params;
963 iarg[a++] = p->addr; /* l_ulong */
964 iarg[a++] = p->len; /* l_size_t */
965 iarg[a++] = p->fl; /* l_int */
971 struct linux_readv_args *p = params;
972 iarg[a++] = p->fd; /* l_ulong */
973 uarg[a++] = (intptr_t)p->iovp; /* struct iovec32 * */
974 iarg[a++] = p->iovcnt; /* l_ulong */
980 struct linux_writev_args *p = params;
981 iarg[a++] = p->fd; /* l_ulong */
982 uarg[a++] = (intptr_t)p->iovp; /* struct iovec32 * */
983 iarg[a++] = p->iovcnt; /* l_ulong */
989 struct linux_getsid_args *p = params;
990 iarg[a++] = p->pid; /* l_pid_t */
996 struct linux_fdatasync_args *p = params;
997 iarg[a++] = p->fd; /* l_uint */
1003 struct linux_sysctl_args *p = params;
1004 uarg[a++] = (intptr_t)p->args; /* struct l___sysctl_args * */
1010 struct mlock_args *p = params;
1011 uarg[a++] = (intptr_t)p->addr; /* const void * */
1012 uarg[a++] = p->len; /* size_t */
1018 struct munlock_args *p = params;
1019 uarg[a++] = (intptr_t)p->addr; /* const void * */
1020 uarg[a++] = p->len; /* size_t */
1026 struct mlockall_args *p = params;
1027 iarg[a++] = p->how; /* int */
1038 struct linux_sched_setparam_args *p = params;
1039 iarg[a++] = p->pid; /* l_pid_t */
1040 uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
1046 struct linux_sched_getparam_args *p = params;
1047 iarg[a++] = p->pid; /* l_pid_t */
1048 uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
1054 struct linux_sched_setscheduler_args *p = params;
1055 iarg[a++] = p->pid; /* l_pid_t */
1056 iarg[a++] = p->policy; /* l_int */
1057 uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
1063 struct linux_sched_getscheduler_args *p = params;
1064 iarg[a++] = p->pid; /* l_pid_t */
1075 struct linux_sched_get_priority_max_args *p = params;
1076 iarg[a++] = p->policy; /* l_int */
1082 struct linux_sched_get_priority_min_args *p = params;
1083 iarg[a++] = p->policy; /* l_int */
1089 struct linux_sched_rr_get_interval_args *p = params;
1090 iarg[a++] = p->pid; /* l_pid_t */
1091 uarg[a++] = (intptr_t)p->interval; /* struct l_timespec * */
1097 struct linux_nanosleep_args *p = params;
1098 uarg[a++] = (intptr_t)p->rqtp; /* const struct l_timespec * */
1099 uarg[a++] = (intptr_t)p->rmtp; /* struct l_timespec * */
1105 struct linux_mremap_args *p = params;
1106 iarg[a++] = p->addr; /* l_ulong */
1107 iarg[a++] = p->old_len; /* l_ulong */
1108 iarg[a++] = p->new_len; /* l_ulong */
1109 iarg[a++] = p->flags; /* l_ulong */
1110 iarg[a++] = p->new_addr; /* l_ulong */
1116 struct linux_setresuid16_args *p = params;
1117 iarg[a++] = p->ruid; /* l_uid16_t */
1118 iarg[a++] = p->euid; /* l_uid16_t */
1119 iarg[a++] = p->suid; /* l_uid16_t */
1125 struct linux_getresuid16_args *p = params;
1126 uarg[a++] = (intptr_t)p->ruid; /* l_uid16_t * */
1127 uarg[a++] = (intptr_t)p->euid; /* l_uid16_t * */
1128 uarg[a++] = (intptr_t)p->suid; /* l_uid16_t * */
1134 struct linux_poll_args *p = params;
1135 uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
1136 uarg[a++] = p->nfds; /* unsigned int */
1137 iarg[a++] = p->timeout; /* int */
1143 struct linux_setresgid16_args *p = params;
1144 iarg[a++] = p->rgid; /* l_gid16_t */
1145 iarg[a++] = p->egid; /* l_gid16_t */
1146 iarg[a++] = p->sgid; /* l_gid16_t */
1152 struct linux_getresgid16_args *p = params;
1153 uarg[a++] = (intptr_t)p->rgid; /* l_gid16_t * */
1154 uarg[a++] = (intptr_t)p->egid; /* l_gid16_t * */
1155 uarg[a++] = (intptr_t)p->sgid; /* l_gid16_t * */
1161 struct linux_prctl_args *p = params;
1162 iarg[a++] = p->option; /* l_int */
1163 uarg[a++] = (intptr_t)p->arg2; /* l_uintptr_t */
1164 uarg[a++] = (intptr_t)p->arg3; /* l_uintptr_t */
1165 uarg[a++] = (intptr_t)p->arg4; /* l_uintptr_t */
1166 uarg[a++] = (intptr_t)p->arg5; /* l_uintptr_t */
1172 struct linux_rt_sigreturn_args *p = params;
1173 uarg[a++] = (intptr_t)p->ucp; /* struct l_ucontext * */
1179 struct linux_rt_sigaction_args *p = params;
1180 iarg[a++] = p->sig; /* l_int */
1181 uarg[a++] = (intptr_t)p->act; /* l_sigaction_t * */
1182 uarg[a++] = (intptr_t)p->oact; /* l_sigaction_t * */
1183 iarg[a++] = p->sigsetsize; /* l_size_t */
1189 struct linux_rt_sigprocmask_args *p = params;
1190 iarg[a++] = p->how; /* l_int */
1191 uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
1192 uarg[a++] = (intptr_t)p->omask; /* l_sigset_t * */
1193 iarg[a++] = p->sigsetsize; /* l_size_t */
1199 struct linux_rt_sigpending_args *p = params;
1200 uarg[a++] = (intptr_t)p->set; /* l_sigset_t * */
1201 iarg[a++] = p->sigsetsize; /* l_size_t */
1207 struct linux_rt_sigtimedwait_args *p = params;
1208 uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
1209 uarg[a++] = (intptr_t)p->ptr; /* l_siginfo_t * */
1210 uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
1211 iarg[a++] = p->sigsetsize; /* l_size_t */
1217 struct linux_rt_sigqueueinfo_args *p = params;
1218 iarg[a++] = p->pid; /* l_pid_t */
1219 iarg[a++] = p->sig; /* l_int */
1220 uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
1226 struct linux_rt_sigsuspend_args *p = params;
1227 uarg[a++] = (intptr_t)p->newset; /* l_sigset_t * */
1228 iarg[a++] = p->sigsetsize; /* l_size_t */
1234 struct linux_pread_args *p = params;
1235 iarg[a++] = p->fd; /* l_uint */
1236 uarg[a++] = (intptr_t)p->buf; /* char * */
1237 iarg[a++] = p->nbyte; /* l_size_t */
1238 uarg[a++] = p->offset1; /* uint32_t */
1239 uarg[a++] = p->offset2; /* uint32_t */
1245 struct linux_pwrite_args *p = params;
1246 iarg[a++] = p->fd; /* l_uint */
1247 uarg[a++] = (intptr_t)p->buf; /* char * */
1248 iarg[a++] = p->nbyte; /* l_size_t */
1249 uarg[a++] = p->offset1; /* uint32_t */
1250 uarg[a++] = p->offset2; /* uint32_t */
1256 struct linux_chown16_args *p = params;
1257 uarg[a++] = (intptr_t)p->path; /* char * */
1258 iarg[a++] = p->uid; /* l_uid16_t */
1259 iarg[a++] = p->gid; /* l_gid16_t */
1265 struct linux_getcwd_args *p = params;
1266 uarg[a++] = (intptr_t)p->buf; /* char * */
1267 iarg[a++] = p->bufsize; /* l_ulong */
1273 struct linux_capget_args *p = params;
1274 uarg[a++] = (intptr_t)p->hdrp; /* struct l_user_cap_header * */
1275 uarg[a++] = (intptr_t)p->datap; /* struct l_user_cap_data * */
1281 struct linux_capset_args *p = params;
1282 uarg[a++] = (intptr_t)p->hdrp; /* struct l_user_cap_header * */
1283 uarg[a++] = (intptr_t)p->datap; /* struct l_user_cap_data * */
1289 struct linux_sigaltstack_args *p = params;
1290 uarg[a++] = (intptr_t)p->uss; /* l_stack_t * */
1291 uarg[a++] = (intptr_t)p->uoss; /* l_stack_t * */
1297 struct linux_sendfile_args *p = params;
1298 iarg[a++] = p->out; /* l_int */
1299 iarg[a++] = p->in; /* l_int */
1300 uarg[a++] = (intptr_t)p->offset; /* l_off_t * */
1301 iarg[a++] = p->count; /* l_size_t */
1312 struct linux_getrlimit_args *p = params;
1313 iarg[a++] = p->resource; /* l_uint */
1314 uarg[a++] = (intptr_t)p->rlim; /* struct l_rlimit * */
1320 struct linux_mmap2_args *p = params;
1321 iarg[a++] = p->addr; /* l_ulong */
1322 iarg[a++] = p->len; /* l_ulong */
1323 iarg[a++] = p->prot; /* l_ulong */
1324 iarg[a++] = p->flags; /* l_ulong */
1325 iarg[a++] = p->fd; /* l_ulong */
1326 iarg[a++] = p->pgoff; /* l_ulong */
1332 struct linux_truncate64_args *p = params;
1333 uarg[a++] = (intptr_t)p->path; /* char * */
1334 uarg[a++] = p->length1; /* uint32_t */
1335 uarg[a++] = p->length2; /* uint32_t */
1341 struct linux_ftruncate64_args *p = params;
1342 iarg[a++] = p->fd; /* l_uint */
1343 uarg[a++] = p->length1; /* uint32_t */
1344 uarg[a++] = p->length2; /* uint32_t */
1350 struct linux_stat64_args *p = params;
1351 uarg[a++] = (intptr_t)p->filename; /* const char * */
1352 uarg[a++] = (intptr_t)p->statbuf; /* struct l_stat64 * */
1358 struct linux_lstat64_args *p = params;
1359 uarg[a++] = (intptr_t)p->filename; /* const char * */
1360 uarg[a++] = (intptr_t)p->statbuf; /* struct l_stat64 * */
1366 struct linux_fstat64_args *p = params;
1367 iarg[a++] = p->fd; /* l_int */
1368 uarg[a++] = (intptr_t)p->statbuf; /* struct l_stat64 * */
1374 struct linux_lchown_args *p = params;
1375 uarg[a++] = (intptr_t)p->path; /* char * */
1376 iarg[a++] = p->uid; /* l_uid_t */
1377 iarg[a++] = p->gid; /* l_gid_t */
1403 struct setreuid_args *p = params;
1404 uarg[a++] = p->ruid; /* uid_t */
1405 uarg[a++] = p->euid; /* uid_t */
1411 struct setregid_args *p = params;
1412 iarg[a++] = p->rgid; /* gid_t */
1413 iarg[a++] = p->egid; /* gid_t */
1419 struct linux_getgroups_args *p = params;
1420 iarg[a++] = p->gidsetsize; /* l_int */
1421 uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */
1427 struct linux_setgroups_args *p = params;
1428 iarg[a++] = p->gidsetsize; /* l_int */
1429 uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */
1440 struct setresuid_args *p = params;
1441 uarg[a++] = p->ruid; /* uid_t */
1442 uarg[a++] = p->euid; /* uid_t */
1443 uarg[a++] = p->suid; /* uid_t */
1449 struct getresuid_args *p = params;
1450 uarg[a++] = (intptr_t)p->ruid; /* uid_t * */
1451 uarg[a++] = (intptr_t)p->euid; /* uid_t * */
1452 uarg[a++] = (intptr_t)p->suid; /* uid_t * */
1458 struct setresgid_args *p = params;
1459 iarg[a++] = p->rgid; /* gid_t */
1460 iarg[a++] = p->egid; /* gid_t */
1461 iarg[a++] = p->sgid; /* gid_t */
1467 struct getresgid_args *p = params;
1468 uarg[a++] = (intptr_t)p->rgid; /* gid_t * */
1469 uarg[a++] = (intptr_t)p->egid; /* gid_t * */
1470 uarg[a++] = (intptr_t)p->sgid; /* gid_t * */
1476 struct linux_chown_args *p = params;
1477 uarg[a++] = (intptr_t)p->path; /* char * */
1478 iarg[a++] = p->uid; /* l_uid_t */
1479 iarg[a++] = p->gid; /* l_gid_t */
1485 struct setuid_args *p = params;
1486 uarg[a++] = p->uid; /* uid_t */
1492 struct setgid_args *p = params;
1493 iarg[a++] = p->gid; /* gid_t */
1499 struct linux_setfsuid_args *p = params;
1500 iarg[a++] = p->uid; /* l_uid_t */
1506 struct linux_setfsgid_args *p = params;
1507 iarg[a++] = p->gid; /* l_gid_t */
1513 struct linux_pivot_root_args *p = params;
1514 uarg[a++] = (intptr_t)p->new_root; /* char * */
1515 uarg[a++] = (intptr_t)p->put_old; /* char * */
1521 struct linux_mincore_args *p = params;
1522 iarg[a++] = p->start; /* l_ulong */
1523 iarg[a++] = p->len; /* l_size_t */
1524 uarg[a++] = (intptr_t)p->vec; /* u_char * */
1530 struct linux_madvise_args *p = params;
1531 uarg[a++] = (intptr_t)p->addr; /* void * */
1532 uarg[a++] = p->len; /* size_t */
1533 iarg[a++] = p->behav; /* int */
1539 struct linux_getdents64_args *p = params;
1540 iarg[a++] = p->fd; /* l_uint */
1541 uarg[a++] = (intptr_t)p->dirent; /* void * */
1542 iarg[a++] = p->count; /* l_uint */
1548 struct linux_fcntl64_args *p = params;
1549 iarg[a++] = p->fd; /* l_uint */
1550 iarg[a++] = p->cmd; /* l_uint */
1551 uarg[a++] = (intptr_t)p->arg; /* uintptr_t */
1562 struct linux_setxattr_args *p = params;
1563 uarg[a++] = (intptr_t)p->path; /* const char * */
1564 uarg[a++] = (intptr_t)p->name; /* const char * */
1565 uarg[a++] = (intptr_t)p->value; /* void * */
1566 iarg[a++] = p->size; /* l_size_t */
1567 iarg[a++] = p->flags; /* l_int */
1573 struct linux_lsetxattr_args *p = params;
1574 uarg[a++] = (intptr_t)p->path; /* const char * */
1575 uarg[a++] = (intptr_t)p->name; /* const char * */
1576 uarg[a++] = (intptr_t)p->value; /* void * */
1577 iarg[a++] = p->size; /* l_size_t */
1578 iarg[a++] = p->flags; /* l_int */
1584 struct linux_fsetxattr_args *p = params;
1585 iarg[a++] = p->fd; /* l_int */
1586 uarg[a++] = (intptr_t)p->name; /* const char * */
1587 uarg[a++] = (intptr_t)p->value; /* void * */
1588 iarg[a++] = p->size; /* l_size_t */
1589 iarg[a++] = p->flags; /* l_int */
1595 struct linux_getxattr_args *p = params;
1596 uarg[a++] = (intptr_t)p->path; /* const char * */
1597 uarg[a++] = (intptr_t)p->name; /* const char * */
1598 uarg[a++] = (intptr_t)p->value; /* void * */
1599 iarg[a++] = p->size; /* l_size_t */
1605 struct linux_lgetxattr_args *p = params;
1606 uarg[a++] = (intptr_t)p->path; /* const char * */
1607 uarg[a++] = (intptr_t)p->name; /* const char * */
1608 uarg[a++] = (intptr_t)p->value; /* void * */
1609 iarg[a++] = p->size; /* l_size_t */
1615 struct linux_fgetxattr_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 */
1625 struct linux_listxattr_args *p = params;
1626 uarg[a++] = (intptr_t)p->path; /* const char * */
1627 uarg[a++] = (intptr_t)p->list; /* char * */
1628 iarg[a++] = p->size; /* l_size_t */
1634 struct linux_llistxattr_args *p = params;
1635 uarg[a++] = (intptr_t)p->path; /* const char * */
1636 uarg[a++] = (intptr_t)p->list; /* char * */
1637 iarg[a++] = p->size; /* l_size_t */
1643 struct linux_flistxattr_args *p = params;
1644 iarg[a++] = p->fd; /* l_int */
1645 uarg[a++] = (intptr_t)p->list; /* char * */
1646 iarg[a++] = p->size; /* l_size_t */
1652 struct linux_removexattr_args *p = params;
1653 uarg[a++] = (intptr_t)p->path; /* const char * */
1654 uarg[a++] = (intptr_t)p->name; /* const char * */
1660 struct linux_lremovexattr_args *p = params;
1661 uarg[a++] = (intptr_t)p->path; /* const char * */
1662 uarg[a++] = (intptr_t)p->name; /* const char * */
1668 struct linux_fremovexattr_args *p = params;
1669 iarg[a++] = p->fd; /* l_int */
1670 uarg[a++] = (intptr_t)p->name; /* const char * */
1676 struct linux_tkill_args *p = params;
1677 iarg[a++] = p->tid; /* int */
1678 iarg[a++] = p->sig; /* int */
1684 struct linux_sendfile64_args *p = params;
1685 iarg[a++] = p->out; /* l_int */
1686 iarg[a++] = p->in; /* l_int */
1687 uarg[a++] = (intptr_t)p->offset; /* l_loff_t * */
1688 iarg[a++] = p->count; /* l_size_t */
1694 struct linux_sys_futex_args *p = params;
1695 uarg[a++] = (intptr_t)p->uaddr; /* uint32_t * */
1696 iarg[a++] = p->op; /* l_int */
1697 uarg[a++] = p->val; /* uint32_t */
1698 uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
1699 uarg[a++] = (intptr_t)p->uaddr2; /* uint32_t * */
1700 uarg[a++] = p->val3; /* uint32_t */
1706 struct linux_sched_setaffinity_args *p = params;
1707 iarg[a++] = p->pid; /* l_pid_t */
1708 iarg[a++] = p->len; /* l_uint */
1709 uarg[a++] = (intptr_t)p->user_mask_ptr; /* l_ulong * */
1715 struct linux_sched_getaffinity_args *p = params;
1716 iarg[a++] = p->pid; /* l_pid_t */
1717 iarg[a++] = p->len; /* l_uint */
1718 uarg[a++] = (intptr_t)p->user_mask_ptr; /* l_ulong * */
1724 struct linux_set_thread_area_args *p = params;
1725 uarg[a++] = (intptr_t)p->desc; /* struct l_user_desc * */
1731 struct linux_fadvise64_args *p = params;
1732 iarg[a++] = p->fd; /* int */
1733 uarg[a++] = p->offset1; /* uint32_t */
1734 uarg[a++] = p->offset2; /* uint32_t */
1735 iarg[a++] = p->len; /* l_size_t */
1736 iarg[a++] = p->advice; /* int */
1742 struct linux_exit_group_args *p = params;
1743 iarg[a++] = p->error_code; /* int */
1754 struct linux_epoll_create_args *p = params;
1755 iarg[a++] = p->size; /* l_int */
1761 struct linux_epoll_ctl_args *p = params;
1762 iarg[a++] = p->epfd; /* l_int */
1763 iarg[a++] = p->op; /* l_int */
1764 iarg[a++] = p->fd; /* l_int */
1765 uarg[a++] = (intptr_t)p->event; /* struct epoll_event * */
1771 struct linux_epoll_wait_args *p = params;
1772 iarg[a++] = p->epfd; /* l_int */
1773 uarg[a++] = (intptr_t)p->events; /* struct epoll_event * */
1774 iarg[a++] = p->maxevents; /* l_int */
1775 iarg[a++] = p->timeout; /* l_int */
1786 struct linux_set_tid_address_args *p = params;
1787 uarg[a++] = (intptr_t)p->tidptr; /* int * */
1793 struct linux_timer_create_args *p = params;
1794 iarg[a++] = p->clock_id; /* clockid_t */
1795 uarg[a++] = (intptr_t)p->evp; /* struct l_sigevent * */
1796 uarg[a++] = (intptr_t)p->timerid; /* l_timer_t * */
1802 struct linux_timer_settime_args *p = params;
1803 iarg[a++] = p->timerid; /* l_timer_t */
1804 iarg[a++] = p->flags; /* l_int */
1805 uarg[a++] = (intptr_t)p->new; /* const struct itimerspec * */
1806 uarg[a++] = (intptr_t)p->old; /* struct itimerspec * */
1812 struct linux_timer_gettime_args *p = params;
1813 iarg[a++] = p->timerid; /* l_timer_t */
1814 uarg[a++] = (intptr_t)p->setting; /* struct itimerspec * */
1820 struct linux_timer_getoverrun_args *p = params;
1821 iarg[a++] = p->timerid; /* l_timer_t */
1827 struct linux_timer_delete_args *p = params;
1828 iarg[a++] = p->timerid; /* l_timer_t */
1834 struct linux_clock_settime_args *p = params;
1835 iarg[a++] = p->which; /* clockid_t */
1836 uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
1842 struct linux_clock_gettime_args *p = params;
1843 iarg[a++] = p->which; /* clockid_t */
1844 uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
1850 struct linux_clock_getres_args *p = params;
1851 iarg[a++] = p->which; /* clockid_t */
1852 uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
1858 struct linux_clock_nanosleep_args *p = params;
1859 iarg[a++] = p->which; /* clockid_t */
1860 iarg[a++] = p->flags; /* int */
1861 uarg[a++] = (intptr_t)p->rqtp; /* struct l_timespec * */
1862 uarg[a++] = (intptr_t)p->rmtp; /* struct l_timespec * */
1868 struct linux_statfs64_args *p = params;
1869 uarg[a++] = (intptr_t)p->path; /* char * */
1870 uarg[a++] = p->bufsize; /* size_t */
1871 uarg[a++] = (intptr_t)p->buf; /* struct l_statfs64_buf * */
1877 struct linux_fstatfs64_args *p = params;
1878 iarg[a++] = p->fd; /* l_uint */
1879 uarg[a++] = p->bufsize; /* size_t */
1880 uarg[a++] = (intptr_t)p->buf; /* struct l_statfs64_buf * */
1886 struct linux_tgkill_args *p = params;
1887 iarg[a++] = p->tgid; /* int */
1888 iarg[a++] = p->pid; /* int */
1889 iarg[a++] = p->sig; /* int */
1895 struct linux_utimes_args *p = params;
1896 uarg[a++] = (intptr_t)p->fname; /* char * */
1897 uarg[a++] = (intptr_t)p->tptr; /* struct l_timeval * */
1903 struct linux_fadvise64_64_args *p = params;
1904 iarg[a++] = p->fd; /* int */
1905 uarg[a++] = p->offset1; /* uint32_t */
1906 uarg[a++] = p->offset2; /* uint32_t */
1907 uarg[a++] = p->len1; /* uint32_t */
1908 uarg[a++] = p->len2; /* uint32_t */
1909 iarg[a++] = p->advice; /* int */
1930 struct linux_mq_open_args *p = params;
1931 uarg[a++] = (intptr_t)p->name; /* const char * */
1932 iarg[a++] = p->oflag; /* l_int */
1933 iarg[a++] = p->mode; /* l_mode_t */
1934 uarg[a++] = (intptr_t)p->attr; /* struct mq_attr * */
1940 struct linux_mq_unlink_args *p = params;
1941 uarg[a++] = (intptr_t)p->name; /* const char * */
1947 struct linux_mq_timedsend_args *p = params;
1948 iarg[a++] = p->mqd; /* l_mqd_t */
1949 uarg[a++] = (intptr_t)p->msg_ptr; /* const char * */
1950 iarg[a++] = p->msg_len; /* l_size_t */
1951 iarg[a++] = p->msg_prio; /* l_uint */
1952 uarg[a++] = (intptr_t)p->abs_timeout; /* const struct l_timespec * */
1958 struct linux_mq_timedreceive_args *p = params;
1959 iarg[a++] = p->mqd; /* l_mqd_t */
1960 uarg[a++] = (intptr_t)p->msg_ptr; /* char * */
1961 iarg[a++] = p->msg_len; /* l_size_t */
1962 uarg[a++] = (intptr_t)p->msg_prio; /* l_uint * */
1963 uarg[a++] = (intptr_t)p->abs_timeout; /* const struct l_timespec * */
1969 struct linux_mq_notify_args *p = params;
1970 iarg[a++] = p->mqd; /* l_mqd_t */
1971 uarg[a++] = (intptr_t)p->sevp; /* const struct l_sigevent * */
1977 struct linux_mq_getsetattr_args *p = params;
1978 iarg[a++] = p->mqd; /* l_mqd_t */
1979 uarg[a++] = (intptr_t)p->attr; /* const struct mq_attr * */
1980 uarg[a++] = (intptr_t)p->oattr; /* struct mq_attr * */
1991 struct linux_waitid_args *p = params;
1992 iarg[a++] = p->idtype; /* int */
1993 iarg[a++] = p->id; /* l_pid_t */
1994 uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
1995 iarg[a++] = p->options; /* int */
1996 uarg[a++] = (intptr_t)p->rusage; /* struct l_rusage * */
2017 struct linux_ioprio_set_args *p = params;
2018 iarg[a++] = p->which; /* l_int */
2019 iarg[a++] = p->who; /* l_int */
2020 iarg[a++] = p->ioprio; /* l_int */
2026 struct linux_ioprio_get_args *p = params;
2027 iarg[a++] = p->which; /* l_int */
2028 iarg[a++] = p->who; /* l_int */
2054 struct linux_openat_args *p = params;
2055 iarg[a++] = p->dfd; /* l_int */
2056 uarg[a++] = (intptr_t)p->filename; /* const char * */
2057 iarg[a++] = p->flags; /* l_int */
2058 iarg[a++] = p->mode; /* l_int */
2064 struct linux_mkdirat_args *p = params;
2065 iarg[a++] = p->dfd; /* l_int */
2066 uarg[a++] = (intptr_t)p->pathname; /* const char * */
2067 iarg[a++] = p->mode; /* l_int */
2073 struct linux_mknodat_args *p = params;
2074 iarg[a++] = p->dfd; /* l_int */
2075 uarg[a++] = (intptr_t)p->filename; /* const char * */
2076 iarg[a++] = p->mode; /* l_int */
2077 iarg[a++] = p->dev; /* l_dev_t */
2083 struct linux_fchownat_args *p = params;
2084 iarg[a++] = p->dfd; /* l_int */
2085 uarg[a++] = (intptr_t)p->filename; /* const char * */
2086 iarg[a++] = p->uid; /* l_uid16_t */
2087 iarg[a++] = p->gid; /* l_gid16_t */
2088 iarg[a++] = p->flag; /* l_int */
2094 struct linux_futimesat_args *p = params;
2095 iarg[a++] = p->dfd; /* l_int */
2096 uarg[a++] = (intptr_t)p->filename; /* char * */
2097 uarg[a++] = (intptr_t)p->utimes; /* struct l_timeval * */
2103 struct linux_fstatat64_args *p = params;
2104 iarg[a++] = p->dfd; /* l_int */
2105 uarg[a++] = (intptr_t)p->pathname; /* char * */
2106 uarg[a++] = (intptr_t)p->statbuf; /* struct l_stat64 * */
2107 iarg[a++] = p->flag; /* l_int */
2113 struct linux_unlinkat_args *p = params;
2114 iarg[a++] = p->dfd; /* l_int */
2115 uarg[a++] = (intptr_t)p->pathname; /* const char * */
2116 iarg[a++] = p->flag; /* l_int */
2122 struct linux_renameat_args *p = params;
2123 iarg[a++] = p->olddfd; /* l_int */
2124 uarg[a++] = (intptr_t)p->oldname; /* const char * */
2125 iarg[a++] = p->newdfd; /* l_int */
2126 uarg[a++] = (intptr_t)p->newname; /* const char * */
2132 struct linux_linkat_args *p = params;
2133 iarg[a++] = p->olddfd; /* l_int */
2134 uarg[a++] = (intptr_t)p->oldname; /* const char * */
2135 iarg[a++] = p->newdfd; /* l_int */
2136 uarg[a++] = (intptr_t)p->newname; /* const char * */
2137 iarg[a++] = p->flag; /* l_int */
2143 struct linux_symlinkat_args *p = params;
2144 uarg[a++] = (intptr_t)p->oldname; /* const char * */
2145 iarg[a++] = p->newdfd; /* l_int */
2146 uarg[a++] = (intptr_t)p->newname; /* const char * */
2152 struct linux_readlinkat_args *p = params;
2153 iarg[a++] = p->dfd; /* l_int */
2154 uarg[a++] = (intptr_t)p->path; /* const char * */
2155 uarg[a++] = (intptr_t)p->buf; /* char * */
2156 iarg[a++] = p->bufsiz; /* l_int */
2162 struct linux_fchmodat_args *p = params;
2163 iarg[a++] = p->dfd; /* l_int */
2164 uarg[a++] = (intptr_t)p->filename; /* const char * */
2165 iarg[a++] = p->mode; /* l_mode_t */
2171 struct linux_faccessat_args *p = params;
2172 iarg[a++] = p->dfd; /* l_int */
2173 uarg[a++] = (intptr_t)p->filename; /* const char * */
2174 iarg[a++] = p->amode; /* l_int */
2180 struct linux_pselect6_args *p = params;
2181 iarg[a++] = p->nfds; /* l_int */
2182 uarg[a++] = (intptr_t)p->readfds; /* l_fd_set * */
2183 uarg[a++] = (intptr_t)p->writefds; /* l_fd_set * */
2184 uarg[a++] = (intptr_t)p->exceptfds; /* l_fd_set * */
2185 uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec * */
2186 uarg[a++] = (intptr_t)p->sig; /* l_uintptr_t * */
2192 struct linux_ppoll_args *p = params;
2193 uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
2194 uarg[a++] = p->nfds; /* uint32_t */
2195 uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec * */
2196 uarg[a++] = (intptr_t)p->sset; /* l_sigset_t * */
2197 iarg[a++] = p->ssize; /* l_size_t */
2208 struct linux_set_robust_list_args *p = params;
2209 uarg[a++] = (intptr_t)p->head; /* struct linux_robust_list_head * */
2210 iarg[a++] = p->len; /* l_size_t */
2216 struct linux_get_robust_list_args *p = params;
2217 iarg[a++] = p->pid; /* l_int */
2218 uarg[a++] = (intptr_t)p->head; /* struct linux_robust_list_head ** */
2219 uarg[a++] = (intptr_t)p->len; /* l_size_t * */
2225 struct linux_splice_args *p = params;
2226 iarg[a++] = p->fd_in; /* int */
2227 uarg[a++] = (intptr_t)p->off_in; /* l_loff_t * */
2228 iarg[a++] = p->fd_out; /* int */
2229 uarg[a++] = (intptr_t)p->off_out; /* l_loff_t * */
2230 iarg[a++] = p->len; /* l_size_t */
2231 iarg[a++] = p->flags; /* l_uint */
2237 struct linux_sync_file_range_args *p = params;
2238 iarg[a++] = p->fd; /* l_int */
2239 uarg[a++] = p->offset1; /* uint32_t */
2240 uarg[a++] = p->offset2; /* uint32_t */
2241 uarg[a++] = p->nbytes1; /* uint32_t */
2242 uarg[a++] = p->nbytes2; /* uint32_t */
2243 uarg[a++] = p->flags; /* unsigned int */
2264 struct linux_getcpu_args *p = params;
2265 uarg[a++] = (intptr_t)p->cpu; /* l_uint * */
2266 uarg[a++] = (intptr_t)p->node; /* l_uint * */
2267 uarg[a++] = (intptr_t)p->cache; /* void * */
2273 struct linux_epoll_pwait_args *p = params;
2274 iarg[a++] = p->epfd; /* l_int */
2275 uarg[a++] = (intptr_t)p->events; /* struct epoll_event * */
2276 iarg[a++] = p->maxevents; /* l_int */
2277 iarg[a++] = p->timeout; /* l_int */
2278 uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
2279 iarg[a++] = p->sigsetsize; /* l_size_t */
2285 struct linux_utimensat_args *p = params;
2286 iarg[a++] = p->dfd; /* l_int */
2287 uarg[a++] = (intptr_t)p->pathname; /* const char * */
2288 uarg[a++] = (intptr_t)p->times; /* const struct l_timespec * */
2289 iarg[a++] = p->flags; /* l_int */
2300 struct linux_timerfd_create_args *p = params;
2301 iarg[a++] = p->clockid; /* l_int */
2302 iarg[a++] = p->flags; /* l_int */
2308 struct linux_eventfd_args *p = params;
2309 iarg[a++] = p->initval; /* l_uint */
2315 struct linux_fallocate_args *p = params;
2316 iarg[a++] = p->fd; /* l_int */
2317 iarg[a++] = p->mode; /* l_int */
2318 uarg[a++] = p->offset1; /* uint32_t */
2319 uarg[a++] = p->offset2; /* uint32_t */
2320 uarg[a++] = p->len1; /* uint32_t */
2321 uarg[a++] = p->len2; /* uint32_t */
2327 struct linux_timerfd_settime_args *p = params;
2328 iarg[a++] = p->fd; /* l_int */
2329 iarg[a++] = p->flags; /* l_int */
2330 uarg[a++] = (intptr_t)p->new_value; /* const struct l_itimerspec * */
2331 uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec * */
2337 struct linux_timerfd_gettime_args *p = params;
2338 iarg[a++] = p->fd; /* l_int */
2339 uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec * */
2350 struct linux_eventfd2_args *p = params;
2351 iarg[a++] = p->initval; /* l_uint */
2352 iarg[a++] = p->flags; /* l_int */
2358 struct linux_epoll_create1_args *p = params;
2359 iarg[a++] = p->flags; /* l_int */
2365 struct linux_dup3_args *p = params;
2366 iarg[a++] = p->oldfd; /* l_int */
2367 iarg[a++] = p->newfd; /* l_int */
2368 iarg[a++] = p->flags; /* l_int */
2374 struct linux_pipe2_args *p = params;
2375 uarg[a++] = (intptr_t)p->pipefds; /* l_int * */
2376 iarg[a++] = p->flags; /* l_int */
2387 struct linux_preadv_args *p = params;
2388 iarg[a++] = p->fd; /* l_ulong */
2389 uarg[a++] = (intptr_t)p->vec; /* struct iovec * */
2390 iarg[a++] = p->vlen; /* l_ulong */
2391 iarg[a++] = p->pos_l; /* l_ulong */
2392 iarg[a++] = p->pos_h; /* l_ulong */
2398 struct linux_pwritev_args *p = params;
2399 iarg[a++] = p->fd; /* l_ulong */
2400 uarg[a++] = (intptr_t)p->vec; /* struct iovec * */
2401 iarg[a++] = p->vlen; /* l_ulong */
2402 iarg[a++] = p->pos_l; /* l_ulong */
2403 iarg[a++] = p->pos_h; /* l_ulong */
2409 struct linux_rt_tgsigqueueinfo_args *p = params;
2410 iarg[a++] = p->tgid; /* l_pid_t */
2411 iarg[a++] = p->tid; /* l_pid_t */
2412 iarg[a++] = p->sig; /* l_int */
2413 uarg[a++] = (intptr_t)p->uinfo; /* l_siginfo_t * */
2424 struct linux_recvmmsg_args *p = params;
2425 iarg[a++] = p->s; /* l_int */
2426 uarg[a++] = (intptr_t)p->msg; /* struct l_mmsghdr * */
2427 iarg[a++] = p->vlen; /* l_uint */
2428 iarg[a++] = p->flags; /* l_uint */
2429 uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
2445 struct linux_prlimit64_args *p = params;
2446 iarg[a++] = p->pid; /* l_pid_t */
2447 iarg[a++] = p->resource; /* l_uint */
2448 uarg[a++] = (intptr_t)p->new; /* struct rlimit * */
2449 uarg[a++] = (intptr_t)p->old; /* struct rlimit * */
2455 struct linux_name_to_handle_at_args *p = params;
2456 iarg[a++] = p->dirfd; /* l_int */
2457 uarg[a++] = (intptr_t)p->name; /* const char * */
2458 uarg[a++] = (intptr_t)p->handle; /* struct l_file_handle * */
2459 uarg[a++] = (intptr_t)p->mnt_id; /* l_int * */
2460 iarg[a++] = p->flags; /* l_int */
2466 struct linux_open_by_handle_at_args *p = params;
2467 iarg[a++] = p->mountdirfd; /* l_int */
2468 uarg[a++] = (intptr_t)p->handle; /* struct l_file_handle * */
2469 iarg[a++] = p->flags; /* l_int */
2480 struct linux_syncfs_args *p = params;
2481 iarg[a++] = p->fd; /* l_int */
2487 struct linux_sendmmsg_args *p = params;
2488 iarg[a++] = p->s; /* l_int */
2489 uarg[a++] = (intptr_t)p->msg; /* struct l_mmsghdr * */
2490 iarg[a++] = p->vlen; /* l_uint */
2491 iarg[a++] = p->flags; /* l_uint */
2502 struct linux_process_vm_readv_args *p = params;
2503 iarg[a++] = p->pid; /* l_pid_t */
2504 uarg[a++] = (intptr_t)p->lvec; /* const struct iovec * */
2505 iarg[a++] = p->liovcnt; /* l_ulong */
2506 uarg[a++] = (intptr_t)p->rvec; /* const struct iovec * */
2507 iarg[a++] = p->riovcnt; /* l_ulong */
2508 iarg[a++] = p->flags; /* l_ulong */
2514 struct linux_process_vm_writev_args *p = params;
2515 iarg[a++] = p->pid; /* l_pid_t */
2516 uarg[a++] = (intptr_t)p->lvec; /* const struct iovec * */
2517 iarg[a++] = p->liovcnt; /* l_ulong */
2518 uarg[a++] = (intptr_t)p->rvec; /* const struct iovec * */
2519 iarg[a++] = p->riovcnt; /* l_ulong */
2520 iarg[a++] = p->flags; /* l_ulong */
2526 struct linux_kcmp_args *p = params;
2527 iarg[a++] = p->pid1; /* l_pid_t */
2528 iarg[a++] = p->pid2; /* l_pid_t */
2529 iarg[a++] = p->type; /* l_int */
2530 iarg[a++] = p->idx1; /* l_ulong */
2531 iarg[a++] = p->idx; /* l_ulong */
2537 struct linux_finit_module_args *p = params;
2538 iarg[a++] = p->fd; /* l_int */
2539 uarg[a++] = (intptr_t)p->uargs; /* const char * */
2540 iarg[a++] = p->flags; /* l_int */
2546 struct linux_sched_setattr_args *p = params;
2547 iarg[a++] = p->pid; /* l_pid_t */
2548 uarg[a++] = (intptr_t)p->attr; /* void * */
2549 iarg[a++] = p->flags; /* l_uint */
2555 struct linux_sched_getattr_args *p = params;
2556 iarg[a++] = p->pid; /* l_pid_t */
2557 uarg[a++] = (intptr_t)p->attr; /* void * */
2558 iarg[a++] = p->size; /* l_uint */
2559 iarg[a++] = p->flags; /* l_uint */
2565 struct linux_renameat2_args *p = params;
2566 iarg[a++] = p->olddfd; /* l_int */
2567 uarg[a++] = (intptr_t)p->oldname; /* const char * */
2568 iarg[a++] = p->newdfd; /* l_int */
2569 uarg[a++] = (intptr_t)p->newname; /* const char * */
2570 uarg[a++] = p->flags; /* unsigned int */
2576 struct linux_seccomp_args *p = params;
2577 iarg[a++] = p->op; /* l_uint */
2578 iarg[a++] = p->flags; /* l_uint */
2579 uarg[a++] = (intptr_t)p->uargs; /* const char * */
2585 struct linux_getrandom_args *p = params;
2586 uarg[a++] = (intptr_t)p->buf; /* char * */
2587 iarg[a++] = p->count; /* l_size_t */
2588 iarg[a++] = p->flags; /* l_uint */
2594 struct linux_memfd_create_args *p = params;
2595 uarg[a++] = (intptr_t)p->uname_ptr; /* const char * */
2596 iarg[a++] = p->flags; /* l_uint */
2602 struct linux_bpf_args *p = params;
2603 iarg[a++] = p->cmd; /* l_int */
2604 uarg[a++] = (intptr_t)p->attr; /* void * */
2605 iarg[a++] = p->size; /* l_uint */
2611 struct linux_execveat_args *p = params;
2612 iarg[a++] = p->dfd; /* l_int */
2613 uarg[a++] = (intptr_t)p->filename; /* const char * */
2614 uarg[a++] = (intptr_t)p->argv; /* const char ** */
2615 uarg[a++] = (intptr_t)p->envp; /* const char ** */
2616 iarg[a++] = p->flags; /* l_int */
2622 struct linux_socket_args *p = params;
2623 iarg[a++] = p->domain; /* l_int */
2624 iarg[a++] = p->type; /* l_int */
2625 iarg[a++] = p->protocol; /* l_int */
2631 struct linux_socketpair_args *p = params;
2632 iarg[a++] = p->domain; /* l_int */
2633 iarg[a++] = p->type; /* l_int */
2634 iarg[a++] = p->protocol; /* l_int */
2635 uarg[a++] = (intptr_t)p->rsv; /* l_uintptr_t */
2641 struct linux_bind_args *p = params;
2642 iarg[a++] = p->s; /* l_int */
2643 uarg[a++] = (intptr_t)p->name; /* l_uintptr_t */
2644 iarg[a++] = p->namelen; /* l_int */
2650 struct linux_connect_args *p = params;
2651 iarg[a++] = p->s; /* l_int */
2652 uarg[a++] = (intptr_t)p->name; /* l_uintptr_t */
2653 iarg[a++] = p->namelen; /* l_int */
2659 struct linux_listen_args *p = params;
2660 iarg[a++] = p->s; /* l_int */
2661 iarg[a++] = p->backlog; /* l_int */
2667 struct linux_accept4_args *p = params;
2668 iarg[a++] = p->s; /* l_int */
2669 uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
2670 uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
2671 iarg[a++] = p->flags; /* l_int */
2677 struct linux_getsockopt_args *p = params;
2678 iarg[a++] = p->s; /* l_int */
2679 iarg[a++] = p->level; /* l_int */
2680 iarg[a++] = p->optname; /* l_int */
2681 uarg[a++] = (intptr_t)p->optval; /* l_uintptr_t */
2682 uarg[a++] = (intptr_t)p->optlen; /* l_uintptr_t */
2688 struct linux_setsockopt_args *p = params;
2689 iarg[a++] = p->s; /* l_int */
2690 iarg[a++] = p->level; /* l_int */
2691 iarg[a++] = p->optname; /* l_int */
2692 uarg[a++] = (intptr_t)p->optval; /* l_uintptr_t */
2693 iarg[a++] = p->optlen; /* l_int */
2699 struct linux_getsockname_args *p = params;
2700 iarg[a++] = p->s; /* l_int */
2701 uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
2702 uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
2708 struct linux_getpeername_args *p = params;
2709 iarg[a++] = p->s; /* l_int */
2710 uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
2711 uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
2717 struct linux_sendto_args *p = params;
2718 iarg[a++] = p->s; /* l_int */
2719 uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
2720 iarg[a++] = p->len; /* l_int */
2721 iarg[a++] = p->flags; /* l_int */
2722 uarg[a++] = (intptr_t)p->to; /* l_uintptr_t */
2723 iarg[a++] = p->tolen; /* l_int */
2729 struct linux_sendmsg_args *p = params;
2730 iarg[a++] = p->s; /* l_int */
2731 uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
2732 iarg[a++] = p->flags; /* l_int */
2738 struct linux_recvfrom_args *p = params;
2739 iarg[a++] = p->s; /* l_int */
2740 uarg[a++] = (intptr_t)p->buf; /* l_uintptr_t */
2741 iarg[a++] = p->len; /* l_size_t */
2742 iarg[a++] = p->flags; /* l_int */
2743 uarg[a++] = (intptr_t)p->from; /* l_uintptr_t */
2744 uarg[a++] = (intptr_t)p->fromlen; /* l_uintptr_t */
2750 struct linux_recvmsg_args *p = params;
2751 iarg[a++] = p->s; /* l_int */
2752 uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
2753 iarg[a++] = p->flags; /* l_int */
2759 struct linux_shutdown_args *p = params;
2760 iarg[a++] = p->s; /* l_int */
2761 iarg[a++] = p->how; /* l_int */
2767 struct linux_userfaultfd_args *p = params;
2768 iarg[a++] = p->flags; /* l_int */
2774 struct linux_membarrier_args *p = params;
2775 iarg[a++] = p->cmd; /* l_int */
2776 iarg[a++] = p->flags; /* l_int */
2782 struct linux_mlock2_args *p = params;
2783 iarg[a++] = p->start; /* l_ulong */
2784 iarg[a++] = p->len; /* l_size_t */
2785 iarg[a++] = p->flags; /* l_int */
2791 struct linux_copy_file_range_args *p = params;
2792 iarg[a++] = p->fd_in; /* l_int */
2793 uarg[a++] = (intptr_t)p->off_in; /* l_loff_t * */
2794 iarg[a++] = p->fd_out; /* l_int */
2795 uarg[a++] = (intptr_t)p->off_out; /* l_loff_t * */
2796 iarg[a++] = p->len; /* l_size_t */
2797 iarg[a++] = p->flags; /* l_uint */
2803 struct linux_preadv2_args *p = params;
2804 iarg[a++] = p->fd; /* l_ulong */
2805 uarg[a++] = (intptr_t)p->vec; /* const struct iovec * */
2806 iarg[a++] = p->vlen; /* l_ulong */
2807 iarg[a++] = p->pos_l; /* l_ulong */
2808 iarg[a++] = p->pos_h; /* l_ulong */
2809 iarg[a++] = p->flags; /* l_int */
2815 struct linux_pwritev2_args *p = params;
2816 iarg[a++] = p->fd; /* l_ulong */
2817 uarg[a++] = (intptr_t)p->vec; /* const struct iovec * */
2818 iarg[a++] = p->vlen; /* l_ulong */
2819 iarg[a++] = p->pos_l; /* l_ulong */
2820 iarg[a++] = p->pos_h; /* l_ulong */
2821 iarg[a++] = p->flags; /* l_int */
2827 struct linux_pkey_mprotect_args *p = params;
2828 iarg[a++] = p->start; /* l_ulong */
2829 iarg[a++] = p->len; /* l_size_t */
2830 iarg[a++] = p->prot; /* l_ulong */
2831 iarg[a++] = p->pkey; /* l_int */
2837 struct linux_pkey_alloc_args *p = params;
2838 iarg[a++] = p->flags; /* l_ulong */
2839 iarg[a++] = p->init_val; /* l_ulong */
2845 struct linux_pkey_free_args *p = params;
2846 iarg[a++] = p->pkey; /* l_int */
2852 struct linux_statx_args *p = params;
2853 iarg[a++] = p->dirfd; /* l_int */
2854 uarg[a++] = (intptr_t)p->pathname; /* const char * */
2855 iarg[a++] = p->flags; /* l_uint */
2856 iarg[a++] = p->mask; /* l_uint */
2857 uarg[a++] = (intptr_t)p->statxbuf; /* void * */
2863 struct linux_arch_prctl_args *p = params;
2864 iarg[a++] = p->option; /* l_int */
2865 iarg[a++] = p->arg2; /* l_ulong */
2876 struct linux_rseq_args *p = params;
2877 uarg[a++] = (intptr_t)p->rseq; /* struct linux_rseq * */
2878 uarg[a++] = p->rseq_len; /* uint32_t */
2879 iarg[a++] = p->flags; /* l_int */
2880 uarg[a++] = p->sig; /* uint32_t */
2886 struct linux_semget_args *p = params;
2887 iarg[a++] = p->key; /* l_key_t */
2888 iarg[a++] = p->nsems; /* l_int */
2889 iarg[a++] = p->semflg; /* l_int */
2895 struct linux_semctl_args *p = params;
2896 iarg[a++] = p->semid; /* l_int */
2897 iarg[a++] = p->semnum; /* l_int */
2898 iarg[a++] = p->cmd; /* l_int */
2899 uarg[a++] = p->arg.buf; /* union l_semun */
2905 struct linux_shmget_args *p = params;
2906 iarg[a++] = p->key; /* l_key_t */
2907 iarg[a++] = p->size; /* l_size_t */
2908 iarg[a++] = p->shmflg; /* l_int */
2914 struct linux_shmctl_args *p = params;
2915 iarg[a++] = p->shmid; /* l_int */
2916 iarg[a++] = p->cmd; /* l_int */
2917 uarg[a++] = (intptr_t)p->buf; /* struct l_shmid_ds * */
2923 struct linux_shmat_args *p = params;
2924 iarg[a++] = p->shmid; /* l_int */
2925 uarg[a++] = (intptr_t)p->shmaddr; /* char * */
2926 iarg[a++] = p->shmflg; /* l_int */
2932 struct linux_shmdt_args *p = params;
2933 uarg[a++] = (intptr_t)p->shmaddr; /* char * */
2939 struct linux_msgget_args *p = params;
2940 iarg[a++] = p->key; /* l_key_t */
2941 iarg[a++] = p->msgflg; /* l_int */
2947 struct linux_msgsnd_args *p = params;
2948 iarg[a++] = p->msqid; /* l_int */
2949 uarg[a++] = (intptr_t)p->msgp; /* struct l_msgbuf * */
2950 iarg[a++] = p->msgsz; /* l_size_t */
2951 iarg[a++] = p->msgflg; /* l_int */
2957 struct linux_msgrcv_args *p = params;
2958 iarg[a++] = p->msqid; /* l_int */
2959 uarg[a++] = (intptr_t)p->msgp; /* struct l_msgbuf * */
2960 iarg[a++] = p->msgsz; /* l_size_t */
2961 iarg[a++] = p->msgtyp; /* l_long */
2962 iarg[a++] = p->msgflg; /* l_int */
2968 struct linux_msgctl_args *p = params;
2969 iarg[a++] = p->msqid; /* l_int */
2970 iarg[a++] = p->cmd; /* l_int */
2971 uarg[a++] = (intptr_t)p->buf; /* struct l_msqid_ds * */
2977 struct linux_clock_gettime64_args *p = params;
2978 iarg[a++] = p->which; /* clockid_t */
2979 uarg[a++] = (intptr_t)p->tp; /* struct l_timespec64 * */
2985 struct linux_clock_settime64_args *p = params;
2986 iarg[a++] = p->which; /* clockid_t */
2987 uarg[a++] = (intptr_t)p->tp; /* struct l_timespec64 * */
2998 struct linux_clock_getres_time64_args *p = params;
2999 iarg[a++] = p->which; /* clockid_t */
3000 uarg[a++] = (intptr_t)p->tp; /* struct l_timespec64 * */
3006 struct linux_clock_nanosleep_time64_args *p = params;
3007 iarg[a++] = p->which; /* clockid_t */
3008 iarg[a++] = p->flags; /* l_int */
3009 uarg[a++] = (intptr_t)p->rqtp; /* struct l_timespec64 * */
3010 uarg[a++] = (intptr_t)p->rmtp; /* struct l_timespec64 * */
3016 struct linux_timer_gettime64_args *p = params;
3017 iarg[a++] = p->timerid; /* l_timer_t */
3018 uarg[a++] = (intptr_t)p->setting; /* struct l_itimerspec64 * */
3024 struct linux_timer_settime64_args *p = params;
3025 iarg[a++] = p->timerid; /* l_timer_t */
3026 iarg[a++] = p->flags; /* l_int */
3027 uarg[a++] = (intptr_t)p->new; /* const struct l_itimerspec64 * */
3028 uarg[a++] = (intptr_t)p->old; /* struct l_itimerspec64 * */
3034 struct linux_timerfd_gettime64_args *p = params;
3035 iarg[a++] = p->fd; /* l_int */
3036 uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec64 * */
3042 struct linux_timerfd_settime64_args *p = params;
3043 iarg[a++] = p->fd; /* l_int */
3044 iarg[a++] = p->flags; /* l_int */
3045 uarg[a++] = (intptr_t)p->new_value; /* const struct l_itimerspec64 * */
3046 uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec64 * */
3052 struct linux_utimensat_time64_args *p = params;
3053 iarg[a++] = p->dfd; /* l_int */
3054 uarg[a++] = (intptr_t)p->pathname; /* const char * */
3055 uarg[a++] = (intptr_t)p->times64; /* const struct l_timespec64 * */
3056 iarg[a++] = p->flags; /* l_int */
3062 struct linux_pselect6_time64_args *p = params;
3063 iarg[a++] = p->nfds; /* l_int */
3064 uarg[a++] = (intptr_t)p->readfds; /* l_fd_set * */
3065 uarg[a++] = (intptr_t)p->writefds; /* l_fd_set * */
3066 uarg[a++] = (intptr_t)p->exceptfds; /* l_fd_set * */
3067 uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec64 * */
3068 uarg[a++] = (intptr_t)p->sig; /* l_uintptr_t * */
3074 struct linux_ppoll_time64_args *p = params;
3075 uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
3076 uarg[a++] = p->nfds; /* uint32_t */
3077 uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec64 * */
3078 uarg[a++] = (intptr_t)p->sset; /* l_sigset_t * */
3079 iarg[a++] = p->ssize; /* l_size_t */
3090 struct linux_recvmmsg_time64_args *p = params;
3091 iarg[a++] = p->s; /* l_int */
3092 uarg[a++] = (intptr_t)p->msg; /* struct l_mmsghdr * */
3093 iarg[a++] = p->vlen; /* l_uint */
3094 iarg[a++] = p->flags; /* l_uint */
3095 uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec64 * */
3111 struct linux_semtimedop_time64_args *p = params;
3112 iarg[a++] = p->semid; /* l_int */
3113 uarg[a++] = (intptr_t)p->tsops; /* struct sembuf * */
3114 iarg[a++] = p->nsops; /* l_size_t */
3115 uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec64 * */
3121 struct linux_rt_sigtimedwait_time64_args *p = params;
3122 uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
3123 uarg[a++] = (intptr_t)p->ptr; /* l_siginfo_t * */
3124 uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec64 * */
3125 iarg[a++] = p->sigsetsize; /* l_size_t */
3131 struct linux_sys_futex_time64_args *p = params;
3132 uarg[a++] = (intptr_t)p->uaddr; /* uint32_t * */
3133 iarg[a++] = p->op; /* l_int */
3134 uarg[a++] = p->val; /* uint32_t */
3135 uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec64 * */
3136 uarg[a++] = (intptr_t)p->uaddr2; /* uint32_t * */
3137 uarg[a++] = p->val3; /* uint32_t */
3143 struct linux_sched_rr_get_interval_time64_args *p = params;
3144 iarg[a++] = p->pid; /* l_pid_t */
3145 uarg[a++] = (intptr_t)p->interval; /* struct l_timespec64 * */
3151 struct linux_pidfd_send_signal_args *p = params;
3152 iarg[a++] = p->pidfd; /* l_int */
3153 iarg[a++] = p->sig; /* l_int */
3154 uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
3155 iarg[a++] = p->flags; /* l_uint */
3211 struct linux_clone3_args *p = params;
3212 uarg[a++] = (intptr_t)p->uargs; /* struct l_user_clone_args * */
3213 iarg[a++] = p->usize; /* l_size_t */
3219 struct linux_close_range_args *p = params;
3220 iarg[a++] = p->first; /* l_uint */
3221 iarg[a++] = p->last; /* l_uint */
3222 iarg[a++] = p->flags; /* l_uint */
3238 struct linux_faccessat2_args *p = params;
3239 iarg[a++] = p->dfd; /* l_int */
3240 uarg[a++] = (intptr_t)p->filename; /* const char * */
3241 iarg[a++] = p->amode; /* l_int */
3242 iarg[a++] = p->flags; /* l_int */
3253 struct linux_epoll_pwait2_64_args *p = params;
3254 iarg[a++] = p->epfd; /* l_int */
3255 uarg[a++] = (intptr_t)p->events; /* struct epoll_event * */
3256 iarg[a++] = p->maxevents; /* l_int */
3257 uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec64 * */
3258 uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
3259 iarg[a++] = p->sigsetsize; /* l_size_t */
3326 const char *p = NULL;
3332 p = "int";
3345 p = "int";
3348 p = "userland char *";
3351 p = "u_int";
3361 p = "int";
3364 p = "userland char *";
3367 p = "l_size_t";
3377 p = "userland char *";
3380 p = "l_int";
3383 p = "l_int";
3393 p = "int";
3403 p = "l_pid_t";
3406 p = "userland l_int *";
3409 p = "l_int";
3419 p = "userland char *";
3422 p = "l_int";
3432 p = "userland char *";
3435 p = "userland char *";
3445 p = "userland char *";
3455 p = "userland char *";
3458 p = "userland l_uintptr_t *";
3461 p = "userland l_uintptr_t *";
3471 p = "userland char *";
3481 p = "userland l_time_t *";
3491 p = "userland char *";
3494 p = "l_int";
3497 p = "l_dev_t";
3507 p = "userland char *";
3510 p = "l_mode_t";
3520 p = "userland char *";
3523 p = "l_uid16_t";
3526 p = "l_gid16_t";
3536 p = "userland char *";
3539 p = "userland struct l_old_stat *";
3549 p = "l_uint";
3552 p = "l_off_t";
3555 p = "l_int";
3568 p = "userland char *";
3571 p = "userland char *";
3574 p = "userland char *";
3577 p = "l_ulong";
3580 p = "userland void *";
3590 p = "userland char *";
3600 p = "l_uid16_t";
3616 p = "l_long";
3619 p = "l_long";
3622 p = "l_long";
3625 p = "l_long";
3635 p = "l_uint";
3648 p = "userland char *";
3651 p = "userland struct l_utimbuf *";
3661 p = "userland char *";
3664 p = "l_int";
3674 p = "l_int";
3687 p = "l_int";
3690 p = "l_int";
3700 p = "userland char *";
3703 p = "userland char *";
3713 p = "userland char *";
3716 p = "l_int";
3726 p = "userland char *";
3736 p = "u_int";
3746 p = "userland l_int *";
3756 p = "userland struct l_times_argv *";
3766 p = "l_ulong";
3776 p = "l_gid16_t";
3789 p = "l_int";
3792 p = "l_handler_t";
3808 p = "userland char *";
3818 p = "userland char *";
3821 p = "l_int";
3831 p = "l_uint";
3834 p = "l_uint";
3837 p = "uintptr_t";
3847 p = "l_uint";
3850 p = "l_uint";
3853 p = "uintptr_t";
3863 p = "int";
3866 p = "int";
3879 p = "int";
3889 p = "userland char *";
3899 p = "l_dev_t";
3902 p = "userland struct l_ustat *";
3912 p = "u_int";
3915 p = "u_int";
3934 p = "l_int";
3937 p = "userland l_osigaction_t *";
3940 p = "userland l_osigaction_t *";
3953 p = "l_osigset_t";
3963 p = "l_uid16_t";
3966 p = "l_uid16_t";
3976 p = "l_gid16_t";
3979 p = "l_gid16_t";
3989 p = "l_int";
3992 p = "l_int";
3995 p = "l_osigset_t";
4005 p = "userland l_osigset_t *";
4015 p = "userland char *";
4018 p = "u_int";
4028 p = "l_uint";
4031 p = "userland struct l_rlimit *";
4041 p = "l_uint";
4044 p = "userland struct l_rlimit *";
4054 p = "int";
4057 p = "userland struct l_rusage *";
4067 p = "userland struct l_timeval *";
4070 p = "userland struct timezone *";
4080 p = "userland struct l_timeval *";
4083 p = "userland struct timezone *";
4093 p = "l_uint";
4096 p = "userland l_gid16_t *";
4106 p = "l_uint";
4109 p = "userland l_gid16_t *";
4119 p = "userland struct l_old_select_argv *";
4129 p = "userland char *";
4132 p = "userland char *";
4142 p = "userland char *";
4145 p = "userland struct l_old_stat *";
4155 p = "userland char *";
4158 p = "userland char *";
4161 p = "l_int";
4171 p = "userland char *";
4181 p = "l_int";
4184 p = "l_int";
4187 p = "l_uint";
4190 p = "userland void *";
4200 p = "l_uint";
4203 p = "userland struct l_dirent *";
4206 p = "l_uint";
4216 p = "userland struct l_mmap_argv *";
4226 p = "caddr_t";
4229 p = "int";
4239 p = "userland char *";
4242 p = "l_ulong";
4252 p = "int";
4255 p = "long";
4265 p = "int";
4268 p = "int";
4278 p = "int";
4281 p = "int";
4284 p = "int";
4294 p = "int";
4297 p = "int";
4307 p = "int";
4310 p = "int";
4313 p = "int";
4323 p = "userland char *";
4326 p = "userland struct l_statfs_buf *";
4336 p = "l_uint";
4339 p = "userland struct l_statfs_buf *";
4349 p = "l_int";
4352 p = "l_ulong";
4362 p = "l_int";
4365 p = "userland char *";
4368 p = "l_int";
4378 p = "l_int";
4381 p = "userland struct l_itimerval *";
4384 p = "userland struct l_itimerval *";
4394 p = "l_int";
4397 p = "userland struct l_itimerval *";
4407 p = "userland char *";
4410 p = "userland struct l_newstat *";
4420 p = "userland char *";
4423 p = "userland struct l_newstat *";
4433 p = "l_uint";
4436 p = "userland struct l_newstat *";
4449 p = "l_int";
4462 p = "l_pid_t";
4465 p = "userland l_int *";
4468 p = "l_int";
4471 p = "userland struct l_rusage *";
4484 p = "userland struct l_sysinfo *";
4494 p = "l_uint";
4497 p = "l_int";
4500 p = "l_int";
4503 p = "l_uint";
4506 p = "l_uintptr_t";
4509 p = "l_uint";
4519 p = "int";
4529 p = "userland struct l_sigframe *";
4539 p = "l_ulong";
4542 p = "l_ulong";
4545 p = "userland l_int *";
4548 p = "l_ulong";
4551 p = "userland l_int *";
4561 p = "userland char *";
4564 p = "int";
4574 p = "userland struct l_new_utsname *";
4587 p = "caddr_t";
4590 p = "int";
4593 p = "int";
4603 p = "l_int";
4606 p = "userland l_osigset_t *";
4609 p = "userland l_osigset_t *";
4628 p = "int";
4638 p = "int";
4651 p = "l_int";
4654 p = "l_ulong";
4657 p = "l_ulong";
4667 p = "l_uint";
4677 p = "l_uid16_t";
4687 p = "l_gid16_t";
4697 p = "l_int";
4700 p = "l_ulong";
4703 p = "l_ulong";
4706 p = "userland l_loff_t *";
4709 p = "l_uint";
4719 p = "l_uint";
4722 p = "userland void *";
4725 p = "l_uint";
4735 p = "l_int";
4738 p = "userland l_fd_set *";
4741 p = "userland l_fd_set *";
4744 p = "userland l_fd_set *";
4747 p = "userland struct l_timeval *";
4757 p = "int";
4760 p = "int";
4770 p = "l_ulong";
4773 p = "l_size_t";
4776 p = "l_int";
4786 p = "l_ulong";
4789 p = "userland struct iovec32 *";
4792 p = "l_ulong";
4802 p = "l_ulong";
4805 p = "userland struct iovec32 *";
4808 p = "l_ulong";
4818 p = "l_pid_t";
4828 p = "l_uint";
4838 p = "userland struct l___sysctl_args *";
4848 p = "userland const void *";
4851 p = "size_t";
4861 p = "userland const void *";
4864 p = "size_t";
4874 p = "int";
4887 p = "l_pid_t";
4890 p = "userland struct sched_param *";
4900 p = "l_pid_t";
4903 p = "userland struct sched_param *";
4913 p = "l_pid_t";
4916 p = "l_int";
4919 p = "userland struct sched_param *";
4929 p = "l_pid_t";
4942 p = "l_int";
4952 p = "l_int";
4962 p = "l_pid_t";
4965 p = "userland struct l_timespec *";
4975 p = "userland const struct l_timespec *";
4978 p = "userland struct l_timespec *";
4988 p = "l_ulong";
4991 p = "l_ulong";
4994 p = "l_ulong";
4997 p = "l_ulong";
5000 p = "l_ulong";
5010 p = "l_uid16_t";
5013 p = "l_uid16_t";
5016 p = "l_uid16_t";
5026 p = "userland l_uid16_t *";
5029 p = "userland l_uid16_t *";
5032 p = "userland l_uid16_t *";
5042 p = "userland struct pollfd *";
5045 p = "unsigned int";
5048 p = "int";
5058 p = "l_gid16_t";
5061 p = "l_gid16_t";
5064 p = "l_gid16_t";
5074 p = "userland l_gid16_t *";
5077 p = "userland l_gid16_t *";
5080 p = "userland l_gid16_t *";
5090 p = "l_int";
5093 p = "l_uintptr_t";
5096 p = "l_uintptr_t";
5099 p = "l_uintptr_t";
5102 p = "l_uintptr_t";
5112 p = "userland struct l_ucontext *";
5122 p = "l_int";
5125 p = "userland l_sigaction_t *";
5128 p = "userland l_sigaction_t *";
5131 p = "l_size_t";
5141 p = "l_int";
5144 p = "userland l_sigset_t *";
5147 p = "userland l_sigset_t *";
5150 p = "l_size_t";
5160 p = "userland l_sigset_t *";
5163 p = "l_size_t";
5173 p = "userland l_sigset_t *";
5176 p = "userland l_siginfo_t *";
5179 p = "userland struct l_timespec *";
5182 p = "l_size_t";
5192 p = "l_pid_t";
5195 p = "l_int";
5198 p = "userland l_siginfo_t *";
5208 p = "userland l_sigset_t *";
5211 p = "l_size_t";
5221 p = "l_uint";
5224 p = "userland char *";
5227 p = "l_size_t";
5230 p = "uint32_t";
5233 p = "uint32_t";
5243 p = "l_uint";
5246 p = "userland char *";
5249 p = "l_size_t";
5252 p = "uint32_t";
5255 p = "uint32_t";
5265 p = "userland char *";
5268 p = "l_uid16_t";
5271 p = "l_gid16_t";
5281 p = "userland char *";
5284 p = "l_ulong";
5294 p = "userland struct l_user_cap_header *";
5297 p = "userland struct l_user_cap_data *";
5307 p = "userland struct l_user_cap_header *";
5310 p = "userland struct l_user_cap_data *";
5320 p = "userland l_stack_t *";
5323 p = "userland l_stack_t *";
5333 p = "l_int";
5336 p = "l_int";
5339 p = "userland l_off_t *";
5342 p = "l_size_t";
5355 p = "l_uint";
5358 p = "userland struct l_rlimit *";
5368 p = "l_ulong";
5371 p = "l_ulong";
5374 p = "l_ulong";
5377 p = "l_ulong";
5380 p = "l_ulong";
5383 p = "l_ulong";
5393 p = "userland char *";
5396 p = "uint32_t";
5399 p = "uint32_t";
5409 p = "l_uint";
5412 p = "uint32_t";
5415 p = "uint32_t";
5425 p = "userland const char *";
5428 p = "userland struct l_stat64 *";
5438 p = "userland const char *";
5441 p = "userland struct l_stat64 *";
5451 p = "l_int";
5454 p = "userland struct l_stat64 *";
5464 p = "userland char *";
5467 p = "l_uid_t";
5470 p = "l_gid_t";
5492 p = "uid_t";
5495 p = "uid_t";
5505 p = "gid_t";
5508 p = "gid_t";
5518 p = "l_int";
5521 p = "userland l_gid_t *";
5531 p = "l_int";
5534 p = "userland l_gid_t *";
5547 p = "uid_t";
5550 p = "uid_t";
5553 p = "uid_t";
5563 p = "userland uid_t *";
5566 p = "userland uid_t *";
5569 p = "userland uid_t *";
5579 p = "gid_t";
5582 p = "gid_t";
5585 p = "gid_t";
5595 p = "userland gid_t *";
5598 p = "userland gid_t *";
5601 p = "userland gid_t *";
5611 p = "userland char *";
5614 p = "l_uid_t";
5617 p = "l_gid_t";
5627 p = "uid_t";
5637 p = "gid_t";
5647 p = "l_uid_t";
5657 p = "l_gid_t";
5667 p = "userland char *";
5670 p = "userland char *";
5680 p = "l_ulong";
5683 p = "l_size_t";
5686 p = "userland u_char *";
5696 p = "userland void *";
5699 p = "size_t";
5702 p = "int";
5712 p = "l_uint";
5715 p = "userland void *";
5718 p = "l_uint";
5728 p = "l_uint";
5731 p = "l_uint";
5734 p = "uintptr_t";
5747 p = "userland const char *";
5750 p = "userland const char *";
5753 p = "userland void *";
5756 p = "l_size_t";
5759 p = "l_int";
5769 p = "userland const char *";
5772 p = "userland const char *";
5775 p = "userland void *";
5778 p = "l_size_t";
5781 p = "l_int";
5791 p = "l_int";
5794 p = "userland const char *";
5797 p = "userland void *";
5800 p = "l_size_t";
5803 p = "l_int";
5813 p = "userland const char *";
5816 p = "userland const char *";
5819 p = "userland void *";
5822 p = "l_size_t";
5832 p = "userland const char *";
5835 p = "userland const char *";
5838 p = "userland void *";
5841 p = "l_size_t";
5851 p = "l_int";
5854 p = "userland const char *";
5857 p = "userland void *";
5860 p = "l_size_t";
5870 p = "userland const char *";
5873 p = "userland char *";
5876 p = "l_size_t";
5886 p = "userland const char *";
5889 p = "userland char *";
5892 p = "l_size_t";
5902 p = "l_int";
5905 p = "userland char *";
5908 p = "l_size_t";
5918 p = "userland const char *";
5921 p = "userland const char *";
5931 p = "userland const char *";
5934 p = "userland const char *";
5944 p = "l_int";
5947 p = "userland const char *";
5957 p = "int";
5960 p = "int";
5970 p = "l_int";
5973 p = "l_int";
5976 p = "userland l_loff_t *";
5979 p = "l_size_t";
5989 p = "userland uint32_t *";
5992 p = "l_int";
5995 p = "uint32_t";
5998 p = "userland struct l_timespec *";
6001 p = "userland uint32_t *";
6004 p = "uint32_t";
6014 p = "l_pid_t";
6017 p = "l_uint";
6020 p = "userland l_ulong *";
6030 p = "l_pid_t";
6033 p = "l_uint";
6036 p = "userland l_ulong *";
6046 p = "userland struct l_user_desc *";
6056 p = "int";
6059 p = "uint32_t";
6062 p = "uint32_t";
6065 p = "l_size_t";
6068 p = "int";
6078 p = "int";
6091 p = "l_int";
6101 p = "l_int";
6104 p = "l_int";
6107 p = "l_int";
6110 p = "userland struct epoll_event *";
6120 p = "l_int";
6123 p = "userland struct epoll_event *";
6126 p = "l_int";
6129 p = "l_int";
6142 p = "userland int *";
6152 p = "clockid_t";
6155 p = "userland struct l_sigevent *";
6158 p = "userland l_timer_t *";
6168 p = "l_timer_t";
6171 p = "l_int";
6174 p = "userland const struct itimerspec *";
6177 p = "userland struct itimerspec *";
6187 p = "l_timer_t";
6190 p = "userland struct itimerspec *";
6200 p = "l_timer_t";
6210 p = "l_timer_t";
6220 p = "clockid_t";
6223 p = "userland struct l_timespec *";
6233 p = "clockid_t";
6236 p = "userland struct l_timespec *";
6246 p = "clockid_t";
6249 p = "userland struct l_timespec *";
6259 p = "clockid_t";
6262 p = "int";
6265 p = "userland struct l_timespec *";
6268 p = "userland struct l_timespec *";
6278 p = "userland char *";
6281 p = "size_t";
6284 p = "userland struct l_statfs64_buf *";
6294 p = "l_uint";
6297 p = "size_t";
6300 p = "userland struct l_statfs64_buf *";
6310 p = "int";
6313 p = "int";
6316 p = "int";
6326 p = "userland char *";
6329 p = "userland struct l_timeval *";
6339 p = "int";
6342 p = "uint32_t";
6345 p = "uint32_t";
6348 p = "uint32_t";
6351 p = "uint32_t";
6354 p = "int";
6373 p = "userland const char *";
6376 p = "l_int";
6379 p = "l_mode_t";
6382 p = "userland struct mq_attr *";
6392 p = "userland const char *";
6402 p = "l_mqd_t";
6405 p = "userland const char *";
6408 p = "l_size_t";
6411 p = "l_uint";
6414 p = "userland const struct l_timespec *";
6424 p = "l_mqd_t";
6427 p = "userland char *";
6430 p = "l_size_t";
6433 p = "userland l_uint *";
6436 p = "userland const struct l_timespec *";
6446 p = "l_mqd_t";
6449 p = "userland const struct l_sigevent *";
6459 p = "l_mqd_t";
6462 p = "userland const struct mq_attr *";
6465 p = "userland struct mq_attr *";
6478 p = "int";
6481 p = "l_pid_t";
6484 p = "userland l_siginfo_t *";
6487 p = "int";
6490 p = "userland struct l_rusage *";
6509 p = "l_int";
6512 p = "l_int";
6515 p = "l_int";
6525 p = "l_int";
6528 p = "l_int";
6550 p = "l_int";
6553 p = "userland const char *";
6556 p = "l_int";
6559 p = "l_int";
6569 p = "l_int";
6572 p = "userland const char *";
6575 p = "l_int";
6585 p = "l_int";
6588 p = "userland const char *";
6591 p = "l_int";
6594 p = "l_dev_t";
6604 p = "l_int";
6607 p = "userland const char *";
6610 p = "l_uid16_t";
6613 p = "l_gid16_t";
6616 p = "l_int";
6626 p = "l_int";
6629 p = "userland char *";
6632 p = "userland struct l_timeval *";
6642 p = "l_int";
6645 p = "userland char *";
6648 p = "userland struct l_stat64 *";
6651 p = "l_int";
6661 p = "l_int";
6664 p = "userland const char *";
6667 p = "l_int";
6677 p = "l_int";
6680 p = "userland const char *";
6683 p = "l_int";
6686 p = "userland const char *";
6696 p = "l_int";
6699 p = "userland const char *";
6702 p = "l_int";
6705 p = "userland const char *";
6708 p = "l_int";
6718 p = "userland const char *";
6721 p = "l_int";
6724 p = "userland const char *";
6734 p = "l_int";
6737 p = "userland const char *";
6740 p = "userland char *";
6743 p = "l_int";
6753 p = "l_int";
6756 p = "userland const char *";
6759 p = "l_mode_t";
6769 p = "l_int";
6772 p = "userland const char *";
6775 p = "l_int";
6785 p = "l_int";
6788 p = "userland l_fd_set *";
6791 p = "userland l_fd_set *";
6794 p = "userland l_fd_set *";
6797 p = "userland struct l_timespec *";
6800 p = "userland l_uintptr_t *";
6810 p = "userland struct pollfd *";
6813 p = "uint32_t";
6816 p = "userland struct l_timespec *";
6819 p = "userland l_sigset_t *";
6822 p = "l_size_t";
6835 p = "userland struct linux_robust_list_head *";
6838 p = "l_size_t";
6848 p = "l_int";
6851 p = "userland struct linux_robust_list_head **";
6854 p = "userland l_size_t *";
6864 p = "int";
6867 p = "userland l_loff_t *";
6870 p = "int";
6873 p = "userland l_loff_t *";
6876 p = "l_size_t";
6879 p = "l_uint";
6889 p = "l_int";
6892 p = "uint32_t";
6895 p = "uint32_t";
6898 p = "uint32_t";
6901 p = "uint32_t";
6904 p = "unsigned int";
6923 p = "userland l_uint *";
6926 p = "userland l_uint *";
6929 p = "userland void *";
6939 p = "l_int";
6942 p = "userland struct epoll_event *";
6945 p = "l_int";
6948 p = "l_int";
6951 p = "userland l_sigset_t *";
6954 p = "l_size_t";
6964 p = "l_int";
6967 p = "userland const char *";
6970 p = "userland const struct l_timespec *";
6973 p = "l_int";
6986 p = "l_int";
6989 p = "l_int";
6999 p = "l_uint";
7009 p = "l_int";
7012 p = "l_int";
7015 p = "uint32_t";
7018 p = "uint32_t";
7021 p = "uint32_t";
7024 p = "uint32_t";
7034 p = "l_int";
7037 p = "l_int";
7040 p = "userland const struct l_itimerspec *";
7043 p = "userland struct l_itimerspec *";
7053 p = "l_int";
7056 p = "userland struct l_itimerspec *";
7069 p = "l_uint";
7072 p = "l_int";
7082 p = "l_int";
7092 p = "l_int";
7095 p = "l_int";
7098 p = "l_int";
7108 p = "userland l_int *";
7111 p = "l_int";
7124 p = "l_ulong";
7127 p = "userland struct iovec *";
7130 p = "l_ulong";
7133 p = "l_ulong";
7136 p = "l_ulong";
7146 p = "l_ulong";
7149 p = "userland struct iovec *";
7152 p = "l_ulong";
7155 p = "l_ulong";
7158 p = "l_ulong";
7168 p = "l_pid_t";
7171 p = "l_pid_t";
7174 p = "l_int";
7177 p = "userland l_siginfo_t *";
7190 p = "l_int";
7193 p = "userland struct l_mmsghdr *";
7196 p = "l_uint";
7199 p = "l_uint";
7202 p = "userland struct l_timespec *";
7218 p = "l_pid_t";
7221 p = "l_uint";
7224 p = "userland struct rlimit *";
7227 p = "userland struct rlimit *";
7237 p = "l_int";
7240 p = "userland const char *";
7243 p = "userland struct l_file_handle *";
7246 p = "userland l_int *";
7249 p = "l_int";
7259 p = "l_int";
7262 p = "userland struct l_file_handle *";
7265 p = "l_int";
7278 p = "l_int";
7288 p = "l_int";
7291 p = "userland struct l_mmsghdr *";
7294 p = "l_uint";
7297 p = "l_uint";
7310 p = "l_pid_t";
7313 p = "userland const struct iovec *";
7316 p = "l_ulong";
7319 p = "userland const struct iovec *";
7322 p = "l_ulong";
7325 p = "l_ulong";
7335 p = "l_pid_t";
7338 p = "userland const struct iovec *";
7341 p = "l_ulong";
7344 p = "userland const struct iovec *";
7347 p = "l_ulong";
7350 p = "l_ulong";
7360 p = "l_pid_t";
7363 p = "l_pid_t";
7366 p = "l_int";
7369 p = "l_ulong";
7372 p = "l_ulong";
7382 p = "l_int";
7385 p = "userland const char *";
7388 p = "l_int";
7398 p = "l_pid_t";
7401 p = "userland void *";
7404 p = "l_uint";
7414 p = "l_pid_t";
7417 p = "userland void *";
7420 p = "l_uint";
7423 p = "l_uint";
7433 p = "l_int";
7436 p = "userland const char *";
7439 p = "l_int";
7442 p = "userland const char *";
7445 p = "unsigned int";
7455 p = "l_uint";
7458 p = "l_uint";
7461 p = "userland const char *";
7471 p = "userland char *";
7474 p = "l_size_t";
7477 p = "l_uint";
7487 p = "userland const char *";
7490 p = "l_uint";
7500 p = "l_int";
7503 p = "userland void *";
7506 p = "l_uint";
7516 p = "l_int";
7519 p = "userland const char *";
7522 p = "userland const char **";
7525 p = "userland const char **";
7528 p = "l_int";
7538 p = "l_int";
7541 p = "l_int";
7544 p = "l_int";
7554 p = "l_int";
7557 p = "l_int";
7560 p = "l_int";
7563 p = "l_uintptr_t";
7573 p = "l_int";
7576 p = "l_uintptr_t";
7579 p = "l_int";
7589 p = "l_int";
7592 p = "l_uintptr_t";
7595 p = "l_int";
7605 p = "l_int";
7608 p = "l_int";
7618 p = "l_int";
7621 p = "l_uintptr_t";
7624 p = "l_uintptr_t";
7627 p = "l_int";
7637 p = "l_int";
7640 p = "l_int";
7643 p = "l_int";
7646 p = "l_uintptr_t";
7649 p = "l_uintptr_t";
7659 p = "l_int";
7662 p = "l_int";
7665 p = "l_int";
7668 p = "l_uintptr_t";
7671 p = "l_int";
7681 p = "l_int";
7684 p = "l_uintptr_t";
7687 p = "l_uintptr_t";
7697 p = "l_int";
7700 p = "l_uintptr_t";
7703 p = "l_uintptr_t";
7713 p = "l_int";
7716 p = "l_uintptr_t";
7719 p = "l_int";
7722 p = "l_int";
7725 p = "l_uintptr_t";
7728 p = "l_int";
7738 p = "l_int";
7741 p = "l_uintptr_t";
7744 p = "l_int";
7754 p = "l_int";
7757 p = "l_uintptr_t";
7760 p = "l_size_t";
7763 p = "l_int";
7766 p = "l_uintptr_t";
7769 p = "l_uintptr_t";
7779 p = "l_int";
7782 p = "l_uintptr_t";
7785 p = "l_int";
7795 p = "l_int";
7798 p = "l_int";
7808 p = "l_int";
7818 p = "l_int";
7821 p = "l_int";
7831 p = "l_ulong";
7834 p = "l_size_t";
7837 p = "l_int";
7847 p = "l_int";
7850 p = "userland l_loff_t *";
7853 p = "l_int";
7856 p = "userland l_loff_t *";
7859 p = "l_size_t";
7862 p = "l_uint";
7872 p = "l_ulong";
7875 p = "userland const struct iovec *";
7878 p = "l_ulong";
7881 p = "l_ulong";
7884 p = "l_ulong";
7887 p = "l_int";
7897 p = "l_ulong";
7900 p = "userland const struct iovec *";
7903 p = "l_ulong";
7906 p = "l_ulong";
7909 p = "l_ulong";
7912 p = "l_int";
7922 p = "l_ulong";
7925 p = "l_size_t";
7928 p = "l_ulong";
7931 p = "l_int";
7941 p = "l_ulong";
7944 p = "l_ulong";
7954 p = "l_int";
7964 p = "l_int";
7967 p = "userland const char *";
7970 p = "l_uint";
7973 p = "l_uint";
7976 p = "userland void *";
7986 p = "l_int";
7989 p = "l_ulong";
8002 p = "userland struct linux_rseq *";
8005 p = "uint32_t";
8008 p = "l_int";
8011 p = "uint32_t";
8021 p = "l_key_t";
8024 p = "l_int";
8027 p = "l_int";
8037 p = "l_int";
8040 p = "l_int";
8043 p = "l_int";
8046 p = "union l_semun";
8056 p = "l_key_t";
8059 p = "l_size_t";
8062 p = "l_int";
8072 p = "l_int";
8075 p = "l_int";
8078 p = "userland struct l_shmid_ds *";
8088 p = "l_int";
8091 p = "userland char *";
8094 p = "l_int";
8104 p = "userland char *";
8114 p = "l_key_t";
8117 p = "l_int";
8127 p = "l_int";
8130 p = "userland struct l_msgbuf *";
8133 p = "l_size_t";
8136 p = "l_int";
8146 p = "l_int";
8149 p = "userland struct l_msgbuf *";
8152 p = "l_size_t";
8155 p = "l_long";
8158 p = "l_int";
8168 p = "l_int";
8171 p = "l_int";
8174 p = "userland struct l_msqid_ds *";
8184 p = "clockid_t";
8187 p = "userland struct l_timespec64 *";
8197 p = "clockid_t";
8200 p = "userland struct l_timespec64 *";
8213 p = "clockid_t";
8216 p = "userland struct l_timespec64 *";
8226 p = "clockid_t";
8229 p = "l_int";
8232 p = "userland struct l_timespec64 *";
8235 p = "userland struct l_timespec64 *";
8245 p = "l_timer_t";
8248 p = "userland struct l_itimerspec64 *";
8258 p = "l_timer_t";
8261 p = "l_int";
8264 p = "userland const struct l_itimerspec64 *";
8267 p = "userland struct l_itimerspec64 *";
8277 p = "l_int";
8280 p = "userland struct l_itimerspec64 *";
8290 p = "l_int";
8293 p = "l_int";
8296 p = "userland const struct l_itimerspec64 *";
8299 p = "userland struct l_itimerspec64 *";
8309 p = "l_int";
8312 p = "userland const char *";
8315 p = "userland const struct l_timespec64 *";
8318 p = "l_int";
8328 p = "l_int";
8331 p = "userland l_fd_set *";
8334 p = "userland l_fd_set *";
8337 p = "userland l_fd_set *";
8340 p = "userland struct l_timespec64 *";
8343 p = "userland l_uintptr_t *";
8353 p = "userland struct pollfd *";
8356 p = "uint32_t";
8359 p = "userland struct l_timespec64 *";
8362 p = "userland l_sigset_t *";
8365 p = "l_size_t";
8378 p = "l_int";
8381 p = "userland struct l_mmsghdr *";
8384 p = "l_uint";
8387 p = "l_uint";
8390 p = "userland struct l_timespec64 *";
8406 p = "l_int";
8409 p = "userland struct sembuf *";
8412 p = "l_size_t";
8415 p = "userland struct l_timespec64 *";
8425 p = "userland l_sigset_t *";
8428 p = "userland l_siginfo_t *";
8431 p = "userland struct l_timespec64 *";
8434 p = "l_size_t";
8444 p = "userland uint32_t *";
8447 p = "l_int";
8450 p = "uint32_t";
8453 p = "userland struct l_timespec64 *";
8456 p = "userland uint32_t *";
8459 p = "uint32_t";
8469 p = "l_pid_t";
8472 p = "userland struct l_timespec64 *";
8482 p = "l_int";
8485 p = "l_int";
8488 p = "userland l_siginfo_t *";
8491 p = "l_uint";
8531 p = "userland struct l_user_clone_args *";
8534 p = "l_size_t";
8544 p = "l_uint";
8547 p = "l_uint";
8550 p = "l_uint";
8566 p = "l_int";
8569 p = "userland const char *";
8572 p = "l_int";
8575 p = "l_int";
8588 p = "l_int";
8591 p = "userland struct epoll_event *";
8594 p = "l_int";
8597 p = "userland struct l_timespec64 *";
8600 p = "userland l_sigset_t *";
8603 p = "l_size_t";
8645 if (p != NULL)
8646 strlcpy(desc, p, descsz);
8651 const char *p = NULL;
8656 p = "void";
8663 p = "int";
8668 p = "int";
8673 p = "int";
8678 p = "int";
8683 p = "int";
8688 p = "int";
8693 p = "int";
8698 p = "int";
8703 p = "int";
8708 p = "int";
8713 p = "int";
8718 p = "int";
8723 p = "int";
8728 p = "int";
8733 p = "int";
8738 p = "int";
8745 p = "int";
8750 p = "int";
8755 p = "int";
8764 p = "int";
8769 p = "int";
8776 p = "int";
8781 p = "int";
8786 p = "int";
8793 p = "int";
8798 p = "int";
8803 p = "int";
8808 p = "int";
8813 p = "int";
8818 p = "int";
8823 p = "int";
8828 p = "int";
8833 p = "int";
8840 p = "int";
8849 p = "int";
8854 p = "int";
8859 p = "int";
8864 p = "int";
8869 p = "int";
8876 p = "int";
8881 p = "int";
8886 p = "int";
8891 p = "int";
8902 p = "int";
8909 p = "int";
8914 p = "int";
8919 p = "int";
8924 p = "int";
8929 p = "int";
8934 p = "int";
8939 p = "int";
8944 p = "int";
8949 p = "int";
8954 p = "int";
8959 p = "int";
8964 p = "int";
8969 p = "int";
8974 p = "int";
8979 p = "int";
8984 p = "int";
8989 p = "int";
8994 p = "int";
8999 p = "int";
9004 p = "int";
9009 p = "int";
9014 p = "int";
9019 p = "int";
9024 p = "int";
9029 p = "int";
9034 p = "int";
9039 p = "int";
9044 p = "int";
9049 p = "int";
9054 p = "int";
9059 p = "int";
9064 p = "int";
9069 p = "int";
9074 p = "int";
9079 p = "int";
9084 p = "int";
9089 p = "int";
9096 p = "int";
9103 p = "int";
9110 p = "int";
9115 p = "int";
9120 p = "int";
9125 p = "int";
9130 p = "int";
9135 p = "int";
9140 p = "int";
9147 p = "int";
9152 p = "int";
9163 p = "int";
9168 p = "int";
9175 p = "int";
9180 p = "int";
9185 p = "int";
9190 p = "int";
9195 p = "int";
9200 p = "int";
9205 p = "int";
9210 p = "int";
9215 p = "int";
9220 p = "int";
9225 p = "int";
9230 p = "int";
9235 p = "int";
9240 p = "int";
9245 p = "int";
9250 p = "int";
9255 p = "int";
9262 p = "int";
9267 p = "int";
9272 p = "int";
9277 p = "int";
9284 p = "int";
9289 p = "int";
9294 p = "int";
9299 p = "int";
9304 p = "int";
9309 p = "int";
9314 p = "int";
9319 p = "int";
9324 p = "int";
9329 p = "int";
9334 p = "int";
9339 p = "int";
9344 p = "int";
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 = "int";
9399 p = "int";
9404 p = "int";
9409 p = "int";
9416 p = "int";
9421 p = "int";
9426 p = "int";
9431 p = "int";
9436 p = "int";
9441 p = "int";
9446 p = "int";
9451 p = "int";
9464 p = "int";
9469 p = "int";
9474 p = "int";
9479 p = "int";
9486 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";
9531 p = "int";
9536 p = "int";
9541 p = "int";
9546 p = "int";
9551 p = "int";
9558 p = "int";
9563 p = "int";
9568 p = "int";
9573 p = "int";
9578 p = "int";
9583 p = "int";
9588 p = "int";
9593 p = "int";
9598 p = "int";
9603 p = "int";
9608 p = "int";
9613 p = "int";
9618 p = "int";
9623 p = "int";
9628 p = "int";
9633 p = "int";
9638 p = "int";
9643 p = "int";
9648 p = "int";
9653 p = "int";
9660 p = "int";
9665 p = "int";
9670 p = "int";
9677 p = "int";
9682 p = "int";
9687 p = "int";
9692 p = "int";
9697 p = "int";
9702 p = "int";
9707 p = "int";
9712 p = "int";
9717 p = "int";
9722 p = "int";
9727 p = "int";
9732 p = "int";
9737 p = "int";
9742 p = "int";
9747 p = "int";
9758 p = "int";
9763 p = "int";
9768 p = "int";
9773 p = "int";
9778 p = "int";
9783 p = "int";
9790 p = "int";
9801 p = "int";
9806 p = "int";
9819 p = "int";
9824 p = "int";
9829 p = "int";
9834 p = "int";
9839 p = "int";
9844 p = "int";
9849 p = "int";
9854 p = "int";
9859 p = "int";
9864 p = "int";
9869 p = "int";
9874 p = "int";
9879 p = "int";
9884 p = "int";
9889 p = "int";
9896 p = "int";
9901 p = "int";
9906 p = "int";
9911 p = "int";
9922 p = "int";
9927 p = "int";
9932 p = "int";
9939 p = "int";
9944 p = "int";
9949 p = "int";
9954 p = "int";
9959 p = "int";
9966 p = "int";
9971 p = "int";
9976 p = "int";
9981 p = "int";
9988 p = "int";
9993 p = "int";
9998 p = "int";
10005 p = "int";
10014 p = "int";
10019 p = "int";
10024 p = "int";
10031 p = "int";
10036 p = "int";
10043 p = "int";
10048 p = "int";
10053 p = "int";
10058 p = "int";
10063 p = "int";
10068 p = "int";
10073 p = "int";
10078 p = "int";
10083 p = "int";
10088 p = "int";
10093 p = "int";
10098 p = "int";
10103 p = "int";
10108 p = "int";
10113 p = "int";
10118 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";
10235 p = "int";
10240 p = "int";
10245 p = "int";
10250 p = "int";
10255 p = "int";
10260 p = "int";
10265 p = "int";
10270 p = "int";
10275 p = "int";
10280 p = "int";
10285 p = "int";
10290 p = "int";
10295 p = "int";
10302 p = "int";
10307 p = "int";
10312 p = "int";
10317 p = "int";
10322 p = "int";
10327 p = "int";
10332 p = "int";
10337 p = "int";
10342 p = "int";
10349 p = "int";
10358 p = "int";
10363 p = "int";
10368 p = "int";
10373 p = "int";
10378 p = "int";
10403 p = "int";
10408 p = "int";
10417 p = "int";
10424 p = "int";
10451 if (p != NULL)
10452 strlcpy(desc, p, descsz);