Lines Matching defs:ts
55 static void ZOPEN(struct test_state *ts, int flags, int expected, int line) in ZOPEN()
62 static void ZCLOSE(struct test_state *ts, int line) in ZCLOSE()
69 static void ZWRITE(struct test_state *ts, int expected, int line) in ZWRITE()
76 static void ZREAD(struct test_state *ts, int expected, int line) in ZREAD()
83 static void ZUNLINK(struct test_state *ts, int line) in ZUNLINK()
94 static void ZCHKPOS(struct test_state *ts, off_t expected, int line) in ZCHKPOS()
101 static void ZREWIND(struct test_state *ts, int line) in ZREWIND()
116 #define ZOPEN(ts, flags, expected) ZOPEN(ts, flags, expected, __LINE__) argument
117 #define ZCLOSE(ts) ZCLOSE(ts, __LINE__) argument
118 #define ZWRITE(ts, expected) ZWRITE(ts, expected, __LINE__) argument
119 #define ZREAD(ts, expected) ZREAD(ts, expected, __LINE__) argument
120 #define ZUNLINK(ts) ZUNLINK(ts, __LINE__) argument
121 #define ZCHKPOS(ts, expected) ZCHKPOS(ts, expected, __LINE__) argument
122 #define ZREWIND(ts) ZREWIND(ts, __LINE__) argument
125 #define ZMKEMPTY(ts) \ argument
134 struct test_state ts = { in test_fs_open_flags() local