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

/art/test/987-agent-bind/
H A Dagent_bind.cc35 static void doUpPrintCall(JNIEnv* env, const char* function) { argument
37 jmethodID targetMethod = env->GetStaticMethodID(klass.get(), function, "()V");
/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);
49 static void art_heap_corruption(const char* function) { argument
50 LOG(FATAL) << "Corrupt heap detected in: " << function;
53 static void art_heap_usage_error(const char* function, void* p) { argument
54 LOG(FATAL) << "Incorrect use of function '" << function << "' argument " << p
/art/test/986-native-method-bind/
H A Dnative_bind.cc35 static void doUpPrintCall(JNIEnv* env, const char* function) { argument
37 jmethodID targetMethod = env->GetStaticMethodID(klass.get(), function, "()V");
/art/disassembler/
H A Ddisassembler_mips.cc474 uint32_t function = (instruction & 0x3f); // R-type. local
475 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
1233 // function requires the lock so we prevent a race between setting
1242 // All of the callers of this function (except the SuspendAllInternal)
1299 // copied, clear the list and the flag. The RequestCheckpoint function will also grab this lock
1322 ScopedTrace trace("Run checkpoint function");
1334 bool Thread::RequestCheckpoint(Closure* function) { argument
1351 tlsPtr_.checkpoint_function = function;
1353 checkpoint_overflow_.push_back(function);
1401 void Thread::RequestSynchronousCheckpoint(Closure* function) { argument
1476 SetFlipFunction(Closure* function) argument
[all...]

Completed in 294 milliseconds