Lines Matching refs:cmd
58 #define IS_GETLK32(cmd) ((cmd) == F_GETLK) argument
59 #define IS_SETLK32(cmd) ((cmd) == F_SETLK) argument
60 #define IS_SETLKW32(cmd) ((cmd) == F_SETLKW) argument
61 #define IS_GETLK64(cmd) ((cmd) == F_GETLK64) argument
62 #define IS_SETLK64(cmd) ((cmd) == F_SETLK64) argument
63 #define IS_SETLKW64(cmd) ((cmd) == F_SETLKW64) argument
65 #define IS_GETLK32(cmd) (0) argument
66 #define IS_SETLK32(cmd) (0) argument
67 #define IS_SETLKW32(cmd) (0) argument
68 #define IS_GETLK64(cmd) ((cmd) == F_GETLK) argument
69 #define IS_SETLK64(cmd) ((cmd) == F_SETLK) argument
70 #define IS_SETLKW64(cmd) ((cmd) == F_SETLKW) argument
73 #define IS_GETLK(cmd) (IS_GETLK32(cmd) || IS_GETLK64(cmd)) argument
74 #define IS_SETLK(cmd) (IS_SETLK32(cmd) || IS_SETLK64(cmd)) argument
75 #define IS_SETLKW(cmd) (IS_SETLKW32(cmd) || IS_SETLKW64(cmd)) argument