HomeSort by relevance Sort by last modified time
    Searched refs:AllocObject (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /libcore/luni/src/main/native/
sun_misc_Unsafe.cpp 23 return env->AllocObject(c);
  /art/runtime/gc/
reference_queue_test.cc 40 auto ref1(hs.NewHandle(ref_class->AllocObject(self)->AsReference()));
42 auto ref2(hs.NewHandle(ref_class->AllocObject(self)->AsReference()));
74 auto ref1(hs.NewHandle(weak_ref_class->AllocObject(self)->AsReference()));
76 auto ref2(hs.NewHandle(finalizer_ref_class->AllocObject(self)->AsReference()));
heap-inl.h 120 return AllocObject<kInstrumented>(self, klass, byte_count, pre_fence_visitor);
  /art/runtime/mirror/
method.cc 56 auto* ret = down_cast<Method*>(StaticClass()->AllocObject(self));
97 auto* ret = down_cast<Constructor*>(StaticClass()->AllocObject(self));
field-inl.h 52 auto ret = hs.NewHandle(static_cast<Field*>(StaticClass()->AllocObject(self)));
stack_trace_element.cc 46 down_cast<StackTraceElement*>(GetStackTraceElement()->AllocObject(self));
object.cc 123 // Object::SizeOf gets the right size even if we're an array. Using c->AllocObject() here would
132 copy = heap->AllocObject<true>(self, GetClass(), num_bytes, visitor);
  /art/runtime/
indirect_reference_table_test.cc 57 mirror::Object* obj0 = c->AllocObject(soa.Self());
59 mirror::Object* obj1 = c->AllocObject(soa.Self());
61 mirror::Object* obj2 = c->AllocObject(soa.Self());
63 mirror::Object* obj3 = c->AllocObject(soa.Self());
transaction_test.cc 101 Handle<mirror::Object> h_obj(hs.NewHandle(h_klass->AllocObject(soa.Self())));
118 Handle<mirror::Object> h_obj(hs.NewHandle(h_klass->AllocObject(soa.Self())));
235 Handle<mirror::Object> h_obj(hs.NewHandle(h_klass->AllocObject(soa.Self())));
283 Handle<mirror::Object> h_instance(hs.NewHandle(h_klass->AllocObject(soa.Self())));
337 Handle<mirror::Object> h_obj(hs.NewHandle(h_klass->AllocObject(soa.Self())));
454 Handle<mirror::Object> h_obj(hs.NewHandle(h_klass->AllocObject(soa.Self())));
class_linker-inl.h 158 inline mirror::Object* ClassLinker::AllocObject(Thread* self) {
monitor_test.cc 96 MutableHandle<mirror::Object> h = (*hsp)->NewHandle<mirror::Object>(c->AllocObject(self));
jni_internal_test.cc 617 TEST_F(JniInternalTest, AllocObject) {
620 jobject o = env_->AllocObject(c);
    [all...]
  /art/runtime/native/
java_lang_reflect_Constructor.cc 81 movable ? c->AllocObject(soa.Self()) : c->AllocNonMovableObject(soa.Self());
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
nmsupp.h 60 extern LPVOID WINAPI AllocObject(HOBJECTHEAP hObjectHeap);
  /art/test/004-JniTest/
jni_test.cc 588 // Test AllocObject and Call(Nonvirtual)VoidMethod
589 jstring s1 = reinterpret_cast<jstring>(env->AllocObject(c));
591 jstring s2 = reinterpret_cast<jstring>(env->AllocObject(c));
593 jstring s3 = reinterpret_cast<jstring>(env->AllocObject(c));
595 jstring s4 = reinterpret_cast<jstring>(env->AllocObject(c));
614 jstring s5 = reinterpret_cast<jstring>(env->AllocObject(c));
617 jstring s6 = reinterpret_cast<jstring>(env->AllocObject(c));
  /external/jmonkeyengine/engine/src/bullet-native/
jmeBulletUtil.cpp 312 jobject singleresult = env->AllocObject(jmeClasses::PhysicsRay_Class);
313 jobject hitnormalvec = env->AllocObject(jmeClasses::Vector3f);
  /art/runtime/entrypoints/quick/
quick_entrypoints_list.h 26 V(AllocObject, void*, uint32_t, ArtMethod*) \
  /frameworks/base/media/jni/
android_media_MediaCodecList.cpp 224 jobject profileLevelObj = env->AllocObject(profileLevelClazz);
android_media_MediaDrm.cpp 849 keyObj = env->AllocObject(clazz);
1001 provisionObj = env->AllocObject(clazz);
    [all...]
  /art/runtime/entrypoints/
entrypoint_utils.cc 134 env->AllocObject(WellKnownClasses::java_lang_StackOverflowError));
  /art/runtime/interpreter/
unstarted_runtime.cc 205 Handle<mirror::Object> h_obj(hs.NewHandle(klass->AllocObject(self)));
439 h_real_to_string_class->AllocObject(self)));
722 Handle<mirror::Object> h_obj(hs.NewHandle(h_class->AllocObject(self)));
    [all...]
  /development/ndk/platforms/android-3/include/
jni.h 205 jobject (*AllocObject)(JNIEnv*, jclass);
581 jobject AllocObject(jclass clazz)
582 { return functions->AllocObject(this, clazz); }
    [all...]
  /libnativehelper/include/nativehelper/
jni.h 191 jobject (*AllocObject)(JNIEnv*, jclass);
567 jobject AllocObject(jclass clazz)
568 { return functions->AllocObject(this, clazz); }
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
jni.h 189 jobject (*AllocObject)(JNIEnv*, jclass);
565 jobject AllocObject(jclass clazz)
566 { return functions->AllocObject(this, clazz); }
    [all...]
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/
jni.h 189 jobject (*AllocObject)(JNIEnv*, jclass);
565 jobject AllocObject(jclass clazz)
566 { return functions->AllocObject(this, clazz); }
    [all...]

Completed in 1043 milliseconds

1 2 3 4 5