Lines Matching refs:cmd
33 #define IS_GETLK32(cmd) ((cmd) == F_GETLK) argument
34 #define IS_SETLK32(cmd) ((cmd) == F_SETLK) argument
35 #define IS_SETLKW32(cmd) ((cmd) == F_SETLKW) argument
36 #define IS_GETLK64(cmd) ((cmd) == F_GETLK64) argument
37 #define IS_SETLK64(cmd) ((cmd) == F_SETLK64) argument
38 #define IS_SETLKW64(cmd) ((cmd) == F_SETLKW64) argument
40 #define IS_GETLK32(cmd) (0) argument
41 #define IS_SETLK32(cmd) (0) argument
42 #define IS_SETLKW32(cmd) (0) argument
43 #define IS_GETLK64(cmd) ((cmd) == F_GETLK) argument
44 #define IS_SETLK64(cmd) ((cmd) == F_SETLK) argument
45 #define IS_SETLKW64(cmd) ((cmd) == F_SETLKW) argument
48 #define IS_GETLK(cmd) (IS_GETLK32(cmd) || IS_GETLK64(cmd)) argument
49 #define IS_SETLK(cmd) (IS_SETLK32(cmd) || IS_SETLK64(cmd)) argument
50 #define IS_SETLKW(cmd) (IS_SETLKW32(cmd) || IS_SETLKW64(cmd)) argument