Searched refs:Add (Results 1 - 25 of 44) sorted by last modified time

12

/art/test/
H A DAndroid.run-test.mk815 # Add the core dependency. This is required for pre-building.
824 # Add the core dependency.
/art/runtime/arch/mips/
H A Dquick_entrypoints_mips.S1520 # Add a fake dependence from the following access flag and size loads to the status load. This
1678 addu $t0, $t1, $t0 # Add offset to base.
/art/runtime/arch/mips64/
H A Dquick_entrypoints_mips64.S1549 # Add a fake dependence from the following access flag and size loads to the status load. This
1697 daddu $t0, $t1, $t0 # Add offset to base.
/art/runtime/
H A Dclass_linker.cc1240 // Add image classes into the class table for the class loader, and fixup the dex caches and
1688 // Add the temporary dex path list elements at the end.
1988 // Add 100 in case new classes get loaded when we are filling in the object array.
2508 // Add the newly loaded class to the loaded classes table.
5064 // Add to the list so that we know to free the data later.
5631 void Add(uint32_t virtual_method_index) SHARED_REQUIRES(Locks::mutator_lock_) {
5769 // 3. Add non overridden methods to the end of the vtable.
5784 // Add virtual methods to the hash table.
5788 hash_table.Add(i);
5869 // Add th
[all...]
H A Ddebugger.cc739 *class_object_id = gRegistry->Add(c);
754 *superclass_id = gRegistry->Add(c->GetSuperClass());
765 expandBufAddObjectId(pReply, gRegistry->Add(c->GetClassLoader()));
808 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
810 expandBufAddObjectId(reply, gRegistry->Add(nullptr));
815 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
846 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
883 // Add() requires the thread_list_lock_ not held to avoid the lock
885 *contended_monitor = gRegistry->Add(contended_monitor_obj);
921 instances->push_back(gRegistry->Add(raw_instance
4870 void Add(const std::string& str) { function in class:art::StringTable
4874 void Add(const char* str) { function in class:art::StringTable
[all...]
H A Dindirect_reference_table.cc121 IndirectRef IndirectReferenceTable::Add(uint32_t cookie, mirror::Object* obj) { function in class:art::IndirectReferenceTable
156 // Add to the end.
160 table_[index].Add(obj);
H A Dindirect_reference_table.h203 void Add(mirror::Object* obj) SHARED_REQUIRES(Locks::mutator_lock_) {
275 * Add a new entry. "obj" must be a valid non-nullptr object reference.
280 IndirectRef Add(uint32_t cookie, mirror::Object* obj)
H A Dindirect_reference_table_test.cc73 // Add three, check, remove in the order in which they were added.
74 iref0 = irt.Add(cookie, obj0);
77 IndirectRef iref1 = irt.Add(cookie, obj1);
80 IndirectRef iref2 = irt.Add(cookie, obj2);
101 // Add three, remove in the opposite order.
102 iref0 = irt.Add(cookie, obj0);
104 iref1 = irt.Add(cookie, obj1);
106 iref2 = irt.Add(cookie, obj2);
120 // Add three, remove middle / middle / bottom / top. (Second attempt
122 iref0 = irt.Add(cooki
[all...]
H A Djava_vm_ext.cc527 IndirectRef ref = globals_.Add(IRT_FIRST_SEGMENT, obj);
539 IndirectRef ref = weak_globals_.Add(IRT_FIRST_SEGMENT, obj);
H A Djni_env_ext-inl.h28 IndirectRef ref = locals.Add(local_ref_cookie, obj);
H A Djni_env_ext.cc83 return reinterpret_cast<jobject>(locals.Add(local_ref_cookie, obj));
H A Djni_internal.cc73 // Add the missing "L;" if necessary.
2240 soa.Env()->monitors.Add(o);
H A Dmonitor.cc373 // Add info for contending thread.
603 * Add ourselves to the set of threads waiting on this monitor, and
816 Runtime::Current()->GetMonitorList()->Add(m);
1329 void MonitorList::Add(Monitor* m) { function in class:art::MonitorList
H A Dmonitor.h325 void Add(Monitor* m) SHARED_REQUIRES(Locks::mutator_lock_) REQUIRES(!monitor_list_lock_);
H A Dreference_table.cc42 void ReferenceTable::Add(mirror::Object* obj) { function in class:art::ReferenceTable
H A Dreference_table.h44 void Add(mirror::Object* obj) SHARED_REQUIRES(Locks::mutator_lock_);
H A Dreference_table_test.cc53 // Add o1 and check we have 1 element and can dump.
55 rt.Add(o1);
63 // Add a second object 10 times and check dumping is sane.
66 rt.Add(o2);
/art/runtime/gc/allocator/
H A Drosalloc.cc886 free_list_.Add(slot);
936 free_list->Add(slot);
1701 // Add the padding for the alignment remainder.
H A Drosalloc.h190 void Add(Slot* slot) { function in class:art::gc::allocator::RosAlloc::SlotFreeList
405 // Add backwards so the first slot is at the head of the list.
407 free_list_.Add(slot);
424 // Add the given slot to the bulk free list. Returns the bracket size.
426 // Add the given slot to the thread-local free list.
/art/runtime/gc/collector/
H A Dgarbage_collector.cc55 // Add 1ms to prevent possible division by 0.
88 // Add the current timings to the cumulative timings.
142 // Add 1ms to prevent possible division by 0.
176 GetCurrentIteration()->freed_.Add(freed);
180 GetCurrentIteration()->freed_los_.Add(freed);
H A Dgarbage_collector.h49 void Add(const ObjectBytePair& other) { function in struct:art::gc::collector::ObjectBytePair
/art/runtime/interpreter/
H A Dsafe_math_test.cc26 TEST(SafeMath, Add) {
/art/runtime/jdwp/
H A Djdwp_event.cc180 * Add an event to the list. Ordering is not important.
235 * Add to list.
955 ObjectId instance_id = registry->Add(basket.thisPtr);
1138 ObjectId exceptionId = registry->Add(exception_object);
H A Dobject_registry.cc39 return Add(c);
43 return Add(c_h);
46 JDWP::ObjectId ObjectRegistry::Add(mirror::Object* o) { function in class:art::ObjectRegistry
57 JDWP::ObjectId ObjectRegistry::Add(Handle<T> obj_h) { function in class:art::ObjectRegistry
68 JDWP::ObjectId ObjectRegistry::Add(Handle<mirror::Object> obj_h);
73 JDWP::ObjectId ObjectRegistry::Add(Handle<mirror::Throwable> obj_h);
H A Dobject_registry.h47 // The corresponding id, so we only need one map lookup in Add.
65 JDWP::ObjectId Add(mirror::Object* o)
74 JDWP::ObjectId Add(Handle<T> obj_h)

Completed in 205 milliseconds

12