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

/art/runtime/gc/allocator/
H A Ddlmalloc.cc28 static void art_heap_corruption(const char* function);
29 static void art_heap_usage_error(const char* function, void* p);
46 static void art_heap_corruption(const char* function) { argument
47 LOG(::art::FATAL) << "Corrupt heap detected in: " << function;
50 static void art_heap_usage_error(const char* function, void* p) { argument
51 LOG(::art::FATAL) << "Incorrect use of function '" << function << "' argument " << p
/art/disassembler/
H A Ddisassembler_mips.cc424 uint32_t function = (instruction & 0x3f); // R-type. local
425 opcode = StringPrintf("op=%d fn=%d", op, function);
/art/runtime/
H A Dthread.cc686 // This function does all the initialization that must be run by the native thread it applies to.
692 // Set pthread_self_ ahead of pthread_setspecific, that makes Thread::Current function, this
1055 // function requires the lock so we prevent a race between setting
1064 // All of the callers of this function (except the SuspendAllInternal)
1122 // function will also grab this lock so we prevent a race between setting
1138 ScopedTrace trace("Run checkpoint function");
1146 bool Thread::RequestCheckpoint(Closure* function) { argument
1164 tlsPtr_.checkpoint_functions[available_checkpoint] = function;
1166 // Checkpoint function installed now install flag bit.
1176 CHECK_EQ(tlsPtr_.checkpoint_functions[available_checkpoint], function);
1198 SetFlipFunction(Closure* function) argument
[all...]

Completed in 53 milliseconds