Lines Matching defs:cmd
29 #define IS_GETLK32(cmd) ((cmd) == F_GETLK) argument
30 #define IS_SETLK32(cmd) ((cmd) == F_SETLK) argument
31 #define IS_SETLKW32(cmd) ((cmd) == F_SETLKW) argument
32 #define IS_GETLK64(cmd) ((cmd) == F_GETLK64) argument
33 #define IS_SETLK64(cmd) ((cmd) == F_SETLK64) argument
34 #define IS_SETLKW64(cmd) ((cmd) == F_SETLKW64) argument
36 #define IS_GETLK32(cmd) (0) argument
37 #define IS_SETLK32(cmd) (0) argument
38 #define IS_SETLKW32(cmd) (0) argument
39 #define IS_GETLK64(cmd) ((cmd) == F_GETLK) argument
40 #define IS_SETLK64(cmd) ((cmd) == F_SETLK) argument
41 #define IS_SETLKW64(cmd) ((cmd) == F_SETLKW) argument
44 #define IS_GETLK(cmd) (IS_GETLK32(cmd) || IS_GETLK64(cmd)) argument
45 #define IS_SETLK(cmd) (IS_SETLK32(cmd) || IS_SETLK64(cmd)) argument
46 #define IS_SETLKW(cmd) (IS_SETLKW32(cmd) || IS_SETLKW64(cmd)) argument