Lines Matching defs:cmd
19 #define IS_GETLK32(cmd) ((cmd) == F_GETLK) argument
20 #define IS_SETLK32(cmd) ((cmd) == F_SETLK) argument
21 #define IS_SETLKW32(cmd) ((cmd) == F_SETLKW) argument
22 #define IS_GETLK64(cmd) ((cmd) == F_GETLK64) argument
23 #define IS_SETLK64(cmd) ((cmd) == F_SETLK64) argument
24 #define IS_SETLKW64(cmd) ((cmd) == F_SETLKW64) argument
26 #define IS_GETLK32(cmd) (0) argument
27 #define IS_SETLK32(cmd) (0) argument
28 #define IS_SETLKW32(cmd) (0) argument
29 #define IS_GETLK64(cmd) ((cmd) == F_GETLK) argument
30 #define IS_SETLK64(cmd) ((cmd) == F_SETLK) argument
31 #define IS_SETLKW64(cmd) ((cmd) == F_SETLKW) argument
34 #define IS_GETLK(cmd) (IS_GETLK32(cmd) || IS_GETLK64(cmd)) argument
35 #define IS_SETLK(cmd) (IS_SETLK32(cmd) || IS_SETLK64(cmd)) argument
36 #define IS_SETLKW(cmd) (IS_SETLKW32(cmd) || IS_SETLKW64(cmd)) argument