Lines Matching defs:cmd
12 #define IS_GETLK32(cmd) ((cmd) == F_GETLK) argument
13 #define IS_SETLK32(cmd) ((cmd) == F_SETLK) argument
14 #define IS_SETLKW32(cmd) ((cmd) == F_SETLKW) argument
15 #define IS_GETLK64(cmd) ((cmd) == F_GETLK64) argument
16 #define IS_SETLK64(cmd) ((cmd) == F_SETLK64) argument
17 #define IS_SETLKW64(cmd) ((cmd) == F_SETLKW64) argument
19 #define IS_GETLK32(cmd) (0) argument
20 #define IS_SETLK32(cmd) (0) argument
21 #define IS_SETLKW32(cmd) (0) argument
22 #define IS_GETLK64(cmd) ((cmd) == F_GETLK) argument
23 #define IS_SETLK64(cmd) ((cmd) == F_SETLK) argument
24 #define IS_SETLKW64(cmd) ((cmd) == F_SETLKW) argument
27 #define IS_GETLK(cmd) (IS_GETLK32(cmd) || IS_GETLK64(cmd)) argument
28 #define IS_SETLK(cmd) (IS_SETLK32(cmd) || IS_SETLK64(cmd)) argument
29 #define IS_SETLKW(cmd) (IS_SETLKW32(cmd) || IS_SETLKW64(cmd)) argument