Home
last modified time | relevance | path

Searched refs:objects (Results 1 – 25 of 41) sorted by relevance

12

/art/test/920-objects/src/art/
DTest920.java50 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/runtime/gc/collector/
Dobject_byte_pair.h28 : objects(num_objects), bytes(num_bytes) {} in objects() function
30 objects += other.objects; in Add()
34 uint64_t objects; member
Diteration.h55 return freed_.objects; in GetFreedObjects()
58 return freed_los_.objects; in GetFreedLargeObjects()
/art/test/407-arrays/src/
DMain.java33 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/
DTest903.java106 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/test/102-concurrent-gc/
Dinfo.txt1 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/tools/ahat/
DREADME.txt23 * 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
73 Allow hex ids to be used for objects in query parameters.
81 Properly mark thread and non-default root objects as roots.
93 Show registered native sizes of objects.
119 Annotate char[] objects with their string values.
[all …]
/art/test/072-reachability-fence/
Dinfo.txt1 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/
Dinfo.txt1 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/
Dinfo.txt1 Test that we set the proper types for objects (b/25008765).
/art/test/152-dead-large-object/
Dinfo.txt1 Test that large objects are freed properly after a GC.
/art/test/114-ParallelGC/
Dinfo.txt1 Imported from oat tests. Allocates and frees objects with multiple threads.
/art/test/1980-obsolete-object-cleared/
Dinfo.txt2 obsolete/invalid reflection objects.
/art/test/1981-structural-redef-private-method-handles/
Dinfo.txt2 obsolete/invalid reflection objects.
/art/test/920-objects/
DAndroid.bp3 name: "art-run-test-920-objects",
/art/test/947-reflect-method/
Dinfo.txt3 Tests that we are able to use java/lang/reflect/Method objects to invoke methods
/art/test/1913-get-set-local-objects/
DAndroid.bp3 name: "art-run-test-1913-get-set-local-objects",
/art/test/1969-force-early-return-void/
Dinfo.txt4 returns of objects. It also checks some of the basic error modes.
/art/test/1970-force-early-return-long/
Dinfo.txt4 returns of objects. It also checks some of the basic error modes.
/art/test/1971-multi-force-early-return/
Dinfo.txt4 returns of objects. It also checks some of the basic error modes.
/art/test/1968-force-early-return/
Dinfo.txt4 returns of objects. It also checks some of the basic error modes.
/art/runtime/
Dimage.cc159 const ImageSection& objects = GetObjectsSection(); in VisitObjects() local
161 for (size_t pos = kStartPos; pos < objects.Size(); ) { in VisitObjects()
162 mirror::Object* object = reinterpret_cast<mirror::Object*>(base + objects.Offset() + pos); in VisitObjects()
Dreflection.cc463 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()
733 ObjPtr<mirror::ObjectArray<mirror::Object>> objects = in InvokeMethod() local
736 if (!CheckArgsForInvokeMethod(np_method, objects)) { in InvokeMethod()
761 if (!InvokeMethodImpl(soa, m, np_method, receiver, objects, &shorty, &result)) { in InvokeMethod()
797 ObjPtr<mirror::ObjectArray<mirror::Object>> objects = in InvokeConstructor() local
800 if (!CheckArgsForInvokeMethod(np_method, objects)) { in InvokeConstructor()
807 InvokeMethodImpl(soa, constructor, np_method, receiver, objects, &shorty, &result); in InvokeConstructor()
/art/test/800-smali/smali/
Db_26594149_5.smali23 # Allowed operation on uninitialized objects.
/art/runtime/gc/space/
Dbump_pointer_space.h159 void RecordFree(int32_t objects, int32_t bytes) { in RecordFree() argument
160 objects_allocated_.fetch_sub(objects, std::memory_order_relaxed); in RecordFree()

12