Lines Matching refs:cmd
75 msgctl_syscall (int msqid, int cmd, msgctl_arg_t *buf) in msgctl_syscall() argument
78 return INLINE_SYSCALL_CALL (msgctl, msqid, cmd | __IPC_64, buf); in msgctl_syscall()
80 return INLINE_SYSCALL_CALL (ipc, IPCOP_msgctl, msqid, cmd | __IPC_64, 0, in msgctl_syscall()
86 __msgctl64 (int msqid, int cmd, struct __msqid64_ds *buf) in __msgctl64() argument
94 switch (cmd) in __msgctl64()
111 if (cmd == IPC_SET) in __msgctl64()
131 int ret = msgctl_syscall (msqid, cmd, arg); in __msgctl64()
135 switch (cmd) in __msgctl64()
194 __msgctl (int msqid, int cmd, struct msqid_ds *buf) in __msgctl() argument
201 if (cmd == IPC_INFO || cmd == MSG_INFO) in __msgctl()
210 int ret = __msgctl64 (msqid, cmd, buf64); in __msgctl()
214 switch (cmd) in __msgctl()
239 __msgctl_mode16 (int msqid, int cmd, struct msqid_ds *buf) in __msgctl_mode16() argument
241 return msgctl_syscall (msqid, cmd, (msgctl_arg_t *) buf); in __msgctl_mode16()
266 __old_msgctl (int msqid, int cmd, struct __old_msqid_ds *buf) in __old_msgctl() argument
273 return INLINE_SYSCALL_CALL (msgctl, msqid, cmd, buf); in __old_msgctl()
275 return INLINE_SYSCALL_CALL (ipc, IPCOP_msgctl, msqid, cmd, 0, buf); in __old_msgctl()