Searched refs:native_method (Results 1 - 3 of 3) sorted by relevance

/art/runtime/mirror/
H A Dart_method.cc302 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) { argument
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) { argument
338 native_method, false); local
H A Dart_method.h310 void RegisterNative(Thread* self, const void* native_method)
/art/runtime/
H A Djni_internal.cc3263 void* native_method; local
3267 native_method = libraries->FindNativeMethod(m, detail);
3270 if (native_method == NULL) {
3274 return native_method;

Completed in 74 milliseconds