Searched refs:list (Results 1 – 16 of 16) sorted by relevance
/art/test/061-out-of-memory/src/ |
D | Main.java | 73 LinkedList<Object> list = new LinkedList<Object>(); in testOomeSmallInternal() local 82 list.add((Object)new byte[objSize]); in testOomeSmallInternal()
|
/art/compiler/utils/ |
D | scoped_hashtable.h | 39 for (typename std::list<std::map<K, V> >::const_iterator scopes_it = scopes.begin(); in Lookup() 67 std::list<std::map<K, V> > scopes;
|
/art/runtime/ |
D | instrumentation.h | 264 std::list<InstrumentationListener*> method_entry_listeners_ GUARDED_BY(Locks::mutator_lock_); 265 std::list<InstrumentationListener*> method_exit_listeners_ GUARDED_BY(Locks::mutator_lock_); 266 std::list<InstrumentationListener*> method_unwind_listeners_ GUARDED_BY(Locks::mutator_lock_); 267 std::list<InstrumentationListener*> dex_pc_listeners_ GUARDED_BY(Locks::mutator_lock_); 268 std::list<InstrumentationListener*> exception_caught_listeners_ GUARDED_BY(Locks::mutator_lock_);
|
D | thread_list.h | 98 std::list<Thread*> GetList() EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_) { in GetList() 129 std::list<Thread*> list_ GUARDED_BY(Locks::thread_list_lock_);
|
D | dex_file_verifier.cc | 1043 const DexFile::TypeList* list = reinterpret_cast<const DexFile::TypeList*>(ptr_); in CheckIntraSectionIterate() local 1044 const DexFile::TypeItem* item = &list->GetTypeItem(0); in CheckIntraSectionIterate() 1045 uint32_t count = list->Size(); in CheckIntraSectionIterate() 1047 if (!CheckPointerRange(list, list + 1, "type_list") || in CheckIntraSectionIterate() 1055 const DexFile::AnnotationSetRefList* list = in CheckIntraSectionIterate() local 1057 const DexFile::AnnotationSetRefItem* item = list->list_; in CheckIntraSectionIterate() 1058 uint32_t count = list->size_; in CheckIntraSectionIterate() 1060 if (!CheckPointerRange(list, list + 1, "annotation_set_ref_list") || in CheckIntraSectionIterate() 1644 const DexFile::AnnotationSetRefList* list = in CheckInterAnnotationSetRefList() local 1646 const DexFile::AnnotationSetRefItem* item = list->list_; in CheckInterAnnotationSetRefList() [all …]
|
D | monitor.h | 193 std::list<Monitor*> list_ GUARDED_BY(monitor_list_lock_);
|
D | monitor.cc | 960 MonitorList* list = Runtime::Current()->GetMonitorList(); in IsValidLockWord() local 961 MutexLock mu(Thread::Current(), list->monitor_list_lock_); in IsValidLockWord() 963 for (Monitor* list_mon : list->list_) { in IsValidLockWord()
|
D | instrumentation.cc | 449 std::list<InstrumentationListener*> copy(dex_pc_listeners_); in DexPcMovedEventImpl()
|
D | debugger.cc | 3039 std::list<Thread*> threads; in DdmSetThreadNotification()
|
/art/test/062-character-encodings/ |
D | info.txt | 1 Test that the list of character encodings is what we expect.
|
/art/test/092-locale/src/ |
D | Main.java | 103 String[] list = syms.getAmPmStrings(); in testDateFormatSymbols() local 104 System.out.println("USA dfs: " + Arrays.deepToString(list)); in testDateFormatSymbols()
|
/art/runtime/gc/collector/ |
D | mark_sweep.cc | 1465 void MarkSweep::PreserveSomeSoftReferences(Object** list) { in PreserveSomeSoftReferences() argument 1466 DCHECK(list != NULL); in PreserveSomeSoftReferences() 1473 while (*list != NULL) { in PreserveSomeSoftReferences() 1474 Object* ref = heap_->DequeuePendingReference(list); in PreserveSomeSoftReferences() 1491 *list = clear; in PreserveSomeSoftReferences() 1513 void MarkSweep::ClearWhiteReferences(Object** list) { in ClearWhiteReferences() argument 1514 DCHECK(list != NULL); in ClearWhiteReferences() 1515 while (*list != NULL) { in ClearWhiteReferences() 1516 Object* ref = heap_->DequeuePendingReference(list); in ClearWhiteReferences() 1526 DCHECK(*list == NULL); in ClearWhiteReferences() [all …]
|
D | mark_sweep.h | 383 void ClearWhiteReferences(mirror::Object** list)
|
/art/compiler/sea_ir/types/ |
D | type_inference.cc | 145 std::list<InstructionNode*> worklist; in ComputeTypes() 170 for (std::list<InstructionNode*>::const_iterator instruction_it = worklist.begin(); in ComputeTypes()
|
/art/runtime/gc/ |
D | heap.cc | 1913 void Heap::EnqueuePendingReference(mirror::Object* ref, mirror::Object** list) { in EnqueuePendingReference() argument 1915 DCHECK(list != NULL); in EnqueuePendingReference() 1916 if (*list == NULL) { in EnqueuePendingReference() 1919 *list = ref; in EnqueuePendingReference() 1922 (*list)->GetFieldObject<mirror::Object*>(reference_pendingNext_offset_, false); in EnqueuePendingReference() 1924 (*list)->SetFieldObject(reference_pendingNext_offset_, ref, false); in EnqueuePendingReference() 1928 mirror::Object* Heap::DequeuePendingReference(mirror::Object** list) { in DequeuePendingReference() argument 1929 DCHECK(list != NULL); in DequeuePendingReference() 1930 DCHECK(*list != NULL); in DequeuePendingReference() 1931 mirror::Object* head = (*list)->GetFieldObject<mirror::Object*>(reference_pendingNext_offset_, in DequeuePendingReference() [all …]
|
D | heap.h | 233 void EnqueueReference(mirror::Object* ref, mirror::Object** list) 236 void EnqueuePendingReference(mirror::Object* ref, mirror::Object** list) 238 mirror::Object* DequeuePendingReference(mirror::Object** list)
|