Home | History | Annotate | Download | only in asan

Lines Matching defs:Access

71   const char *Access()     { return Blue(); }
385 // current memory access, indicate it in the log.
411 // FIXME: we may want to also print the size of the access here,
413 str.append("%s <== Memory access at offset %zd %s this variable%s\n",
458 access.
459 AsanThread::StackFrameAccess access;
460 if (!t->GetStackFrameAccessByAddr(addr, &access)) {
464 Printf(" at offset %zu in frame%s\n", access.offset, d.EndLocation());
477 access.frame_pc = *reinterpret_cast<uptr *>(access.frame_pc);
479 access.frame_pc += 16;
481 StackTrace alloca_stack(&access.frame_pc, 1);
485 if (!ParseFrameDescription(access.frame_descr, &vars)) {
487 "descriptor: |%s|\n", access.frame_descr);
499 PrintAccessAndVarIntersection(vars[i], access.offset, access_size,
543 "(wild memory access suspected).\n");
1102 d.Access(),
1103 access_size ? (is_write ? "WRITE" : "READ") : "ACCESS",