Home | History | Annotate | Download | only in tsan

Lines Matching refs:READ

56 //------------- Read binary file Utils ------------ {{{1
60 static bool Read(FILE *fp, T *res) {
75 if (!Read<unsigned short>(file, &length)) {
171 bool ok = Read<int>(input, pc);
180 // Read information about event in format: [[[info] address] pc] tid.
190 ok &= Read<unsigned short>(input, &extra);
192 case READ:
200 ok &= Read<int64_t>(input, &address);
209 ok &= Read<int>(input, &pc);
212 ok &= Read<unsigned short>(input, &tid);
215 // read unsupported EventType.
219 if (type == READ || type == WRITE) {
238 ok &= Read<unsigned char>(input, &typeOrd);
276 ok &= Read<unsigned char>(input, &typeOrd);
319 Printf("INFO: ThreadSanitizerOffline: %ld events read\n", n_events);