HomeSort by: relevance | last modified time | path
    Searched defs:bsa (Results 1 - 11 of 11) sorted by relevancy

  /src/sys/compat/linux/common/
linux_ipccall.c 99 struct linux_sys_semctl_args bsa; local in function:linux_sys_ipc
103 SCARG(&bsa, semid) = SCARG(uap, a1);
104 SCARG(&bsa, semnum) = SCARG(uap, a2);
105 SCARG(&bsa, cmd) = SCARG(uap, a3);
109 SCARG(&bsa, arg) = arg;
111 return linux_sys_semctl(l, &bsa, retval);
122 struct linux_sys_msgctl_args bsa; local in function:linux_sys_ipc
124 SCARG(&bsa, msqid) = SCARG(uap, a1);
125 SCARG(&bsa, cmd) = SCARG(uap, a2);
126 SCARG(&bsa, buf) = (struct linux_msqid_ds *)SCARG(uap, ptr)
133 struct linux_sys_shmat_args bsa; local in function:linux_sys_ipc
148 struct linux_sys_shmctl_args bsa; local in function:linux_sys_ipc
173 struct sys_semop_args bsa; local in function:linux_semop
192 struct sys_semget_args bsa; local in function:linux_semget
258 struct sys_shmdt_args bsa; local in function:linux_shmdt
271 struct linux_sys_shmget_args bsa; local in function:linux_shmget
    [all...]
linux_misc_notalpha.c 133 struct sys_setpriority_args bsa; local in function:linux_sys_nice
136 SCARG(&bsa, which) = PRIO_PROCESS;
137 SCARG(&bsa, who) = 0;
138 SCARG(&bsa, prio) = p->p_nice - NZERO + SCARG(uap, incr);
140 error = sys_setpriority(l, &bsa, retval);
linux_uid16.c 113 struct sys_setreuid_args bsa; local in function:linux_sys_setreuid16
115 SCARG(&bsa, ruid) = LINUXTOBSD_UID(SCARG(uap, ruid));
116 SCARG(&bsa, euid) = LINUXTOBSD_UID(SCARG(uap, euid));
118 return sys_setreuid(l, &bsa, retval);
128 struct sys_setregid_args bsa; local in function:linux_sys_setregid16
130 SCARG(&bsa, rgid) = LINUXTOBSD_GID(SCARG(uap, rgid));
131 SCARG(&bsa, egid) = LINUXTOBSD_GID(SCARG(uap, egid));
133 return sys_setregid(l, &bsa, retval);
linux_socket.c 323 struct sys___socket30_args bsa; local in function:linux_sys_socket
327 SCARG(&bsa, protocol) = SCARG(uap, protocol);
328 SCARG(&bsa, domain) = linux_to_bsd_domain(SCARG(uap, domain));
329 if (SCARG(&bsa, domain) == -1)
331 SCARG(&bsa, type) = linux_to_bsd_type(SCARG(uap, type));
332 if (SCARG(&bsa, type) == -1)
339 if (SCARG(&bsa, domain) == AF_ROUTE && SCARG(&bsa, type) == SOCK_RAW)
341 error = sys___socket30(l, &bsa, retval);
349 if (!error && ip6_v6only && SCARG(&bsa, domain) == PF_INET6)
376 struct sys_socketpair_args bsa; local in function:linux_sys_socketpair
1043 struct sys_setsockopt_args bsa; local in function:linux_sys_setsockopt
1759 struct sys_sendto_args bsa; local in function:linux_sys_send
    [all...]
linux_misc.c 1600 struct sys_getpriority_args bsa; local in function:linux_sys_getpriority
1603 SCARG(&bsa, which) = SCARG(uap, which);
1604 SCARG(&bsa, who) = SCARG(uap, who);
1606 if ((error = sys_getpriority(l, &bsa, retval)))
  /src/sys/compat/linux32/common/
linux32_resource.c 175 struct sys_getpriority_args bsa; local in function:linux32_sys_getpriority
178 SCARG(&bsa, which) = SCARG(uap, which);
179 SCARG(&bsa, who) = SCARG(uap, who);
181 if ((error = sys_getpriority(l, &bsa, retval)))
linux32_uid16.c 153 struct sys_setreuid_args bsa; local in function:linux32_sys_setreuid16
155 SCARG(&bsa, ruid) = LINUX32TOBSD_UID(SCARG(uap, ruid));
156 SCARG(&bsa, euid) = LINUX32TOBSD_UID(SCARG(uap, euid));
158 return sys_setreuid(l, &bsa, retval);
168 struct sys_setregid_args bsa; local in function:linux32_sys_setregid16
170 SCARG(&bsa, rgid) = LINUX32TOBSD_GID(SCARG(uap, rgid));
171 SCARG(&bsa, egid) = LINUX32TOBSD_GID(SCARG(uap, egid));
173 return sys_setregid(l, &bsa, retval);
linux32_unistd.c 707 struct sys_setpriority_args bsa; local in function:linux32_sys_nice
710 SCARG(&bsa, which) = PRIO_PROCESS;
711 SCARG(&bsa, who) = 0;
712 SCARG(&bsa, prio) = p->p_nice - NZERO + SCARG(uap, incr);
714 error = sys_setpriority(l, &bsa, retval);
  /src/sys/compat/common/
uipc_syscalls_43.c 290 struct sys_sendto_args bsa; local in function:compat_43_sys_send
292 SCARG(&bsa, s) = SCARG(uap, s);
293 SCARG(&bsa, buf) = SCARG(uap, buf);
294 SCARG(&bsa, len) = SCARG(uap, len);
295 SCARG(&bsa, flags) = SCARG(uap, flags);
296 SCARG(&bsa, to) = NULL;
297 SCARG(&bsa, tolen) = 0;
299 return (sys_sendto(l, &bsa, retval));
  /src/sys/arch/amigappc/include/
bus_defs.h 122 void *bsa; member in struct:amiga_bus_space_methods
  /src/sys/arch/amiga/include/
bus.h 103 void *bsa; member in struct:amiga_bus_space_methods

Completed in 20 milliseconds