HomeSort by relevance Sort by last modified time
    Searched defs:native_method (Results 1 - 3 of 3) sorted by null

  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
ClassHasNativeVisitorTest.java 41 assertArrayEquals(new String[] { "native_method" }, cv.getMethodsFound());
86 native_method(); method
89 private native void native_method(); method in class:ClassHasNativeVisitorTest.ClassWithNative
  /art/runtime/mirror/
art_method.cc 302 void* native_method = GetFieldPtr<void*>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, native_method_), false); local
303 CHECK(native_method != NULL);
305 return native_method != jni_stub;
309 void ArtMethod::RegisterNative(Thread* self, const void* native_method) {
312 CHECK(native_method != NULL) << PrettyMethod(this);
314 SetNativeMethod(native_method);
326 reinterpret_cast<const uint8_t*>(native_method), false);
336 void ArtMethod::SetNativeMethod(const void* native_method) {
338 native_method, false); local
  /art/runtime/
jni_internal.cc 3263 void* native_method; local
    [all...]

Completed in 38 milliseconds