Searched defs:Add (Results 1 - 14 of 14) sorted by relevance

/art/runtime/
H A Dsignal_set.h34 void Add(int signal) { function in class:art::SignalSet
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 Dreference_table.cc42 void ReferenceTable::Add(mirror::Object* obj) { function in class:art::ReferenceTable
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 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...]
/art/runtime/jdwp/
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);
/art/compiler/utils/
H A Ddedupe_set-inl.h69 const StoreKey* Add(Thread* self, size_t hash, const InKey& in_key) REQUIRES(!lock_) {
187 const StoreKey* DedupeSet<InKey, StoreKey, Alloc, HashType, HashFunc, kShard>::Add( function in class:art::DedupeSet
200 return shards_[shard_bin]->Add(self, shard_hash, key);
/art/runtime/gc/collector/
H A Dgarbage_collector.h49 void Add(const ObjectBytePair& other) { function in struct:art::gc::collector::ObjectBytePair
/art/compiler/optimizing/
H A Dgvn.cc29 * through the `Add` method, and the `Kill` method. The `Kill` method removes
85 void Add(HInstruction* instruction) { function in class:art::ValueSet
505 set->Add(current);
H A Dbounds_check_elimination.cc249 // Add a constant to a ValueBound.
252 ValueBound Add(int32_t c, /* out */ bool* overflow, /* out */ bool* underflow) const { function in class:art::ValueBound
350 ValueRange* Add(int32_t constant) const { function in class:art::ValueRange
352 ValueBound lower = lower_.Add(constant, &overflow, &underflow);
358 ValueBound upper = upper_.Add(constant, &overflow, &underflow);
685 right_range->GetBound().Add(left_compensation, &overflow, &underflow));
693 left_range->GetBound().Add(right_compensation, &overflow, &underflow),
760 ValueBound new_upper = upper.Add(compensation, &overflow, &underflow);
772 ValueBound new_lower = lower.Add(compensation, &overflow, &underflow);
784 ValueBound new_lower = lower.Add(compensatio
[all...]
H A Dnodes.cc570 void HLoopInformation::Add(HBasicBlock* block) { function in class:art::HLoopInformation
806 static void Add(HInstructionList* instruction_list, function in namespace:art
818 Add(&instructions_, this, instruction);
822 Add(&phis_, this, phi);
1675 void HInstructionList::Add(const HInstructionList& instruction_list) { function in class:art::HInstructionList
1855 instructions_.Add(other->GetInstructions());
1902 instructions_.Add(other->GetInstructions());
1980 loop_it.Current()->Add(block);
H A Dnodes.h139 void Add(const HInstructionList& instruction_list);
723 void Add(HBasicBlock* block);
1191 M(Add, BinaryOperation) \
1505 void Add(SideEffects other) { function in class:art::SideEffects
2012 void AddSideEffects(SideEffects other) { side_effects_.Add(other); }
4129 // TODO: Add implicit null checks in intrinsics.
4155 // TODO: Add implicit null checks in intrinsics.
4266 DECLARE_INSTRUCTION(Add);
/art/runtime/gc/allocator/
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/compiler/
H A Delf_builder.h251 Elf_Word Add(const void* data, size_t length) { function in class:art::FINAL::CachedSection
294 Elf_Word Add(const std::string& name) { function in class:art::FINAL::FINAL
298 return CachedSection::Add(name.c_str(), name.length() + 1);
352 CachedSection::Add(&null_symbol, sizeof(null_symbol));
358 void Add(Elf_Word name, function in class:art::FINAL::FINAL
372 Add(name, section_index, addr, size, binding, type);
375 void Add(Elf_Word name, function in class:art::FINAL::FINAL
388 CachedSection::Add(&sym, sizeof(sym));
645 dynstr_.Add(""); // dynstr should start with empty string.
647 Elf_Word oatdata = dynstr_.Add("oatdat
[all...]

Completed in 277 milliseconds