Home | History | Annotate | Download | only in strace

Lines Matching defs:cmd

36 #define QCMD_CMD(cmd)	((u_int32_t)(cmd) >> SUBCMDSHIFT)
37 #define QCMD_TYPE(cmd) ((u_int32_t)(cmd) & SUBCMDMASK)
39 #define OLD_CMD(cmd) ((u_int32_t)(cmd) << 8)
40 #define NEW_CMD(cmd) ((u_int32_t)(cmd) | 0x800000)
41 #define XQM_CMD(cmd) ((u_int32_t)(cmd) | ('X'<<8))
254 decode_cmd_data(struct tcb *tcp, u_int32_t cmd, unsigned long data)
256 switch (cmd) {
262 if (cmd == Q_GETQUOTA && syserror(tcp)) {
292 if (cmd == Q_V1_GETQUOTA && syserror(tcp)) {
315 if (cmd == Q_V2_GETQUOTA && syserror(tcp)) {
338 if (cmd == Q_XGETQUOTA && syserror(tcp)) {
392 if (cmd == Q_GETINFO && syserror(tcp)) {
413 if (cmd == Q_V2_GETINFO && syserror(tcp)) {
536 u_int32_t cmd = QCMD_CMD(qcmd);
544 printxval(quotacmds, cmd, "Q_???");
550 switch (cmd) {
577 decode_cmd_data(tcp, cmd, tcp->u_arg[3]);