Searched refs:arg (Results 26 - 50 of 75) sorted by relevance

123

/art/runtime/gc/space/
H A Dlarge_object_space.h41 virtual void Walk(DlMallocSpace::WalkCallback, void* arg) = 0;
88 void Walk(DlMallocSpace::WalkCallback, void* arg) LOCKS_EXCLUDED(lock_);
115 void Walk(DlMallocSpace::WalkCallback callback, void* arg) LOCKS_EXCLUDED(lock_);
H A Ddlmalloc_space.h82 void Walk(WalkCallback callback, void* arg) LOCKS_EXCLUDED(lock_);
H A Ddlmalloc_space.cc467 void* arg) {
469 mspace_inspect_all(mspace_, callback, arg);
470 callback(NULL, NULL, 0, arg); // Indicate end of a space.
466 Walk(void(*callback)(void *start, void *end, size_t num_bytes, void* callback_arg), void* arg) argument
/art/runtime/
H A Dtrace.cc241 static void GetSample(Thread* thread, void* arg) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
245 Trace* the_trace = reinterpret_cast<Trace*>(arg);
249 static void ClearThreadStackTraceAndClockBase(Thread* thread, void* arg) { argument
299 void* Trace::RunSamplingThread(void* arg) { argument
301 int interval_us = reinterpret_cast<int>(arg);
674 static void DumpThread(Thread* t, void* arg) { argument
675 std::ostream& os = *reinterpret_cast<std::ostream*>(arg);
H A Druntime.cc1145 void Runtime::VisitConcurrentRoots(RootVisitor* visitor, void* arg, bool only_dirty, argument
1147 intern_table_->VisitRoots(visitor, arg, only_dirty, clean_dirty);
1148 class_linker_->VisitRoots(visitor, arg, only_dirty, clean_dirty);
1151 void Runtime::VisitNonThreadRoots(RootVisitor* visitor, void* arg) { argument
1152 java_vm_->VisitRoots(visitor, arg);
1154 visitor(pre_allocated_OutOfMemoryError_, arg);
1156 visitor(resolution_method_, arg);
1158 visitor(callee_save_methods_[i], arg);
1162 void Runtime::VisitNonConcurrentRoots(RootVisitor* visitor, void* arg) { argument
1163 thread_list_->VisitRoots(visitor, arg);
1167 VisitRoots(RootVisitor* visitor, void* arg, bool only_dirty, bool clean_dirty) argument
[all...]
H A Dinstrumentation.cc44 static bool InstallStubsClassVisitor(mirror::Class* klass, void* arg)
46 Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg);
104 static void InstrumentationInstallStack(Thread* thread, void* arg)
167 Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg);
181 static void InstrumentationRestoreStack(Thread* thread, void* arg)
250 Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg);
H A Ddex_instruction.h155 void Decode(uint32_t &vA, uint32_t &vB, uint64_t &vB_wide, uint32_t &vC, uint32_t arg[]) const;
279 // Fills the given array with the 'arg' array of the instruction.
442 uint32_t arg[5]; /* vC/D/E/F/G in invoke or filled-new-array */ member in struct:art::DecodedInstruction
446 inst->Decode(vA, vB, vB_wide, vC, arg);
H A Dintern_table_test.cc84 bool IsMarked(const mirror::Object* object, void* arg) { argument
85 return reinterpret_cast<TestPredicate*>(arg)->IsMarked(object);
H A Dreference_table.cc234 void ReferenceTable::VisitRoots(RootVisitor* visitor, void* arg) { argument
236 visitor(ref, arg);
H A Dsignal_catcher.cc183 void* SignalCatcher::Run(void* arg) { argument
184 SignalCatcher* signal_catcher = reinterpret_cast<SignalCatcher*>(arg);
H A Dthread_pool.cc55 void* ThreadPoolWorker::Callback(void* arg) { argument
56 ThreadPoolWorker* worker = reinterpret_cast<ThreadPoolWorker*>(arg);
H A Dthread.h407 void VisitRoots(RootVisitor* visitor, void* arg) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
409 void VerifyRoots(VerifyRootVisitor* visitor, void* arg)
524 void SirtVisitRoots(RootVisitor* visitor, void* arg);
629 static void* CreateCallback(void* arg);
648 static void ThreadExitCallback(void* arg);
H A Dreflection.cc77 mirror::Object* arg = objects->Get(i); local
79 if (!UnboxPrimitiveForArgument(arg, dst_class, decoded_args[i], m, i)) {
83 args[i].l = soa.AddLocalReference<jobject>(arg);
H A Dindirect_reference_table.h310 void VisitRoots(RootVisitor* visitor, void* arg);
H A Djni_internal.h101 void SweepWeakGlobals(IsMarkedTester is_marked, void* arg);
H A Dthread_list.cc564 void ThreadList::VisitRoots(RootVisitor* visitor, void* arg) const {
567 thread->VisitRoots(visitor, arg);
571 void ThreadList::VerifyRoots(VerifyRootVisitor* visitor, void* arg) const {
574 thread->VerifyRoots(visitor, arg);
H A Dthread_pool.h50 static void* Callback(void* arg) LOCKS_EXCLUDED(Locks::mutator_lock_);
H A Dtrace.h101 static void* RunSamplingThread(void* arg) LOCKS_EXCLUDED(Locks::trace_lock_);
H A Dindirect_reference_table.cc311 void IndirectReferenceTable::VisitRoots(RootVisitor* visitor, void* arg) { argument
313 visitor(*ref, arg);
/art/runtime/jdwp/
H A Djdwp_main.cc33 static void* StartJdwpThread(void* arg);
402 static void* StartJdwpThread(void* arg) { argument
403 JdwpState* state = reinterpret_cast<JdwpState*>(arg);
/art/runtime/gc/accounting/
H A Dheap_bitmap.h86 void Walk(SpaceBitmap::Callback* callback, void* arg)
/art/runtime/base/
H A Dmutex_test.cc103 static void* Callback(void* arg) { argument
104 RecursiveLockWait* state = reinterpret_cast<RecursiveLockWait*>(arg);
/art/compiler/jni/portable/
H A Djni_compiler.cc176 ::llvm::Value* arg = local
180 args.push_back(arg);
/art/runtime/hprof/
H A Dhprof.cc487 static void RootVisitor(const mirror::Object* obj, void* arg)
489 CHECK(arg != NULL);
490 Hprof* hprof = reinterpret_cast<Hprof*>(arg);
494 static void HeapBitmapCallback(mirror::Object* obj, void* arg)
497 CHECK(arg != NULL);
498 Hprof* hprof = reinterpret_cast<Hprof*>(arg);
/art/runtime/gc/
H A Dheap.cc548 static void MSpaceChunkCallback(void* start, void* end, size_t used_bytes, void* arg) { argument
552 size_t& max_contiguous_allocation = *reinterpret_cast<size_t*>(arg);
764 void Heap::VerificationCallback(mirror::Object* obj, void* arg) { argument
766 reinterpret_cast<Heap*>(arg)->VerifyObjectBody(obj);
1343 static void RootMatchesObjectVisitor(const mirror::Object* root, void* arg) { argument
1344 mirror::Object* obj = reinterpret_cast<mirror::Object*>(arg);
1446 void* arg = const_cast<void*>(reinterpret_cast<const void*>(obj)); variable
1447 Runtime::Current()->VisitRoots(&RootMatchesObjectVisitor, arg, false, false);
1450 arg = const_cast<void*>(reinterpret_cast<const void*>(ref));
1451 Runtime::Current()->VisitRoots(&RootMatchesObjectVisitor, arg, fals
1462 VerifyRoots(const mirror::Object* root, void* arg) argument
[all...]

Completed in 402 milliseconds

123