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.cc347 // This function does all the initialization that must be run by the native thread it applies to.
358 // Set pthread_self_ ahead of pthread_setspecific, that makes Thread::Current function, this
663 // function will also grab this lock so we prevent a race between setting
679 ATRACE_BEGIN("Checkpoint function");
688 bool Thread::RequestCheckpoint(Closure* function) { argument
706 tlsPtr_.checkpoint_functions[available_checkpoint] = function;
708 // Checkpoint function installed now install flag bit.
719 CHECK_EQ(tlsPtr_.checkpoint_functions[available_checkpoint], function);

Completed in 105 milliseconds