Searched defs:function (Results 1 - 3 of 3) sorted by relevance

/art/runtime/gc/allocator/
H A Ddlmalloc.cc27 static void art_heap_corruption(const char* function);
28 static void art_heap_usage_error(const char* function, void* p);
41 static void art_heap_corruption(const char* function) { argument
42 LOG(FATAL) << "Corrupt heap detected in: " << function;
45 static void art_heap_usage_error(const char* function, void* p) { argument
46 LOG(FATAL) << "Incorrect use of function '" << function << "' argument " << p << " not expected";
/art/disassembler/
H A Ddisassembler_mips.cc184 uint32_t function = (instruction & 0x3f); // R-type. local
185 opcode = StringPrintf("op=%d fn=%d", op, function);
/art/runtime/
H A Dthread.cc350 // This function does all the initialization that must be run by the native thread it applies to.
361 // Set pthread_self_ ahead of pthread_setspecific, that makes Thread::Current function, this
675 // function will also grab this lock so we prevent a race between setting
691 ATRACE_BEGIN("Checkpoint function");
700 bool Thread::RequestCheckpoint(Closure* function) { argument
718 tlsPtr_.checkpoint_functions[available_checkpoint] = function;
720 // Checkpoint function installed now install flag bit.
731 CHECK_EQ(tlsPtr_.checkpoint_functions[available_checkpoint], function);

Completed in 160 milliseconds