Lines Matching refs:status
72 err_status_t status;
104 status = test_replay_dbx(1 << 12, 128);
105 if (status) {
113 status = test_replay_dbx(1 << 12, 1024);
114 if (status) {
185 err_status_t status;
189 status = rdbx_check(rdbx, delta);
190 if (status == err_status_ok) {
216 err_status_t status;
219 status = rdbx_init(&rdbx, ws);
220 if (status) {
221 printf("replay_init failed with error code %d\n", status);
230 status = rdbx_check_add(&rdbx, idx);
231 if (status)
232 return status;
249 status = rdbx_check_expect_failure(&rdbx, idx);
250 if (status)
251 return status;
274 status = rdbx_check_unordered(&rdbx, ircvd);
275 if (status)
276 return status;
291 status = rdbx_check_add(&rdbx, 1);
292 if (status)
293 return status;
294 status = rdbx_check_expect_failure(&rdbx, 64500);
295 if (status)
296 return status;
297 status = rdbx_check_add(&rdbx, 2);
298 if (status)
299 return status;