/art/test/920-objects/src/art/ |
D | Test920.java | 50 Object[] objects = new Object[] { in testObjectHash() local 59 int hashes[] = new int[objects.length]; in testObjectHash() 61 for (int i = 0; i < objects.length; i++) { in testObjectHash() 62 hashes[i] = getObjectHashCode(objects[i]); in testObjectHash() 66 for (int i = 0; i < objects.length; i++) { in testObjectHash() 67 int ihash = System.identityHashCode(objects[i]); in testObjectHash() 69 throw new RuntimeException(objects[i] + ": " + hashes[i] + " vs " + ihash); in testObjectHash() 76 for (int i = 0; i < objects.length; i++) { in testObjectHash() 77 int newhash = getObjectHashCode(objects[i]); in testObjectHash() 79 throw new RuntimeException(objects[i] + ": " + hashes[i] + " vs " + newhash); in testObjectHash()
|
/art/test/920-objects/ |
D | Android.bp | 3 // Build rules for ART run-test `920-objects`. 16 name: "art-run-test-920-objects", 21 ":art-run-test-920-objects-expected-stdout", 22 ":art-run-test-920-objects-expected-stderr", 28 name: "art-run-test-920-objects-expected-stdout", 29 out: ["art-run-test-920-objects-expected-stdout.txt"], 36 name: "art-run-test-920-objects-expected-stderr", 37 out: ["art-run-test-920-objects-expected-stderr.txt"],
|
/art/test/1913-get-set-local-objects/ |
D | Android.bp | 3 // Build rules for ART run-test `1913-get-set-local-objects`. 16 name: "art-run-test-1913-get-set-local-objects", 21 ":art-run-test-1913-get-set-local-objects-expected-stdout", 22 ":art-run-test-1913-get-set-local-objects-expected-stderr", 28 name: "art-run-test-1913-get-set-local-objects-expected-stdout", 29 out: ["art-run-test-1913-get-set-local-objects-expected-stdout.txt"], 36 name: "art-run-test-1913-get-set-local-objects-expected-stderr", 37 out: ["art-run-test-1913-get-set-local-objects-expected-stderr.txt"],
|
/art/runtime/gc/collector/ |
D | object_byte_pair.h | 28 : objects(num_objects), bytes(num_bytes) {} in objects() function 30 objects += other.objects; in Add() 34 uint64_t objects; member
|
D | iteration.h | 55 return freed_.objects; in GetFreedObjects() 58 return freed_los_.objects; in GetFreedLargeObjects()
|
/art/test/407-arrays/src/ |
D | Main.java | 33 int[] ints, Object[] objects, long[] longs, float[] floats, in $opt$testReads() argument 50 assertNull(objects[0]); in $opt$testReads() 51 assertNull(objects[index]); in $opt$testReads() 64 int[] ints, Object[] objects, long[] longs, float[] floats, in $opt$testWrites() argument 101 objects[0] = o1; in $opt$testWrites() 102 assertEquals(o1, objects[0]); in $opt$testWrites() 104 objects[index] = o2; in $opt$testWrites() 105 assertEquals(o2, objects[index]); in $opt$testWrites()
|
/art/test/903-hello-tagging/src/art/ |
D | Test903.java | 106 Object[] objects = (Object[])result[0]; in testGetTaggedObjectsRun() local 111 printArraysSorted(objects, tags); in testGetTaggedObjectsRun() 114 private static void printArraysSorted(Object[] objects, long[] tags) { in printArraysSorted() argument 115 if (objects == null && tags == null) { in printArraysSorted() 120 int l1 = objects == null ? 0 : objects.length; in printArraysSorted() 125 tmp[i] = new Pair(objects == null ? null : objects[i], tags == null ? 0 : tags[i]); in printArraysSorted()
|
/art/tools/ahat/ |
D | README.txt | 23 * Let user re-sort sites objects info by clicking column headers. 34 * Include a link to /objects in the overview and menu? 42 objects normally sorted by 'app' heap by default. 43 * Visit /objects without parameters and verify it doesn't throw an exception. 44 * Visit /objects with an invalid site, verify it doesn't throw an exception. 45 * That we can view the list of all objects in a reasonably short amount of 76 Allow hex ids to be used for objects in query parameters. 84 Properly mark thread and non-default root objects as roots. 96 Show registered native sizes of objects. 122 Annotate char[] objects with their string values. [all …]
|
/art/test/102-concurrent-gc/ |
D | info.txt | 1 Test that attempts to hide objects from a concurrently running GC. The 2 concurrent GC should locate the "hidden" objects through a write-barrier.
|
/art/test/072-reachability-fence/ |
D | info.txt | 1 Check that reachabilityFence() prevents garbage collection of objects only referred to by a dead 4 This is not very convincing, since we currently usually keep such objects around anyway.
|
/art/test/2008-redefine-then-old-reflect-field/ |
D | info.txt | 1 Tests that j.l.r.Field objects survive across redefinitions 3 We had a bug where java.lang.reflect.Field objects would be invalid after the class of the Field
|
/art/test/540-checker-rtp-bug/ |
D | info.txt | 1 Test that we set the proper types for objects (b/25008765).
|
/art/test/152-dead-large-object/ |
D | info.txt | 1 Test that large objects are freed properly after a GC.
|
/art/test/114-ParallelGC/ |
D | info.txt | 1 Imported from oat tests. Allocates and frees objects with multiple threads.
|
/art/test/1980-obsolete-object-cleared/ |
D | info.txt | 2 obsolete/invalid reflection objects.
|
/art/test/1981-structural-redef-private-method-handles/ |
D | info.txt | 2 obsolete/invalid reflection objects.
|
/art/test/947-reflect-method/ |
D | info.txt | 3 Tests that we are able to use java/lang/reflect/Method objects to invoke methods
|
/art/test/1970-force-early-return-long/ |
D | info.txt | 4 returns of objects. It also checks some of the basic error modes.
|
/art/test/1971-multi-force-early-return/ |
D | info.txt | 4 returns of objects. It also checks some of the basic error modes.
|
/art/test/1968-force-early-return/ |
D | info.txt | 4 returns of objects. It also checks some of the basic error modes.
|
/art/test/1969-force-early-return-void/ |
D | info.txt | 4 returns of objects. It also checks some of the basic error modes.
|
/art/runtime/ |
D | image.cc | 160 const ImageSection& objects = GetObjectsSection(); in VisitObjects() local 162 for (size_t pos = kStartPos; pos < objects.Size(); ) { in VisitObjects() 163 mirror::Object* object = reinterpret_cast<mirror::Object*>(base + objects.Offset() + pos); in VisitObjects()
|
D | reflection.cc | 463 ObjPtr<mirror::ObjectArray<mirror::Object>> objects) in CheckArgsForInvokeMethod() argument 467 uint32_t arg_count = (objects == nullptr) ? 0 : objects->GetLength(); in CheckArgsForInvokeMethod() 481 ObjPtr<mirror::ObjectArray<mirror::Object>> objects, in InvokeMethodImpl() argument 488 if (!arg_array.BuildArgArrayFromObjectArray(receiver, objects, np_method, soa.Self())) { in InvokeMethodImpl() 742 ObjPtr<mirror::ObjectArray<mirror::Object>> objects = in InvokeMethod() local 745 if (!CheckArgsForInvokeMethod(np_method, objects)) { in InvokeMethod() 770 if (!InvokeMethodImpl(soa, m, np_method, receiver, objects, &shorty, &result)) { in InvokeMethod() 819 ObjPtr<mirror::ObjectArray<mirror::Object>> objects = in InvokeConstructor() local 822 if (!CheckArgsForInvokeMethod(np_method, objects)) { in InvokeConstructor() 829 InvokeMethodImpl(soa, constructor, np_method, receiver, objects, &shorty, &result); in InvokeConstructor()
|
/art/build/boot/hiddenapi/ |
D | hiddenapi-unsupported-packages.txt | 25 org.apache.xpath.objects
|
/art/runtime/gc/space/ |
D | bump_pointer_space.h | 159 void RecordFree(int32_t objects, int32_t bytes) { in RecordFree() argument 160 objects_allocated_.fetch_sub(objects, std::memory_order_relaxed); in RecordFree()
|