Lines Matching defs:p

17 		const struct sys_read_args *p = params;
18 iarg[0] = SCARG(p, fd); /* int */
19 uarg[1] = (intptr_t) SCARG(p, buf); /* void * */
20 uarg[2] = SCARG(p, nbyte); /* size_t */
26 const struct sys_write_args *p = params;
27 iarg[0] = SCARG(p, fd); /* int */
28 uarg[1] = (intptr_t) SCARG(p, buf); /* const void * */
29 uarg[2] = SCARG(p, nbyte); /* size_t */
35 const struct linux_sys_open_args *p = params;
36 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
37 iarg[1] = SCARG(p, flags); /* int */
38 iarg[2] = SCARG(p, mode); /* linux_umode_t */
44 const struct sys_close_args *p = params;
45 iarg[0] = SCARG(p, fd); /* int */
51 const struct linux_sys_stat64_args *p = params;
52 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
53 uarg[1] = (intptr_t) SCARG(p, sp); /* struct linux_stat64 * */
59 const struct linux_sys_fstat64_args *p = params;
60 iarg[0] = SCARG(p, fd); /* int */
61 uarg[1] = (intptr_t) SCARG(p, sp); /* struct linux_stat64 * */
67 const struct linux_sys_lstat64_args *p = params;
68 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
69 uarg[1] = (intptr_t) SCARG(p, sp); /* struct linux_stat64 * */
75 const struct sys_poll_args *p = params;
76 uarg[0] = (intptr_t) SCARG(p, fds); /* struct pollfd * */
77 uarg[1] = SCARG(p, nfds); /* u_int */
78 iarg[2] = SCARG(p, timeout); /* int */
84 const struct compat_43_sys_lseek_args *p = params;
85 iarg[0] = SCARG(p, fd); /* int */
86 iarg[1] = SCARG(p, offset); /* long */
87 iarg[2] = SCARG(p, whence); /* int */
93 const struct linux_sys_mmap_args *p = params;
94 uarg[0] = SCARG(p, addr); /* unsigned long */
95 uarg[1] = SCARG(p, len); /* size_t */
96 iarg[2] = SCARG(p, prot); /* int */
97 iarg[3] = SCARG(p, flags); /* int */
98 iarg[4] = SCARG(p, fd); /* int */
99 iarg[5] = SCARG(p, offset); /* linux_off_t */
105 const struct linux_sys_mprotect_args *p = params;
106 uarg[0] = (intptr_t) SCARG(p, start); /* const void * */
107 uarg[1] = SCARG(p, len); /* unsigned long */
108 iarg[2] = SCARG(p, prot); /* int */
114 const struct sys_munmap_args *p = params;
115 uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
116 uarg[1] = SCARG(p, len); /* size_t */
122 const struct linux_sys_brk_args *p = params;
123 uarg[0] = (intptr_t) SCARG(p, nsize); /* char * */
129 const struct linux_sys_rt_sigaction_args *p = params;
130 iarg[0] = SCARG(p, signum); /* int */
131 uarg[1] = (intptr_t) SCARG(p, nsa); /* const struct linux_sigaction * */
132 uarg[2] = (intptr_t) SCARG(p, osa); /* struct linux_sigaction * */
133 uarg[3] = SCARG(p, sigsetsize); /* size_t */
139 const struct linux_sys_rt_sigprocmask_args *p = params;
140 iarg[0] = SCARG(p, how); /* int */
141 uarg[1] = (intptr_t) SCARG(p, set); /* const linux_sigset_t * */
142 uarg[2] = (intptr_t) SCARG(p, oset); /* linux_sigset_t * */
143 uarg[3] = SCARG(p, sigsetsize); /* size_t */
154 const struct linux_sys_ioctl_args *p = params;
155 iarg[0] = SCARG(p, fd); /* int */
156 uarg[1] = SCARG(p, com); /* u_long */
157 uarg[2] = (intptr_t) SCARG(p, data); /* void * */
163 const struct linux_sys_pread_args *p = params;
164 iarg[0] = SCARG(p, fd); /* int */
165 uarg[1] = (intptr_t) SCARG(p, buf); /* char * */
166 uarg[2] = SCARG(p, nbyte); /* size_t */
167 iarg[3] = SCARG(p, offset); /* off_t */
173 const struct linux_sys_pwrite_args *p = params;
174 iarg[0] = SCARG(p, fd); /* int */
175 uarg[1] = (intptr_t) SCARG(p, buf); /* char * */
176 uarg[2] = SCARG(p, nbyte); /* size_t */
177 iarg[3] = SCARG(p, offset); /* off_t */
183 const struct sys_readv_args *p = params;
184 iarg[0] = SCARG(p, fd); /* int */
185 uarg[1] = (intptr_t) SCARG(p, iovp); /* const struct iovec * */
186 iarg[2] = SCARG(p, iovcnt); /* int */
192 const struct sys_writev_args *p = params;
193 iarg[0] = SCARG(p, fd); /* int */
194 uarg[1] = (intptr_t) SCARG(p, iovp); /* const struct iovec * */
195 iarg[2] = SCARG(p, iovcnt); /* int */
201 const struct sys_access_args *p = params;
202 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
203 iarg[1] = SCARG(p, flags); /* int */
209 const struct linux_sys_pipe_args *p = params;
210 uarg[0] = (intptr_t) SCARG(p, pfds); /* int * */
216 const struct linux_sys_select_args *p = params;
217 iarg[0] = SCARG(p, nfds); /* int */
218 uarg[1] = (intptr_t) SCARG(p, readfds); /* fd_set * */
219 uarg[2] = (intptr_t) SCARG(p, writefds); /* fd_set * */
220 uarg[3] = (intptr_t) SCARG(p, exceptfds); /* fd_set * */
221 uarg[4] = (intptr_t) SCARG(p, timeout); /* struct timeval50 * */
232 const struct linux_sys_mremap_args *p = params;
233 uarg[0] = (intptr_t) SCARG(p, old_address); /* void * */
234 uarg[1] = SCARG(p, old_size); /* size_t */
235 uarg[2] = SCARG(p, new_size); /* size_t */
236 uarg[3] = SCARG(p, flags); /* u_long */
242 const struct sys___msync13_args *p = params;
243 uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
244 uarg[1] = SCARG(p, len); /* size_t */
245 iarg[2] = SCARG(p, flags); /* int */
251 const struct sys_mincore_args *p = params;
252 uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
253 uarg[1] = SCARG(p, len); /* size_t */
254 uarg[2] = (intptr_t) SCARG(p, vec); /* char * */
260 const struct sys_madvise_args *p = params;
261 uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
262 uarg[1] = SCARG(p, len); /* size_t */
263 iarg[2] = SCARG(p, behav); /* int */
270 const struct linux_sys_shmget_args *p = params;
271 iarg[0] = SCARG(p, key); /* key_t */
272 uarg[1] = SCARG(p, size); /* size_t */
273 iarg[2] = SCARG(p, shmflg); /* int */
279 const struct sys_shmat_args *p = params;
280 iarg[0] = SCARG(p, shmid); /* int */
281 uarg[1] = (intptr_t) SCARG(p, shmaddr); /* void * */
282 iarg[2] = SCARG(p, shmflg); /* int */
288 const struct linux_sys_shmctl_args *p = params;
289 iarg[0] = SCARG(p, shmid); /* int */
290 iarg[1] = SCARG(p, cmd); /* int */
291 uarg[2] = (intptr_t) SCARG(p, buf); /* struct linux_shmid_ds * */
299 const struct sys_dup_args *p = params;
300 iarg[0] = SCARG(p, fd); /* int */
306 const struct sys_dup2_args *p = params;
307 iarg[0] = SCARG(p, from); /* int */
308 iarg[1] = SCARG(p, to); /* int */
319 const struct linux_sys_nanosleep_args *p = params;
320 uarg[0] = (intptr_t) SCARG(p, rqtp); /* const struct linux_timespec * */
321 uarg[1] = (intptr_t) SCARG(p, rmtp); /* struct linux_timespec * */
327 const struct compat_50_sys_getitimer_args *p = params;
328 iarg[0] = SCARG(p, which); /* int */
329 uarg[1] = (intptr_t) SCARG(p, itv); /* struct itimerval50 * */
335 const struct linux_sys_alarm_args *p = params;
336 uarg[0] = SCARG(p, secs); /* unsigned int */
342 const struct compat_50_sys_setitimer_args *p = params;
343 iarg[0] = SCARG(p, which); /* int */
344 uarg[1] = (intptr_t) SCARG(p, itv); /* struct itimerval50 * */
345 uarg[2] = (intptr_t) SCARG(p, oitv); /* struct itimerval50 * */
356 const struct linux_sys_socket_args *p = params;
357 iarg[0] = SCARG(p, domain); /* int */
358 iarg[1] = SCARG(p, type); /* int */
359 iarg[2] = SCARG(p, protocol); /* int */
365 const struct linux_sys_connect_args *p = params;
366 iarg[0] = SCARG(p, s); /* int */
367 uarg[1] = (intptr_t) SCARG(p, name); /* const struct osockaddr * */
368 uarg[2] = SCARG(p, namelen); /* unsigned int */
374 const struct linux_sys_accept_args *p = params;
375 iarg[0] = SCARG(p, s); /* int */
376 uarg[1] = (intptr_t) SCARG(p, name); /* struct osockaddr * */
377 uarg[2] = (intptr_t) SCARG(p, anamelen); /* int * */
383 const struct linux_sys_sendto_args *p = params;
384 iarg[0] = SCARG(p, s); /* int */
385 uarg[1] = (intptr_t) SCARG(p, msg); /* void * */
386 iarg[2] = SCARG(p, len); /* int */
387 iarg[3] = SCARG(p, flags); /* int */
388 uarg[4] = (intptr_t) SCARG(p, to); /* struct osockaddr * */
389 iarg[5] = SCARG(p, tolen); /* int */
395 const struct linux_sys_recvfrom_args *p = params;
396 iarg[0] = SCARG(p, s); /* int */
397 uarg[1] = (intptr_t) SCARG(p, buf); /* void * */
398 uarg[2] = SCARG(p, len); /* size_t */
399 iarg[3] = SCARG(p, flags); /* int */
400 uarg[4] = (intptr_t) SCARG(p, from); /* struct osockaddr * */
401 uarg[5] = (intptr_t) SCARG(p, fromlenaddr); /* unsigned int * */
407 const struct linux_sys_sendmsg_args *p = params;
408 iarg[0] = SCARG(p, s); /* int */
409 uarg[1] = (intptr_t) SCARG(p, msg); /* const struct linux_msghdr * */
410 iarg[2] = SCARG(p, flags); /* int */
416 const struct linux_sys_recvmsg_args *p = params;
417 iarg[0] = SCARG(p, s); /* int */
418 uarg[1] = (intptr_t) SCARG(p, msg); /* struct linux_msghdr * */
419 iarg[2] = SCARG(p, flags); /* int */
425 const struct sys_shutdown_args *p = params;
426 iarg[0] = SCARG(p, s); /* int */
427 iarg[1] = SCARG(p, how); /* int */
433 const struct linux_sys_bind_args *p = params;
434 iarg[0] = SCARG(p, s); /* int */
435 uarg[1] = (intptr_t) SCARG(p, name); /* const struct osockaddr * */
436 uarg[2] = SCARG(p, namelen); /* unsigned int */
442 const struct sys_listen_args *p = params;
443 iarg[0] = SCARG(p, s); /* int */
444 iarg[1] = SCARG(p, backlog); /* int */
450 const struct linux_sys_getsockname_args *p = params;
451 iarg[0] = SCARG(p, fdec); /* int */
452 uarg[1] = (intptr_t) SCARG(p, asa); /* void * */
453 uarg[2] = (intptr_t) SCARG(p, alen); /* int * */
459 const struct linux_sys_getpeername_args *p = params;
460 iarg[0] = SCARG(p, fdes); /* int */
461 uarg[1] = (intptr_t) SCARG(p, asa); /* struct sockaddr * */
462 uarg[2] = (intptr_t) SCARG(p, alen); /* unsigned int * */
468 const struct linux_sys_socketpair_args *p = params;
469 iarg[0] = SCARG(p, domain); /* int */
470 iarg[1] = SCARG(p, type); /* int */
471 iarg[2] = SCARG(p, protocol); /* int */
472 uarg[3] = (intptr_t) SCARG(p, rsv); /* int * */
478 const struct linux_sys_setsockopt_args *p = params;
479 iarg[0] = SCARG(p, s); /* int */
480 iarg[1] = SCARG(p, level); /* int */
481 iarg[2] = SCARG(p, optname); /* int */
482 uarg[3] = (intptr_t) SCARG(p, optval); /* void * */
483 iarg[4] = SCARG(p, optlen); /* int */
489 const struct linux_sys_getsockopt_args *p = params;
490 iarg[0] = SCARG(p, s); /* int */
491 iarg[1] = SCARG(p, level); /* int */
492 iarg[2] = SCARG(p, optname); /* int */
493 uarg[3] = (intptr_t) SCARG(p, optval); /* void * */
494 uarg[4] = (intptr_t) SCARG(p, optlen); /* int * */
500 const struct linux_sys_clone_args *p = params;
501 iarg[0] = SCARG(p, flags); /* int */
502 uarg[1] = (intptr_t) SCARG(p, stack); /* void * */
503 uarg[2] = (intptr_t) SCARG(p, parent_tidptr); /* void * */
504 uarg[3] = (intptr_t) SCARG(p, child_tidptr); /* void * */
505 uarg[4] = (intptr_t) SCARG(p, tls); /* void * */
521 const struct sys_execve_args *p = params;
522 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
523 uarg[1] = (intptr_t) SCARG(p, argp); /* char ** */
524 uarg[2] = (intptr_t) SCARG(p, envp); /* char ** */
530 const struct linux_sys_exit_args *p = params;
531 iarg[0] = SCARG(p, rval); /* int */
537 const struct linux_sys_wait4_args *p = params;
538 iarg[0] = SCARG(p, pid); /* int */
539 uarg[1] = (intptr_t) SCARG(p, status); /* int * */
540 iarg[2] = SCARG(p, options); /* int */
541 uarg[3] = (intptr_t) SCARG(p, rusage); /* struct rusage50 * */
547 const struct linux_sys_kill_args *p = params;
548 iarg[0] = SCARG(p, pid); /* int */
549 iarg[1] = SCARG(p, signum); /* int */
555 const struct linux_sys_uname_args *p = params;
556 uarg[0] = (intptr_t) SCARG(p, up); /* struct linux_utsname * */
563 const struct sys_semget_args *p = params;
564 iarg[0] = SCARG(p, key); /* key_t */
565 iarg[1] = SCARG(p, nsems); /* int */
566 iarg[2] = SCARG(p, semflg); /* int */
572 const struct sys_semop_args *p = params;
573 iarg[0] = SCARG(p, semid); /* int */
574 uarg[1] = (intptr_t) SCARG(p, sops); /* struct sembuf * */
575 uarg[2] = SCARG(p, nsops); /* size_t */
581 const struct linux_sys_semctl_args *p = params;
582 iarg[0] = SCARG(p, semid); /* int */
583 iarg[1] = SCARG(p, semnum); /* int */
584 iarg[2] = SCARG(p, cmd); /* int */
585 uarg[3] = SCARG(p, arg); /* union linux_semun */
594 const struct sys_shmdt_args *p = params;
595 uarg[0] = (intptr_t) SCARG(p, shmaddr); /* const void * */
604 const struct sys_msgget_args *p = params;
605 iarg[0] = SCARG(p, key); /* key_t */
606 iarg[1] = SCARG(p, msgflg); /* int */
612 const struct sys_msgsnd_args *p = params;
613 iarg[0] = SCARG(p, msqid); /* int */
614 uarg[1] = (intptr_t) SCARG(p, msgp); /* void * */
615 uarg[2] = SCARG(p, msgsz); /* size_t */
616 iarg[3] = SCARG(p, msgflg); /* int */
622 const struct sys_msgrcv_args *p = params;
623 iarg[0] = SCARG(p, msqid); /* int */
624 uarg[1] = (intptr_t) SCARG(p, msgp); /* void * */
625 uarg[2] = SCARG(p, msgsz); /* size_t */
626 iarg[3] = SCARG(p, msgtyp); /* long */
627 iarg[4] = SCARG(p, msgflg); /* int */
633 const struct linux_sys_msgctl_args *p = params;
634 iarg[0] = SCARG(p, msqid); /* int */
635 iarg[1] = SCARG(p, cmd); /* int */
636 uarg[2] = (intptr_t) SCARG(p, buf); /* struct linux_msqid_ds * */
644 const struct linux_sys_fcntl_args *p = params;
645 iarg[0] = SCARG(p, fd); /* int */
646 iarg[1] = SCARG(p, cmd); /* int */
647 uarg[2] = (intptr_t) SCARG(p, arg); /* void * */
653 const struct sys_flock_args *p = params;
654 iarg[0] = SCARG(p, fd); /* int */
655 iarg[1] = SCARG(p, how); /* int */
661 const struct sys_fsync_args *p = params;
662 iarg[0] = SCARG(p, fd); /* int */
668 const struct linux_sys_fdatasync_args *p = params;
669 iarg[0] = SCARG(p, fd); /* int */
675 const struct linux_sys_truncate64_args *p = params;
676 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
677 iarg[1] = SCARG(p, length); /* off_t */
683 const struct linux_sys_ftruncate64_args *p = params;
684 uarg[0] = SCARG(p, fd); /* unsigned int */
685 iarg[1] = SCARG(p, length); /* off_t */
691 const struct linux_sys_getdents_args *p = params;
692 iarg[0] = SCARG(p, fd); /* int */
693 uarg[1] = (intptr_t) SCARG(p, dent); /* struct linux_dirent * */
694 uarg[2] = SCARG(p, count); /* unsigned int */
700 const struct sys___getcwd_args *p = params;
701 uarg[0] = (intptr_t) SCARG(p, bufp); /* char * */
702 uarg[1] = SCARG(p, length); /* size_t */
708 const struct sys_chdir_args *p = params;
709 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
715 const struct sys_fchdir_args *p = params;
716 iarg[0] = SCARG(p, fd); /* int */
722 const struct sys___posix_rename_args *p = params;
723 uarg[0] = (intptr_t) SCARG(p, from); /* const char * */
724 uarg[1] = (intptr_t) SCARG(p, to); /* const char * */
730 const struct sys_mkdir_args *p = params;
731 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
732 iarg[1] = SCARG(p, mode); /* linux_umode_t */
738 const struct sys_rmdir_args *p = params;
739 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
745 const struct linux_sys_creat_args *p = params;
746 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
747 iarg[1] = SCARG(p, mode); /* linux_umode_t */
753 const struct sys_link_args *p = params;
754 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
755 uarg[1] = (intptr_t) SCARG(p, link); /* const char * */
761 const struct linux_sys_unlink_args *p = params;
762 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
768 const struct sys_symlink_args *p = params;
769 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
770 uarg[1] = (intptr_t) SCARG(p, link); /* const char * */
776 const struct sys_readlink_args *p = params;
777 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
778 uarg[1] = (intptr_t) SCARG(p, buf); /* char * */
779 iarg[2] = SCARG(p, count); /* int */
785 const struct sys_chmod_args *p = params;
786 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
787 iarg[1] = SCARG(p, mode); /* linux_umode_t */
793 const struct sys_fchmod_args *p = params;
794 iarg[0] = SCARG(p, fd); /* int */
795 iarg[1] = SCARG(p, mode); /* linux_umode_t */
801 const struct sys___posix_chown_args *p = params;
802 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
803 uarg[1] = SCARG(p, uid); /* uid_t */
804 iarg[2] = SCARG(p, gid); /* gid_t */
810 const struct sys___posix_fchown_args *p = params;
811 iarg[0] = SCARG(p, fd); /* int */
812 uarg[1] = SCARG(p, uid); /* uid_t */
813 iarg[2] = SCARG(p, gid); /* gid_t */
819 const struct sys___posix_lchown_args *p = params;
820 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
821 uarg[1] = SCARG(p, uid); /* uid_t */
822 iarg[2] = SCARG(p, gid); /* gid_t */
828 const struct sys_umask_args *p = params;
829 iarg[0] = SCARG(p, newmask); /* int */
835 const struct linux_sys_gettimeofday_args *p = params;
836 uarg[0] = (intptr_t) SCARG(p, tp); /* struct timeval50 * */
837 uarg[1] = (intptr_t) SCARG(p, tzp); /* struct timezone * */
843 const struct linux_sys_getrlimit_args *p = params;
844 iarg[0] = SCARG(p, which); /* int */
845 uarg[1] = (intptr_t) SCARG(p, rlp); /* struct rlimit * */
851 const struct compat_50_sys_getrusage_args *p = params;
852 iarg[0] = SCARG(p, who); /* int */
853 uarg[1] = (intptr_t) SCARG(p, rusage); /* struct rusage50 * */
859 const struct linux_sys_sysinfo_args *p = params;
860 uarg[0] = (intptr_t) SCARG(p, arg); /* struct linux_sysinfo * */
866 const struct linux_sys_times_args *p = params;
867 uarg[0] = (intptr_t) SCARG(p, tms); /* struct times * */
873 const struct linux_sys_ptrace_args *p = params;
874 iarg[0] = SCARG(p, request); /* long */
875 iarg[1] = SCARG(p, pid); /* long */
876 iarg[2] = SCARG(p, addr); /* long */
877 iarg[3] = SCARG(p, data); /* long */
893 const struct sys_setuid_args *p = params;
894 uarg[0] = SCARG(p, uid); /* uid_t */
900 const struct sys_setgid_args *p = params;
901 iarg[0] = SCARG(p, gid); /* gid_t */
917 const struct sys_setpgid_args *p = params;
918 iarg[0] = SCARG(p, pid); /* int */
919 iarg[1] = SCARG(p, pgid); /* int */
940 const struct sys_setreuid_args *p = params;
941 uarg[0] = SCARG(p, ruid); /* uid_t */
942 uarg[1] = SCARG(p, euid); /* uid_t */
948 const struct sys_setregid_args *p = params;
949 iarg[0] = SCARG(p, rgid); /* gid_t */
950 iarg[1] = SCARG(p, egid); /* gid_t */
956 const struct sys_getgroups_args *p = params;
957 iarg[0] = SCARG(p, gidsetsize); /* int */
958 uarg[1] = (intptr_t) SCARG(p, gidset); /* gid_t * */
964 const struct sys_setgroups_args *p = params;
965 iarg[0] = SCARG(p, gidsetsize); /* int */
966 uarg[1] = (intptr_t) SCARG(p, gidset); /* gid_t * */
972 const struct linux_sys_setresuid_args *p = params;
973 uarg[0] = SCARG(p, ruid); /* uid_t */
974 uarg[1] = SCARG(p, euid); /* uid_t */
975 uarg[2] = SCARG(p, suid); /* uid_t */
981 const struct linux_sys_getresuid_args *p = params;
982 uarg[0] = (intptr_t) SCARG(p, ruid); /* uid_t * */
983 uarg[1] = (intptr_t) SCARG(p, euid); /* uid_t * */
984 uarg[2] = (intptr_t) SCARG(p, suid); /* uid_t * */
990 const struct linux_sys_setresgid_args *p = params;
991 iarg[0] = SCARG(p, rgid); /* gid_t */
992 iarg[1] = SCARG(p, egid); /* gid_t */
993 iarg[2] = SCARG(p, sgid); /* gid_t */
999 const struct linux_sys_getresgid_args *p = params;
1000 uarg[0] = (intptr_t) SCARG(p, rgid); /* gid_t * */
1001 uarg[1] = (intptr_t) SCARG(p, egid); /* gid_t * */
1002 uarg[2] = (intptr_t) SCARG(p, sgid); /* gid_t * */
1008 const struct sys_getpgid_args *p = params;
1009 iarg[0] = SCARG(p, pid); /* pid_t */
1015 const struct linux_sys_setfsuid_args *p = params;
1016 uarg[0] = SCARG(p, uid); /* uid_t */
1022 const struct linux_sys_setfsgid_args *p = params;
1023 iarg[0] = SCARG(p, gid); /* gid_t */
1029 const struct sys_getsid_args *p = params;
1030 iarg[0] = SCARG(p, pid); /* pid_t */
1036 const struct linux_sys_rt_sigpending_args *p = params;
1037 uarg[0] = (intptr_t) SCARG(p, set); /* linux_sigset_t * */
1038 uarg[1] = SCARG(p, sigsetsize); /* size_t */
1044 const struct linux_sys_rt_sigtimedwait_args *p = params;
1045 uarg[0] = (intptr_t) SCARG(p, set); /* const linux_sigset_t * */
1046 uarg[1] = (intptr_t) SCARG(p, info); /* linux_siginfo_t * */
1047 uarg[2] = (intptr_t) SCARG(p, timeout); /* const struct linux_timespec * */
1053 const struct linux_sys_rt_queueinfo_args *p = params;
1054 iarg[0] = SCARG(p, pid); /* int */
1055 iarg[1] = SCARG(p, signum); /* int */
1056 uarg[2] = (intptr_t) SCARG(p, uinfo); /* linux_siginfo_t * */
1062 const struct linux_sys_rt_sigsuspend_args *p = params;
1063 uarg[0] = (intptr_t) SCARG(p, unewset); /* linux_sigset_t * */
1064 uarg[1] = SCARG(p, sigsetsize); /* size_t */
1070 const struct linux_sys_sigaltstack_args *p = params;
1071 uarg[0] = (intptr_t) SCARG(p, ss); /* const struct linux_sigaltstack * */
1072 uarg[1] = (intptr_t) SCARG(p, oss); /* struct linux_sigaltstack * */
1078 const struct linux_sys_utime_args *p = params;
1079 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1080 uarg[1] = (intptr_t) SCARG(p, times); /* struct linux_utimbuf * */
1086 const struct linux_sys_mknod_args *p = params;
1087 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1088 iarg[1] = SCARG(p, mode); /* linux_umode_t */
1089 uarg[2] = SCARG(p, dev); /* unsigned */
1096 const struct linux_sys_uselib_args *p = params;
1097 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1105 const struct linux_sys_personality_args *p = params;
1106 uarg[0] = SCARG(p, per); /* unsigned long */
1112 const struct linux_sys_statfs_args *p = params;
1113 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1114 uarg[1] = (intptr_t) SCARG(p, sp); /* struct linux_statfs * */
1120 const struct linux_sys_fstatfs_args *p = params;
1121 iarg[0] = SCARG(p, fd); /* int */
1122 uarg[1] = (intptr_t) SCARG(p, sp); /* struct linux_statfs * */
1128 const struct linux_sys_getpriority_args *p = params;
1129 iarg[0] = SCARG(p, which); /* int */
1130 iarg[1] = SCARG(p, who); /* int */
1136 const struct sys_setpriority_args *p = params;
1137 iarg[0] = SCARG(p, which); /* int */
1138 iarg[1] = SCARG(p, who); /* int */
1139 iarg[2] = SCARG(p, prio); /* int */
1145 const struct linux_sys_sched_setparam_args *p = params;
1146 iarg[0] = SCARG(p, pid); /* pid_t */
1147 uarg[1] = (intptr_t) SCARG(p, sp); /* const struct linux_sched_param * */
1153 const struct linux_sys_sched_getparam_args *p = params;
1154 iarg[0] = SCARG(p, pid); /* pid_t */
1155 uarg[1] = (intptr_t) SCARG(p, sp); /* struct linux_sched_param * */
1161 const struct linux_sys_sched_setscheduler_args *p = params;
1162 iarg[0] = SCARG(p, pid); /* pid_t */
1163 iarg[1] = SCARG(p, policy); /* int */
1164 uarg[2] = (intptr_t) SCARG(p, sp); /* const struct linux_sched_param * */
1170 const struct linux_sys_sched_getscheduler_args *p = params;
1171 iarg[0] = SCARG(p, pid); /* pid_t */
1177 const struct linux_sys_sched_get_priority_max_args *p = params;
1178 iarg[0] = SCARG(p, policy); /* int */
1184 const struct linux_sys_sched_get_priority_min_args *p = params;
1185 iarg[0] = SCARG(p, policy); /* int */
1191 const struct sys_mlock_args *p = params;
1192 uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
1193 uarg[1] = SCARG(p, len); /* size_t */
1199 const struct sys_munlock_args *p = params;
1200 uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
1201 uarg[1] = SCARG(p, len); /* size_t */
1207 const struct sys_mlockall_args *p = params;
1208 iarg[0] = SCARG(p, flags); /* int */
1219 const struct linux_sys_modify_ldt_args *p = params;
1220 iarg[0] = SCARG(p, func); /* int */
1221 uarg[1] = (intptr_t) SCARG(p, ptr); /* void * */
1222 uarg[2] = SCARG(p, bytecount); /* size_t */
1228 const struct linux_sys___sysctl_args *p = params;
1229 uarg[0] = (intptr_t) SCARG(p, lsp); /* struct linux___sysctl * */
1235 const struct linux_sys_arch_prctl_args *p = params;
1236 iarg[0] = SCARG(p, code); /* int */
1237 uarg[1] = SCARG(p, addr); /* unsigned long */
1243 const struct linux_sys_setrlimit_args *p = params;
1244 uarg[0] = SCARG(p, which); /* u_int */
1245 uarg[1] = (intptr_t) SCARG(p, rlp); /* struct rlimit * */
1251 const struct sys_chroot_args *p = params;
1252 uarg[0] = (intptr_t) SCARG(p, path); /* char * */
1263 const struct sys_acct_args *p = params;
1264 uarg[0] = (intptr_t) SCARG(p, path); /* char * */
1270 const struct linux_sys_settimeofday_args *p = params;
1271 uarg[0] = (intptr_t) SCARG(p, tp); /* struct timeval50 * */
1272 uarg[1] = (intptr_t) SCARG(p, tzp); /* struct timezone * */
1278 const struct linux_sys_swapon_args *p = params;
1279 uarg[0] = (intptr_t) SCARG(p, name); /* char * */
1285 const struct linux_sys_swapoff_args *p = params;
1286 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1292 const struct linux_sys_reboot_args *p = params;
1293 iarg[0] = SCARG(p, magic1); /* int */
1294 iarg[1] = SCARG(p, magic2); /* int */
1295 iarg[2] = SCARG(p, cmd); /* int */
1296 uarg[3] = (intptr_t) SCARG(p, arg); /* void * */
1302 const struct compat_43_sys_sethostname_args *p = params;
1303 uarg[0] = (intptr_t) SCARG(p, hostname); /* char * */
1304 uarg[1] = SCARG(p, len); /* u_int */
1310 const struct linux_sys_setdomainname_args *p = params;
1311 uarg[0] = (intptr_t) SCARG(p, domainname); /* char * */
1312 iarg[1] = SCARG(p, len); /* int */
1318 const struct linux_sys_iopl_args *p = params;
1319 iarg[0] = SCARG(p, level); /* int */
1325 const struct linux_sys_ioperm_args *p = params;
1326 uarg[0] = SCARG(p, lo); /* unsigned int */
1327 uarg[1] = SCARG(p, hi); /* unsigned int */
1328 iarg[2] = SCARG(p, val); /* int */
1339 const struct linux_sys_readahead_args *p = params;
1340 iarg[0] = SCARG(p, fd); /* int */
1341 iarg[1] = SCARG(p, offset); /* off_t */
1342 uarg[2] = SCARG(p, count); /* size_t */
1348 const struct linux_sys_setxattr_args *p = params;
1349 uarg[0] = (intptr_t) SCARG(p, path); /* char * */
1350 uarg[1] = (intptr_t) SCARG(p, name); /* char * */
1351 uarg[2] = (intptr_t) SCARG(p, value); /* void * */
1352 uarg[3] = SCARG(p, size); /* size_t */
1353 iarg[4] = SCARG(p, flags); /* int */
1359 const struct linux_sys_lsetxattr_args *p = params;
1360 uarg[0] = (intptr_t) SCARG(p, path); /* char * */
1361 uarg[1] = (intptr_t) SCARG(p, name); /* char * */
1362 uarg[2] = (intptr_t) SCARG(p, value); /* void * */
1363 uarg[3] = SCARG(p, size); /* size_t */
1364 iarg[4] = SCARG(p, flags); /* int */
1370 const struct linux_sys_fsetxattr_args *p = params;
1371 iarg[0] = SCARG(p, fd); /* int */
1372 uarg[1] = (intptr_t) SCARG(p, name); /* char * */
1373 uarg[2] = (intptr_t) SCARG(p, value); /* void * */
1374 uarg[3] = SCARG(p, size); /* size_t */
1375 iarg[4] = SCARG(p, flags); /* int */
1381 const struct linux_sys_getxattr_args *p = params;
1382 uarg[0] = (intptr_t) SCARG(p, path); /* char * */
1383 uarg[1] = (intptr_t) SCARG(p, name); /* char * */
1384 uarg[2] = (intptr_t) SCARG(p, value); /* void * */
1385 uarg[3] = SCARG(p, size); /* size_t */
1391 const struct linux_sys_lgetxattr_args *p = params;
1392 uarg[0] = (intptr_t) SCARG(p, path); /* char * */
1393 uarg[1] = (intptr_t) SCARG(p, name); /* char * */
1394 uarg[2] = (intptr_t) SCARG(p, value); /* void * */
1395 uarg[3] = SCARG(p, size); /* size_t */
1401 const struct linux_sys_fgetxattr_args *p = params;
1402 iarg[0] = SCARG(p, fd); /* int */
1403 uarg[1] = (intptr_t) SCARG(p, name); /* char * */
1404 uarg[2] = (intptr_t) SCARG(p, value); /* void * */
1405 uarg[3] = SCARG(p, size); /* size_t */
1411 const struct linux_sys_listxattr_args *p = params;
1412 uarg[0] = (intptr_t) SCARG(p, path); /* char * */
1413 uarg[1] = (intptr_t) SCARG(p, list); /* char * */
1414 uarg[2] = SCARG(p, size); /* size_t */
1420 const struct linux_sys_llistxattr_args *p = params;
1421 uarg[0] = (intptr_t) SCARG(p, path); /* char * */
1422 uarg[1] = (intptr_t) SCARG(p, list); /* char * */
1423 uarg[2] = SCARG(p, size); /* size_t */
1429 const struct linux_sys_flistxattr_args *p = params;
1430 iarg[0] = SCARG(p, fd); /* int */
1431 uarg[1] = (intptr_t) SCARG(p, list); /* char * */
1432 uarg[2] = SCARG(p, size); /* size_t */
1438 const struct linux_sys_removexattr_args *p = params;
1439 uarg[0] = (intptr_t) SCARG(p, path); /* char * */
1440 uarg[1] = (intptr_t) SCARG(p, name); /* char * */
1446 const struct linux_sys_lremovexattr_args *p = params;
1447 uarg[0] = (intptr_t) SCARG(p, path); /* char * */
1448 uarg[1] = (intptr_t) SCARG(p, name); /* char * */
1454 const struct linux_sys_fremovexattr_args *p = params;
1455 iarg[0] = SCARG(p, fd); /* int */
1456 uarg[1] = (intptr_t) SCARG(p, name); /* char * */
1462 const struct linux_sys_tkill_args *p = params;
1463 iarg[0] = SCARG(p, tid); /* int */
1464 iarg[1] = SCARG(p, sig); /* int */
1470 const struct linux_sys_time_args *p = params;
1471 uarg[0] = (intptr_t) SCARG(p, t); /* linux_time_t * */
1477 const struct linux_sys_futex_args *p = params;
1478 uarg[0] = (intptr_t) SCARG(p, uaddr); /* int * */
1479 iarg[1] = SCARG(p, op); /* int */
1480 iarg[2] = SCARG(p, val); /* int */
1481 uarg[3] = (intptr_t) SCARG(p, timeout); /* const struct linux_timespec * */
1482 uarg[4] = (intptr_t) SCARG(p, uaddr2); /* int * */
1483 iarg[5] = SCARG(p, val3); /* int */
1489 const struct linux_sys_sched_setaffinity_args *p = params;
1490 iarg[0] = SCARG(p, pid); /* pid_t */
1491 uarg[1] = SCARG(p, len); /* unsigned int */
1492 uarg[2] = (intptr_t) SCARG(p, mask); /* unsigned long * */
1498 const struct linux_sys_sched_getaffinity_args *p = params;
1499 iarg[0] = SCARG(p, pid); /* pid_t */
1500 uarg[1] = SCARG(p, len); /* unsigned int */
1501 uarg[2] = (intptr_t) SCARG(p, mask); /* unsigned long * */
1507 const struct linux_sys_epoll_create_args *p = params;
1508 iarg[0] = SCARG(p, size); /* int */
1514 const struct linux_sys_getdents64_args *p = params;
1515 iarg[0] = SCARG(p, fd); /* int */
1516 uarg[1] = (intptr_t) SCARG(p, dent); /* struct linux_dirent64 * */
1517 uarg[2] = SCARG(p, count); /* unsigned int */
1523 const struct linux_sys_set_tid_address_args *p = params;
1524 uarg[0] = (intptr_t) SCARG(p, tid); /* int * */
1530 const struct linux_sys_fadvise64_args *p = params;
1531 iarg[0] = SCARG(p, fd); /* int */
1532 iarg[1] = SCARG(p, offset); /* off_t */
1533 uarg[2] = SCARG(p, len); /* size_t */
1534 iarg[3] = SCARG(p, advice); /* int */
1540 const struct linux_sys_timer_create_args *p = params;
1541 iarg[0] = SCARG(p, clockid); /* clockid_t */
1542 uarg[1] = (intptr_t) SCARG(p, evp); /* struct linux_sigevent * */
1543 uarg[2] = (intptr_t) SCARG(p, timerid); /* timer_t * */
1549 const struct linux_sys_timer_settime_args *p = params;
1550 iarg[0] = SCARG(p, timerid); /* timer_t */
1551 iarg[1] = SCARG(p, flags); /* int */
1552 uarg[2] = (intptr_t) SCARG(p, tim); /* const struct linux_itimerspec * */
1553 uarg[3] = (intptr_t) SCARG(p, otim); /* struct linux_itimerspec * */
1559 const struct linux_sys_timer_gettime_args *p = params;
1560 iarg[0] = SCARG(p, timerid); /* timer_t */
1561 uarg[1] = (intptr_t) SCARG(p, tim); /* struct linux_itimerspec * */
1567 const struct sys_timer_getoverrun_args *p = params;
1568 iarg[0] = SCARG(p, timerid); /* timer_t */
1574 const struct sys_timer_delete_args *p = params;
1575 iarg[0] = SCARG(p, timerid); /* timer_t */
1581 const struct linux_sys_clock_settime_args *p = params;
1582 iarg[0] = SCARG(p, which); /* clockid_t */
1583 uarg[1] = (intptr_t) SCARG(p, tp); /* struct linux_timespec * */
1589 const struct linux_sys_clock_gettime_args *p = params;
1590 iarg[0] = SCARG(p, which); /* clockid_t */
1591 uarg[1] = (intptr_t) SCARG(p, tp); /* struct linux_timespec * */
1597 const struct linux_sys_clock_getres_args *p = params;
1598 iarg[0] = SCARG(p, which); /* clockid_t */
1599 uarg[1] = (intptr_t) SCARG(p, tp); /* struct linux_timespec * */
1605 const struct linux_sys_clock_nanosleep_args *p = params;
1606 iarg[0] = SCARG(p, which); /* clockid_t */
1607 iarg[1] = SCARG(p, flags); /* int */
1608 uarg[2] = (intptr_t) SCARG(p, rqtp); /* struct linux_timespec * */
1609 uarg[3] = (intptr_t) SCARG(p, rmtp); /* struct linux_timespec * */
1615 const struct linux_sys_exit_group_args *p = params;
1616 iarg[0] = SCARG(p, error_code); /* int */
1622 const struct linux_sys_epoll_wait_args *p = params;
1623 iarg[0] = SCARG(p, epfd); /* int */
1624 uarg[1] = (intptr_t) SCARG(p, events); /* struct linux_epoll_event * */
1625 iarg[2] = SCARG(p, maxevents); /* int */
1626 iarg[3] = SCARG(p, timeout); /* int */
1632 const struct linux_sys_epoll_ctl_args *p = params;
1633 iarg[0] = SCARG(p, epfd); /* int */
1634 iarg[1] = SCARG(p, op); /* int */
1635 iarg[2] = SCARG(p, fd); /* int */
1636 uarg[3] = (intptr_t) SCARG(p, event); /* struct linux_epoll_event * */
1642 const struct linux_sys_tgkill_args *p = params;
1643 iarg[0] = SCARG(p, tgid); /* int */
1644 iarg[1] = SCARG(p, tid); /* int */
1645 iarg[2] = SCARG(p, sig); /* int */
1651 const struct compat_50_sys_utimes_args *p = params;
1652 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1653 uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timeval50 * */
1659 const struct linux_sys_mq_open_args *p = params;
1660 uarg[0] = (intptr_t) SCARG(p, name); /* const char * */
1661 iarg[1] = SCARG(p, oflag); /* int */
1662 iarg[2] = SCARG(p, mode); /* linux_umode_t */
1663 uarg[3] = (intptr_t) SCARG(p, attr); /* struct linux_mq_attr * */
1669 const struct linux_sys_mq_unlink_args *p = params;
1670 uarg[0] = (intptr_t) SCARG(p, name); /* const char * */
1676 const struct linux_sys_mq_timedsend_args *p = params;
1677 iarg[0] = SCARG(p, mqdes); /* linux_mqd_t */
1678 uarg[1] = (intptr_t) SCARG(p, msg_ptr); /* const char * */
1679 uarg[2] = SCARG(p, msg_len); /* size_t */
1680 uarg[3] = SCARG(p, msg_prio); /* unsigned int */
1681 uarg[4] = (intptr_t) SCARG(p, abs_timeout); /* const struct linux_timespec * */
1687 const struct linux_sys_mq_timedreceive_args *p = params;
1688 iarg[0] = SCARG(p, mqdes); /* linux_mqd_t */
1689 uarg[1] = (intptr_t) SCARG(p, msg_ptr); /* char * */
1690 uarg[2] = SCARG(p, msg_len); /* size_t */
1691 uarg[3] = (intptr_t) SCARG(p, msg_prio); /* unsigned int * */
1692 uarg[4] = (intptr_t) SCARG(p, abs_timeout); /* const struct linux_timespec * */
1698 const struct linux_sys_mq_notify_args *p = params;
1699 iarg[0] = SCARG(p, mqdes); /* linux_mqd_t */
1700 uarg[1] = (intptr_t) SCARG(p, sevp); /* const struct linux_sigevent * */
1706 const struct linux_sys_mq_getsetattr_args *p = params;
1707 iarg[0] = SCARG(p, mqdes); /* linux_mqd_t */
1708 uarg[1] = (intptr_t) SCARG(p, newattr); /* const struct linux_mq_attr * */
1709 uarg[2] = (intptr_t) SCARG(p, oldattr); /* struct linux_mq_attr * */
1715 const struct linux_sys_waitid_args *p = params;
1716 iarg[0] = SCARG(p, idtype); /* int */
1717 iarg[1] = SCARG(p, id); /* id_t */
1718 uarg[2] = (intptr_t) SCARG(p, infop); /* linux_siginfo_t * */
1719 iarg[3] = SCARG(p, options); /* int */
1720 uarg[4] = (intptr_t) SCARG(p, rusage); /* struct rusage50 * */
1731 const struct linux_sys_inotify_add_watch_args *p = params;
1732 iarg[0] = SCARG(p, fd); /* int */
1733 uarg[1] = (intptr_t) SCARG(p, pathname); /* const char * */
1734 uarg[2] = SCARG(p, mask); /* uint32_t */
1740 const struct linux_sys_inotify_rm_watch_args *p = params;
1741 iarg[0] = SCARG(p, fd); /* int */
1742 iarg[1] = SCARG(p, wd); /* int */
1748 const struct linux_sys_openat_args *p = params;
1749 iarg[0] = SCARG(p, fd); /* int */
1750 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
1751 iarg[2] = SCARG(p, flags); /* int */
1752 iarg[3] = SCARG(p, mode); /* linux_umode_t */
1758 const struct sys_mkdirat_args *p = params;
1759 iarg[0] = SCARG(p, fd); /* int */
1760 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
1761 iarg[2] = SCARG(p, mode); /* linux_umode_t */
1767 const struct linux_sys_mknodat_args *p = params;
1768 iarg[0] = SCARG(p, fd); /* int */
1769 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
1770 iarg[2] = SCARG(p, mode); /* linux_umode_t */
1771 uarg[3] = SCARG(p, dev); /* unsigned */
1777 const struct linux_sys_fchownat_args *p = params;
1778 iarg[0] = SCARG(p, fd); /* int */
1779 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
1780 uarg[2] = SCARG(p, owner); /* uid_t */
1781 iarg[3] = SCARG(p, group); /* gid_t */
1782 iarg[4] = SCARG(p, flag); /* int */
1788 const struct linux_sys_fstatat64_args *p = params;
1789 iarg[0] = SCARG(p, fd); /* int */
1790 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
1791 uarg[2] = (intptr_t) SCARG(p, sp); /* struct linux_stat * */
1792 iarg[3] = SCARG(p, flag); /* int */
1798 const struct linux_sys_unlinkat_args *p = params;
1799 iarg[0] = SCARG(p, fd); /* int */
1800 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
1801 iarg[2] = SCARG(p, flag); /* int */
1807 const struct sys_renameat_args *p = params;
1808 iarg[0] = SCARG(p, fromfd); /* int */
1809 uarg[1] = (intptr_t) SCARG(p, from); /* const char * */
1810 iarg[2] = SCARG(p, tofd); /* int */
1811 uarg[3] = (intptr_t) SCARG(p, to); /* const char * */
1817 const struct linux_sys_linkat_args *p = params;
1818 iarg[0] = SCARG(p, fd1); /* int */
1819 uarg[1] = (intptr_t) SCARG(p, name1); /* const char * */
1820 iarg[2] = SCARG(p, fd2); /* int */
1821 uarg[3] = (intptr_t) SCARG(p, name2); /* const char * */
1822 iarg[4] = SCARG(p, flags); /* int */
1828 const struct sys_symlinkat_args *p = params;
1829 uarg[0] = (intptr_t) SCARG(p, path1); /* const char * */
1830 iarg[1] = SCARG(p, fd); /* int */
1831 uarg[2] = (intptr_t) SCARG(p, path2); /* const char * */
1837 const struct sys_readlinkat_args *p = params;
1838 iarg[0] = SCARG(p, fd); /* int */
1839 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
1840 uarg[2] = (intptr_t) SCARG(p, buf); /* char * */
1841 uarg[3] = SCARG(p, bufsize); /* size_t */
1847 const struct linux_sys_fchmodat_args *p = params;
1848 iarg[0] = SCARG(p, fd); /* int */
1849 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
1850 iarg[2] = SCARG(p, mode); /* linux_umode_t */
1856 const struct linux_sys_faccessat_args *p = params;
1857 iarg[0] = SCARG(p, fd); /* int */
1858 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
1859 iarg[2] = SCARG(p, amode); /* int */
1865 const struct linux_sys_pselect6_args *p = params;
1866 iarg[0] = SCARG(p, nfds); /* int */
1867 uarg[1] = (intptr_t) SCARG(p, readfds); /* fd_set * */
1868 uarg[2] = (intptr_t) SCARG(p, writefds); /* fd_set * */
1869 uarg[3] = (intptr_t) SCARG(p, exceptfds); /* fd_set * */
1870 uarg[4] = (intptr_t) SCARG(p, timeout); /* struct linux_timespec * */
1871 uarg[5] = (intptr_t) SCARG(p, ss); /* linux_sized_sigset_t * */
1877 const struct linux_sys_ppoll_args *p = params;
1878 uarg[0] = (intptr_t) SCARG(p, fds); /* struct pollfd * */
1879 uarg[1] = SCARG(p, nfds); /* u_int */
1880 uarg[2] = (intptr_t) SCARG(p, timeout); /* struct linux_timespec * */
1881 uarg[3] = (intptr_t) SCARG(p, sigset); /* linux_sigset_t * */
1887 const struct sys___futex_set_robust_list_args *p = params;
1888 uarg[0] = (intptr_t) SCARG(p, head); /* void * */
1889 uarg[1] = SCARG(p, len); /* size_t */
1895 const struct sys___futex_get_robust_list_args *p = params;
1896 iarg[0] = SCARG(p, lwpid); /* lwpid_t */
1897 uarg[1] = (intptr_t) SCARG(p, headp); /* void ** */
1898 uarg[2] = (intptr_t) SCARG(p, lenp); /* size_t * */
1904 const struct linux_sys_sync_file_range_args *p = params;
1905 iarg[0] = SCARG(p, fd); /* int */
1906 iarg[1] = SCARG(p, offset); /* off_t */
1907 iarg[2] = SCARG(p, nbytes); /* off_t */
1908 uarg[3] = SCARG(p, flags); /* unsigned int */
1914 const struct linux_sys_utimensat_args *p = params;
1915 iarg[0] = SCARG(p, fd); /* int */
1916 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
1917 uarg[2] = (intptr_t) SCARG(p, times); /* struct linux_timespec * */
1918 iarg[3] = SCARG(p, flag); /* int */
1924 const struct linux_sys_epoll_pwait_args *p = params;
1925 iarg[0] = SCARG(p, epfd); /* int */
1926 uarg[1] = (intptr_t) SCARG(p, events); /* struct linux_epoll_event * */
1927 iarg[2] = SCARG(p, maxevents); /* int */
1928 iarg[3] = SCARG(p, timeout); /* int */
1929 uarg[4] = (intptr_t) SCARG(p, sigmask); /* const linux_sigset_t * */
1935 const struct linux_sys_timerfd_create_args *p = params;
1936 iarg[0] = SCARG(p, clock_id); /* clockid_t */
1937 iarg[1] = SCARG(p, flags); /* int */
1943 const struct linux_sys_eventfd_args *p = params;
1944 uarg[0] = SCARG(p, initval); /* unsigned int */
1950 const struct linux_sys_fallocate_args *p = params;
1951 iarg[0] = SCARG(p, fd); /* int */
1952 iarg[1] = SCARG(p, mode); /* int */
1953 iarg[2] = SCARG(p, offset); /* off_t */
1954 iarg[3] = SCARG(p, len); /* off_t */
1960 const struct linux_sys_timerfd_settime_args *p = params;
1961 iarg[0] = SCARG(p, fd); /* int */
1962 iarg[1] = SCARG(p, flags); /* int */
1963 uarg[2] = (intptr_t) SCARG(p, tim); /* const struct linux_itimerspec * */
1964 uarg[3] = (intptr_t) SCARG(p, otim); /* struct linux_itimerspec * */
1970 const struct linux_sys_timerfd_gettime_args *p = params;
1971 iarg[0] = SCARG(p, fd); /* int */
1972 uarg[1] = (intptr_t) SCARG(p, tim); /* struct linux_itimerspec * */
1978 const struct linux_sys_accept4_args *p = params;
1979 iarg[0] = SCARG(p, s); /* int */
1980 uarg[1] = (intptr_t) SCARG(p, name); /* struct osockaddr * */
1981 uarg[2] = (intptr_t) SCARG(p, anamelen); /* int * */
1982 iarg[3] = SCARG(p, flags); /* int */
1988 const struct linux_sys_eventfd2_args *p = params;
1989 uarg[0] = SCARG(p, initval); /* unsigned int */
1990 iarg[1] = SCARG(p, flags); /* int */
1996 const struct linux_sys_epoll_create1_args *p = params;
1997 iarg[0] = SCARG(p, flags); /* int */
2003 const struct linux_sys_dup3_args *p = params;
2004 iarg[0] = SCARG(p, from); /* int */
2005 iarg[1] = SCARG(p, to); /* int */
2006 iarg[2] = SCARG(p, flags); /* int */
2012 const struct linux_sys_pipe2_args *p = params;
2013 uarg[0] = (intptr_t) SCARG(p, pfds); /* int * */
2014 iarg[1] = SCARG(p, flags); /* int */
2020 const struct linux_sys_inotify_init1_args *p = params;
2021 iarg[0] = SCARG(p, flags); /* int */
2027 const struct linux_sys_preadv_args *p = params;
2028 iarg[0] = SCARG(p, fd); /* int */
2029 uarg[1] = (intptr_t) SCARG(p, iovp); /* const struct iovec * */
2030 iarg[2] = SCARG(p, iovcnt); /* int */
2031 uarg[3] = SCARG(p, off_lo); /* unsigned long */
2032 uarg[4] = SCARG(p, off_hi); /* unsigned long */
2038 const struct linux_sys_pwritev_args *p = params;
2039 iarg[0] = SCARG(p, fd); /* int */
2040 uarg[1] = (intptr_t) SCARG(p, iovp); /* const struct iovcnt * */
2041 iarg[2] = SCARG(p, iovcnt); /* int */
2042 uarg[3] = SCARG(p, off_lo); /* unsigned long */
2043 uarg[4] = SCARG(p, off_hi); /* unsigned long */
2049 const struct linux_sys_recvmmsg_args *p = params;
2050 iarg[0] = SCARG(p, s); /* int */
2051 uarg[1] = (intptr_t) SCARG(p, msgvec); /* struct linux_mmsghdr * */
2052 uarg[2] = SCARG(p, vlen); /* unsigned int */
2053 uarg[3] = SCARG(p, flags); /* unsigned int */
2054 uarg[4] = (intptr_t) SCARG(p, timeout); /* struct timespec * */
2060 const struct linux_sys_prlimit64_args *p = params;
2061 iarg[0] = SCARG(p, pid); /* pid_t */
2062 iarg[1] = SCARG(p, which); /* int */
2063 uarg[2] = (intptr_t) SCARG(p, new_rlp); /* struct rlimit * */
2064 uarg[3] = (intptr_t) SCARG(p, old_rlp); /* struct rlimit * */
2070 const struct linux_sys_syncfs_args *p = params;
2071 iarg[0] = SCARG(p, fd); /* int */
2077 const struct linux_sys_sendmmsg_args *p = params;
2078 iarg[0] = SCARG(p, s); /* int */
2079 uarg[1] = (intptr_t) SCARG(p, msgvec); /* struct linux_mmsghdr * */
2080 uarg[2] = SCARG(p, vlen); /* unsigned int */
2081 uarg[3] = SCARG(p, flags); /* unsigned int */
2087 const struct linux_sys_getcpu_args *p = params;
2088 uarg[0] = (intptr_t) SCARG(p, cpu); /* unsigned int * */
2089 uarg[1] = (intptr_t) SCARG(p, node); /* unsigned int * */
2090 uarg[2] = (intptr_t) SCARG(p, tcache); /* struct linux_getcpu_cache * */
2096 const struct linux_sys_renameat2_args *p = params;
2097 iarg[0] = SCARG(p, fromfd); /* int */
2098 uarg[1] = (intptr_t) SCARG(p, from); /* const char * */
2099 iarg[2] = SCARG(p, tofd); /* int */
2100 uarg[3] = (intptr_t) SCARG(p, to); /* const char * */
2101 uarg[4] = SCARG(p, flags); /* unsigned int */
2107 const struct sys_getrandom_args *p = params;
2108 uarg[0] = (intptr_t) SCARG(p, buf); /* void * */
2109 uarg[1] = SCARG(p, buflen); /* size_t */
2110 uarg[2] = SCARG(p, flags); /* unsigned int */
2116 const struct linux_sys_memfd_create_args *p = params;
2117 uarg[0] = (intptr_t) SCARG(p, name); /* const char * */
2118 uarg[1] = SCARG(p, flags); /* unsigned int */
2124 const struct linux_sys_copy_file_range_args *p = params;
2125 iarg[0] = SCARG(p, fd_in); /* int */
2126 uarg[1] = (intptr_t) SCARG(p, off_in); /* off_t * */
2127 iarg[2] = SCARG(p, fd_out); /* int */
2128 uarg[3] = (intptr_t) SCARG(p, off_out); /* off_t * */
2129 uarg[4] = SCARG(p, len); /* size_t */
2130 uarg[5] = SCARG(p, flags); /* unsigned int */
2136 const struct linux_sys_statx_args *p = params;
2137 iarg[0] = SCARG(p, fd); /* int */
2138 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
2139 iarg[2] = SCARG(p, flag); /* int */
2140 uarg[3] = SCARG(p, mask); /* unsigned int */
2141 uarg[4] = (intptr_t) SCARG(p, sp); /* struct linux_statx * */
2147 const struct linux_sys_clone3_args *p = params;
2148 uarg[0] = (intptr_t) SCARG(p, cl_args); /* struct linux_user_clone3_args * */
2149 uarg[1] = SCARG(p, size); /* size_t */
2155 const struct linux_sys_close_range_args *p = params;
2156 uarg[0] = SCARG(p, first); /* unsigned int */
2157 uarg[1] = SCARG(p, last); /* unsigned int */
2158 uarg[2] = SCARG(p, flags); /* unsigned int */
2164 const struct linux_sys_faccessat2_args *p = params;
2165 iarg[0] = SCARG(p, fd); /* int */
2166 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
2167 iarg[2] = SCARG(p, amode); /* int */
2168 iarg[3] = SCARG(p, flags); /* int */
2174 const struct linux_sys_epoll_pwait2_args *p = params;
2175 iarg[0] = SCARG(p, epfd); /* int */
2176 uarg[1] = (intptr_t) SCARG(p, events); /* struct linux_epoll_event * */
2177 iarg[2] = SCARG(p, maxevents); /* int */
2178 uarg[3] = (intptr_t) SCARG(p, timeout); /* const struct linux_timespec * */
2179 uarg[4] = (intptr_t) SCARG(p, sigmask); /* const linux_sigset_t * */
2196 const char *p = NULL;
2202 p = "int";
2205 p = "void *";
2208 p = "size_t";
2218 p = "int";
2221 p = "const void *";
2224 p = "size_t";
2234 p = "const char *";
2237 p = "int";
2240 p = "linux_umode_t";
2250 p = "int";
2260 p = "const char *";
2263 p = "struct linux_stat64 *";
2273 p = "int";
2276 p = "struct linux_stat64 *";
2286 p = "const char *";
2289 p = "struct linux_stat64 *";
2299 p = "struct pollfd *";
2302 p = "u_int";
2305 p = "int";
2315 p = "int";
2318 p = "long";
2321 p = "int";
2331 p = "unsigned long";
2334 p = "size_t";
2337 p = "int";
2340 p = "int";
2343 p = "int";
2346 p = "linux_off_t";
2356 p = "const void *";
2359 p = "unsigned long";
2362 p = "int";
2372 p = "void *";
2375 p = "size_t";
2385 p = "char *";
2395 p = "int";
2398 p = "const struct linux_sigaction *";
2401 p = "struct linux_sigaction *";
2404 p = "size_t";
2414 p = "int";
2417 p = "const linux_sigset_t *";
2420 p = "linux_sigset_t *";
2423 p = "size_t";
2436 p = "int";
2439 p = "u_long";
2442 p = "void *";
2452 p = "int";
2455 p = "char *";
2458 p = "size_t";
2461 p = "off_t";
2471 p = "int";
2474 p = "char *";
2477 p = "size_t";
2480 p = "off_t";
2490 p = "int";
2493 p = "const struct iovec *";
2496 p = "int";
2506 p = "int";
2509 p = "const struct iovec *";
2512 p = "int";
2522 p = "const char *";
2525 p = "int";
2535 p = "int *";
2545 p = "int";
2548 p = "fd_set *";
2551 p = "fd_set *";
2554 p = "fd_set *";
2557 p = "struct timeval50 *";
2570 p = "void *";
2573 p = "size_t";
2576 p = "size_t";
2579 p = "u_long";
2589 p = "void *";
2592 p = "size_t";
2595 p = "int";
2605 p = "void *";
2608 p = "size_t";
2611 p = "char *";
2621 p = "void *";
2624 p = "size_t";
2627 p = "int";
2638 p = "key_t";
2641 p = "size_t";
2644 p = "int";
2654 p = "int";
2657 p = "void *";
2660 p = "int";
2670 p = "int";
2673 p = "int";
2676 p = "struct linux_shmid_ds *";
2688 p = "int";
2698 p = "int";
2701 p = "int";
2714 p = "const struct linux_timespec *";
2717 p = "struct linux_timespec *";
2727 p = "int";
2730 p = "struct itimerval50 *";
2740 p = "unsigned int";
2750 p = "int";
2753 p = "struct itimerval50 *";
2756 p = "struct itimerval50 *";
2769 p = "int";
2772 p = "int";
2775 p = "int";
2785 p = "int";
2788 p = "const struct osockaddr *";
2791 p = "unsigned int";
2801 p = "int";
2804 p = "struct osockaddr *";
2807 p = "int *";
2817 p = "int";
2820 p = "void *";
2823 p = "int";
2826 p = "int";
2829 p = "struct osockaddr *";
2832 p = "int";
2842 p = "int";
2845 p = "void *";
2848 p = "size_t";
2851 p = "int";
2854 p = "struct osockaddr *";
2857 p = "unsigned int *";
2867 p = "int";
2870 p = "const struct linux_msghdr *";
2873 p = "int";
2883 p = "int";
2886 p = "struct linux_msghdr *";
2889 p = "int";
2899 p = "int";
2902 p = "int";
2912 p = "int";
2915 p = "const struct osockaddr *";
2918 p = "unsigned int";
2928 p = "int";
2931 p = "int";
2941 p = "int";
2944 p = "void *";
2947 p = "int *";
2957 p = "int";
2960 p = "struct sockaddr *";
2963 p = "unsigned int *";
2973 p = "int";
2976 p = "int";
2979 p = "int";
2982 p = "int *";
2992 p = "int";
2995 p = "int";
2998 p = "int";
3001 p = "void *";
3004 p = "int";
3014 p = "int";
3017 p = "int";
3020 p = "int";
3023 p = "void *";
3026 p = "int *";
3036 p = "int";
3039 p = "void *";
3042 p = "void *";
3045 p = "void *";
3048 p = "void *";
3064 p = "const char *";
3067 p = "char **";
3070 p = "char **";
3080 p = "int";
3090 p = "int";
3093 p = "int *";
3096 p = "int";
3099 p = "struct rusage50 *";
3109 p = "int";
3112 p = "int";
3122 p = "struct linux_utsname *";
3133 p = "key_t";
3136 p = "int";
3139 p = "int";
3149 p = "int";
3152 p = "struct sembuf *";
3155 p = "size_t";
3165 p = "int";
3168 p = "int";
3171 p = "int";
3174 p = "union linux_semun";
3187 p = "const void *";
3200 p = "key_t";
3203 p = "int";
3213 p = "int";
3216 p = "void *";
3219 p = "size_t";
3222 p = "int";
3232 p = "int";
3235 p = "void *";
3238 p = "size_t";
3241 p = "long";
3244 p = "int";
3254 p = "int";
3257 p = "int";
3260 p = "struct linux_msqid_ds *";
3272 p = "int";
3275 p = "int";
3278 p = "void *";
3288 p = "int";
3291 p = "int";
3301 p = "int";
3311 p = "int";
3321 p = "const char *";
3324 p = "off_t";
3334 p = "unsigned int";
3337 p = "off_t";
3347 p = "int";
3350 p = "struct linux_dirent *";
3353 p = "unsigned int";
3363 p = "char *";
3366 p = "size_t";
3376 p = "const char *";
3386 p = "int";
3396 p = "const char *";
3399 p = "const char *";
3409 p = "const char *";
3412 p = "linux_umode_t";
3422 p = "const char *";
3432 p = "const char *";
3435 p = "linux_umode_t";
3445 p = "const char *";
3448 p = "const char *";
3458 p = "const char *";
3468 p = "const char *";
3471 p = "const char *";
3481 p = "const char *";
3484 p = "char *";
3487 p = "int";
3497 p = "const char *";
3500 p = "linux_umode_t";
3510 p = "int";
3513 p = "linux_umode_t";
3523 p = "const char *";
3526 p = "uid_t";
3529 p = "gid_t";
3539 p = "int";
3542 p = "uid_t";
3545 p = "gid_t";
3555 p = "const char *";
3558 p = "uid_t";
3561 p = "gid_t";
3571 p = "int";
3581 p = "struct timeval50 *";
3584 p = "struct timezone *";
3594 p = "int";
3597 p = "struct rlimit *";
3607 p = "int";
3610 p = "struct rusage50 *";
3620 p = "struct linux_sysinfo *";
3630 p = "struct times *";
3640 p = "long";
3643 p = "long";
3646 p = "long";
3649 p = "long";
3665 p = "uid_t";
3675 p = "gid_t";
3691 p = "int";
3694 p = "int";
3713 p = "uid_t";
3716 p = "uid_t";
3726 p = "gid_t";
3729 p = "gid_t";
3739 p = "int";
3742 p = "gid_t *";
3752 p = "int";
3755 p = "gid_t *";
3765 p = "uid_t";
3768 p = "uid_t";
3771 p = "uid_t";
3781 p = "uid_t *";
3784 p = "uid_t *";
3787 p = "uid_t *";
3797 p = "gid_t";
3800 p = "gid_t";
3803 p = "gid_t";
3813 p = "gid_t *";
3816 p = "gid_t *";
3819 p = "gid_t *";
3829 p = "pid_t";
3839 p = "uid_t";
3849 p = "gid_t";
3859 p = "pid_t";
3869 p = "linux_sigset_t *";
3872 p = "size_t";
3882 p = "const linux_sigset_t *";
3885 p = "linux_siginfo_t *";
3888 p = "const struct linux_timespec *";
3898 p = "int";
3901 p = "int";
3904 p = "linux_siginfo_t *";
3914 p = "linux_sigset_t *";
3917 p = "size_t";
3927 p = "const struct linux_sigaltstack *";
3930 p = "struct linux_sigaltstack *";
3940 p = "const char *";
3943 p = "struct linux_utimbuf *";
3953 p = "const char *";
3956 p = "linux_umode_t";
3959 p = "unsigned";
3970 p = "const char *";
3982 p = "unsigned long";
3992 p = "const char *";
3995 p = "struct linux_statfs *";
4005 p = "int";
4008 p = "struct linux_statfs *";
4018 p = "int";
4021 p = "int";
4031 p = "int";
4034 p = "int";
4037 p = "int";
4047 p = "pid_t";
4050 p = "const struct linux_sched_param *";
4060 p = "pid_t";
4063 p = "struct linux_sched_param *";
4073 p = "pid_t";
4076 p = "int";
4079 p = "const struct linux_sched_param *";
4089 p = "pid_t";
4099 p = "int";
4109 p = "int";
4119 p = "void *";
4122 p = "size_t";
4132 p = "void *";
4135 p = "size_t";
4145 p = "int";
4158 p = "int";
4161 p = "void *";
4164 p = "size_t";
4174 p = "struct linux___sysctl *";
4184 p = "int";
4187 p = "unsigned long";
4197 p = "u_int";
4200 p = "struct rlimit *";
4210 p = "char *";
4223 p = "char *";
4233 p = "struct timeval50 *";
4236 p = "struct timezone *";
4246 p = "char *";
4256 p = "const char *";
4266 p = "int";
4269 p = "int";
4272 p = "int";
4275 p = "void *";
4285 p = "char *";
4288 p = "u_int";
4298 p = "char *";
4301 p = "int";
4311 p = "int";
4321 p = "unsigned int";
4324 p = "unsigned int";
4327 p = "int";
4340 p = "int";
4343 p = "off_t";
4346 p = "size_t";
4356 p = "char *";
4359 p = "char *";
4362 p = "void *";
4365 p = "size_t";
4368 p = "int";
4378 p = "char *";
4381 p = "char *";
4384 p = "void *";
4387 p = "size_t";
4390 p = "int";
4400 p = "int";
4403 p = "char *";
4406 p = "void *";
4409 p = "size_t";
4412 p = "int";
4422 p = "char *";
4425 p = "char *";
4428 p = "void *";
4431 p = "size_t";
4441 p = "char *";
4444 p = "char *";
4447 p = "void *";
4450 p = "size_t";
4460 p = "int";
4463 p = "char *";
4466 p = "void *";
4469 p = "size_t";
4479 p = "char *";
4482 p = "char *";
4485 p = "size_t";
4495 p = "char *";
4498 p = "char *";
4501 p = "size_t";
4511 p = "int";
4514 p = "char *";
4517 p = "size_t";
4527 p = "char *";
4530 p = "char *";
4540 p = "char *";
4543 p = "char *";
4553 p = "int";
4556 p = "char *";
4566 p = "int";
4569 p = "int";
4579 p = "linux_time_t *";
4589 p = "int *";
4592 p = "int";
4595 p = "int";
4598 p = "const struct linux_timespec *";
4601 p = "int *";
4604 p = "int";
4614 p = "pid_t";
4617 p = "unsigned int";
4620 p = "unsigned long *";
4630 p = "pid_t";
4633 p = "unsigned int";
4636 p = "unsigned long *";
4646 p = "int";
4656 p = "int";
4659 p = "struct linux_dirent64 *";
4662 p = "unsigned int";
4672 p = "int *";
4682 p = "int";
4685 p = "off_t";
4688 p = "size_t";
4691 p = "int";
4701 p = "clockid_t";
4704 p = "struct linux_sigevent *";
4707 p = "timer_t *";
4717 p = "timer_t";
4720 p = "int";
4723 p = "const struct linux_itimerspec *";
4726 p = "struct linux_itimerspec *";
4736 p = "timer_t";
4739 p = "struct linux_itimerspec *";
4749 p = "timer_t";
4759 p = "timer_t";
4769 p = "clockid_t";
4772 p = "struct linux_timespec *";
4782 p = "clockid_t";
4785 p = "struct linux_timespec *";
4795 p = "clockid_t";
4798 p = "struct linux_timespec *";
4808 p = "clockid_t";
4811 p = "int";
4814 p = "struct linux_timespec *";
4817 p = "struct linux_timespec *";
4827 p = "int";
4837 p = "int";
4840 p = "struct linux_epoll_event *";
4843 p = "int";
4846 p = "int";
4856 p = "int";
4859 p = "int";
4862 p = "int";
4865 p = "struct linux_epoll_event *";
4875 p = "int";
4878 p = "int";
4881 p = "int";
4891 p = "const char *";
4894 p = "const struct timeval50 *";
4904 p = "const char *";
4907 p = "int";
4910 p = "linux_umode_t";
4913 p = "struct linux_mq_attr *";
4923 p = "const char *";
4933 p = "linux_mqd_t";
4936 p = "const char *";
4939 p = "size_t";
4942 p = "unsigned int";
4945 p = "const struct linux_timespec *";
4955 p = "linux_mqd_t";
4958 p = "char *";
4961 p = "size_t";
4964 p = "unsigned int *";
4967 p = "const struct linux_timespec *";
4977 p = "linux_mqd_t";
4980 p = "const struct linux_sigevent *";
4990 p = "linux_mqd_t";
4993 p = "const struct linux_mq_attr *";
4996 p = "struct linux_mq_attr *";
5006 p = "int";
5009 p = "id_t";
5012 p = "linux_siginfo_t *";
5015 p = "int";
5018 p = "struct rusage50 *";
5031 p = "int";
5034 p = "const char *";
5037 p = "uint32_t";
5047 p = "int";
5050 p = "int";
5060 p = "int";
5063 p = "const char *";
5066 p = "int";
5069 p = "linux_umode_t";
5079 p = "int";
5082 p = "const char *";
5085 p = "linux_umode_t";
5095 p = "int";
5098 p = "const char *";
5101 p = "linux_umode_t";
5104 p = "unsigned";
5114 p = "int";
5117 p = "const char *";
5120 p = "uid_t";
5123 p = "gid_t";
5126 p = "int";
5136 p = "int";
5139 p = "const char *";
5142 p = "struct linux_stat *";
5145 p = "int";
5155 p = "int";
5158 p = "const char *";
5161 p = "int";
5171 p = "int";
5174 p = "const char *";
5177 p = "int";
5180 p = "const char *";
5190 p = "int";
5193 p = "const char *";
5196 p = "int";
5199 p = "const char *";
5202 p = "int";
5212 p = "const char *";
5215 p = "int";
5218 p = "const char *";
5228 p = "int";
5231 p = "const char *";
5234 p = "char *";
5237 p = "size_t";
5247 p = "int";
5250 p = "const char *";
5253 p = "linux_umode_t";
5263 p = "int";
5266 p = "const char *";
5269 p = "int";
5279 p = "int";
5282 p = "fd_set *";
5285 p = "fd_set *";
5288 p = "fd_set *";
5291 p = "struct linux_timespec *";
5294 p = "linux_sized_sigset_t *";
5304 p = "struct pollfd *";
5307 p = "u_int";
5310 p = "struct linux_timespec *";
5313 p = "linux_sigset_t *";
5323 p = "void *";
5326 p = "size_t";
5336 p = "lwpid_t";
5339 p = "void **";
5342 p = "size_t *";
5352 p = "int";
5355 p = "off_t";
5358 p = "off_t";
5361 p = "unsigned int";
5371 p = "int";
5374 p = "const char *";
5377 p = "struct linux_timespec *";
5380 p = "int";
5390 p = "int";
5393 p = "struct linux_epoll_event *";
5396 p = "int";
5399 p = "int";
5402 p = "const linux_sigset_t *";
5412 p = "clockid_t";
5415 p = "int";
5425 p = "unsigned int";
5435 p = "int";
5438 p = "int";
5441 p = "off_t";
5444 p = "off_t";
5454 p = "int";
5457 p = "int";
5460 p = "const struct linux_itimerspec *";
5463 p = "struct linux_itimerspec *";
5473 p = "int";
5476 p = "struct linux_itimerspec *";
5486 p = "int";
5489 p = "struct osockaddr *";
5492 p = "int *";
5495 p = "int";
5505 p = "unsigned int";
5508 p = "int";
5518 p = "int";
5528 p = "int";
5531 p = "int";
5534 p = "int";
5544 p = "int *";
5547 p = "int";
5557 p = "int";
5567 p = "int";
5570 p = "const struct iovec *";
5573 p = "int";
5576 p = "unsigned long";
5579 p = "unsigned long";
5589 p = "int";
5592 p = "const struct iovcnt *";
5595 p = "int";
5598 p = "unsigned long";
5601 p = "unsigned long";
5611 p = "int";
5614 p = "struct linux_mmsghdr *";
5617 p = "unsigned int";
5620 p = "unsigned int";
5623 p = "struct timespec *";
5633 p = "pid_t";
5636 p = "int";
5639 p = "struct rlimit *";
5642 p = "struct rlimit *";
5652 p = "int";
5662 p = "int";
5665 p = "struct linux_mmsghdr *";
5668 p = "unsigned int";
5671 p = "unsigned int";
5681 p = "unsigned int *";
5684 p = "unsigned int *";
5687 p = "struct linux_getcpu_cache *";
5697 p = "int";
5700 p = "const char *";
5703 p = "int";
5706 p = "const char *";
5709 p = "unsigned int";
5719 p = "void *";
5722 p = "size_t";
5725 p = "unsigned int";
5735 p = "const char *";
5738 p = "unsigned int";
5748 p = "int";
5751 p = "off_t *";
5754 p = "int";
5757 p = "off_t *";
5760 p = "size_t";
5763 p = "unsigned int";
5773 p = "int";
5776 p = "const char *";
5779 p = "int";
5782 p = "unsigned int";
5785 p = "struct linux_statx *";
5795 p = "struct linux_user_clone3_args *";
5798 p = "size_t";
5808 p = "unsigned int";
5811 p = "unsigned int";
5814 p = "unsigned int";
5824 p = "int";
5827 p = "const char *";
5830 p = "int";
5833 p = "int";
5843 p = "int";
5846 p = "struct linux_epoll_event *";
5849 p = "int";
5852 p = "const struct linux_timespec *";
5855 p = "const linux_sigset_t *";
5867 if (p != NULL)
5868 strlcpy(desc, p, descsz);
5873 const char *p = NULL;
5878 p = "ssize_t";
5883 p = "ssize_t";
5888 p = "int";
5893 p = "int";
5898 p = "int";
5903 p = "int";
5908 p = "int";
5913 p = "int";
5918 p = "long";
5923 p = "linux_off_t";
5928 p = "int";
5933 p = "int";
5938 p = "int";
5943 p = "int";
5948 p = "int";
5955 p = "int";
5960 p = "int";
5965 p = "int";
5970 p = "ssize_t";
5975 p = "ssize_t";
5980 p = "int";
5985 p = "int";
5990 p = "int";
5997 p = "void *";
6002 p = "int";
6007 p = "int";
6012 p = "int";
6018 p = "int";
6023 p = "int";
6028 p = "int";
6035 p = "int";
6040 p = "int";
6047 p = "int";
6052 p = "int";
6057 p = "int";
6062 p = "int";
6069 p = "int";
6074 p = "int";
6079 p = "int";
6084 p = "ssize_t";
6089 p = "ssize_t";
6094 p = "int";
6099 p = "ssize_t";
6104 p = "int";
6109 p = "int";
6114 p = "int";
6119 p = "int";
6124 p = "int";
6129 p = "int";
6134 p = "int";
6139 p = "int";
6144 p = "int";
6153 p = "int";
6158 p = "int";
6163 p = "int";
6168 p = "int";
6173 p = "int";
6179 p = "int";
6184 p = "int";
6189 p = "int";
6197 p = "int";
6205 p = "int";
6210 p = "int";
6215 p = "ssize_t";
6220 p = "int";
6227 p = "int";
6232 p = "int";
6237 p = "int";
6242 p = "int";
6247 p = "int";
6252 p = "int";
6257 p = "int";
6262 p = "int";
6267 p = "int";
6272 p = "int";
6277 p = "int";
6282 p = "int";
6287 p = "int";
6292 p = "int";
6297 p = "int";
6302 p = "int";
6307 p = "int";
6312 p = "ssize_t";
6317 p = "int";
6322 p = "int";
6327 p = "int";
6332 p = "int";
6337 p = "int";
6342 p = "int";
6347 p = "int";
6352 p = "int";
6357 p = "int";
6362 p = "int";
6367 p = "int";
6372 p = "int";
6381 p = "int";
6386 p = "int";
6395 p = "int";
6406 p = "int";
6411 p = "int";
6416 p = "int";
6421 p = "int";
6426 p = "int";
6431 p = "int";
6436 p = "int";
6441 p = "int";
6446 p = "pid_t";
6451 p = "int";
6456 p = "int";
6461 p = "pid_t";
6466 p = "int";
6471 p = "int";
6476 p = "int";
6481 p = "int";
6486 p = "int";
6491 p = "int";
6496 p = "int";
6502 p = "int";
6509 p = "int";
6514 p = "int";
6519 p = "int";
6524 p = "int";
6529 p = "int";
6534 p = "int";
6539 p = "int";
6544 p = "int";
6549 p = "int";
6554 p = "int";
6559 p = "int";
6564 p = "int";
6569 p = "int";
6574 p = "int";
6581 p = "int";
6586 p = "int";
6591 p = "int";
6596 p = "int";
6601 p = "int";
6608 p = "int";
6613 p = "int";
6618 p = "int";
6623 p = "int";
6628 p = "int";
6633 p = "int";
6638 p = "int";
6643 p = "int";
6648 p = "int";
6655 p = "ssize_t";
6660 p = "int";
6665 p = "int";
6670 p = "int";
6675 p = "ssize_t";
6680 p = "ssize_t";
6685 p = "ssize_t";
6690 p = "ssize_t";
6695 p = "ssize_t";
6700 p = "ssize_t";
6705 p = "int";
6710 p = "int";
6715 p = "int";
6720 p = "int";
6725 p = "int";
6730 p = "int";
6735 p = "int";
6740 p = "int";
6745 p = "int";
6750 p = "int";
6755 p = "int";
6760 p = "int";
6765 p = "int";
6770 p = "int";
6775 p = "int";
6780 p = "int";
6785 p = "int";
6790 p = "int";
6795 p = "int";
6800 p = "int";
6805 p = "int";
6810 p = "int";
6815 p = "int";
6820 p = "int";
6825 p = "int";
6830 p = "int";
6835 p = "linux_mqd_t";
6840 p = "int";
6845 p = "int";
6850 p = "ssize_t";
6855 p = "int";
6860 p = "int";
6865 p = "int";
6872 p = "int";
6877 p = "int";
6882 p = "int";
6887 p = "int";
6892 p = "int";
6897 p = "int";
6902 p = "int";
6907 p = "int";
6912 p = "int";
6917 p = "int";
6922 p = "int";
6927 p = "ssize_t";
6932 p = "int";
6937 p = "int";
6942 p = "int";
6947 p = "int";
6952 p = "int";
6957 p = "int";
6962 p = "int";
6967 p = "int";
6972 p = "int";
6977 p = "int";
6982 p = "int";
6987 p = "int";
6992 p = "int";
6997 p = "int";
7002 p = "int";
7007 p = "int";
7012 p = "int";
7017 p = "int";
7022 p = "int";
7027 p = "int";
7032 p = "int";
7037 p = "int";
7042 p = "int";
7047 p = "int";
7052 p = "int";
7057 p = "int";
7062 p = "int";
7067 p = "int";
7072 p = "ssize_t";
7077 p = "int";
7082 p = "ssize_t";
7087 p = "int";
7092 p = "int";
7097 p = "int";
7102 p = "int";
7107 p = "int";
7114 if (p != NULL)
7115 strlcpy(desc, p, descsz);