Lines Matching refs:replay_file
31 FILE *replay_file; variable
49 if (replay_file) { in replay_put_byte()
50 if (putc(byte, replay_file) == EOF) { in replay_put_byte()
83 if (replay_file) { in replay_put_array()
85 if (fwrite(buf, 1, size, replay_file) != size) { in replay_put_array()
94 if (replay_file) { in replay_get_byte()
95 int r = getc(replay_file); in replay_get_byte()
107 if (replay_file) { in replay_get_word()
118 if (replay_file) { in replay_get_dword()
129 if (replay_file) { in replay_get_qword()
139 if (replay_file) { in replay_get_array()
141 if (fread(buf, 1, *size, replay_file) != *size) { in replay_get_array()
149 if (replay_file) { in replay_get_array_alloc()
152 if (fread(*buf, 1, *size, replay_file) != *size) { in replay_get_array_alloc()
160 if (replay_file) { in replay_check_error()
161 if (feof(replay_file)) { in replay_check_error()
165 } else if (ferror(replay_file)) { in replay_check_error()
175 if (replay_file) { in replay_fetch_data_kind()
282 if (replay_file && replay_mode == REPLAY_MODE_RECORD) { in replay_save_instructions()