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/runtime/
H A Ddisassembler_mips.cc184 uint32_t function = (instruction & 0x3f); // R-type. local
185 opcode = StringPrintf("op=%d fn=%d", op, function);
H A Dthread.cc291 // This function does all the initialization that must be run by the native thread it applies to.
301 // Set pthread_self_ ahead of pthread_setspecific, that makes Thread::Current function, this
568 ATRACE_BEGIN("Checkpoint function");
573 bool Thread::RequestCheckpoint(Closure* function) { argument
575 checkpoint_function_ = function;

Completed in 98 milliseconds