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

  /art/runtime/
jni_env_ext.h 41 struct JNIEnvExt : public JNIEnv {
42 // Creates a new JNIEnvExt. Returns null on error, in which case error_msg
44 static JNIEnvExt* Create(Thread* self, JavaVMExt* vm, std::string* error_msg);
46 ~JNIEnvExt();
131 JNIEnvExt(Thread* self, JavaVMExt* vm, std::string* error_msg)
140 // Used to save and restore the JNIEnvExt state when not going through code created by the JNI
144 explicit ScopedJniEnvLocalRefState(JNIEnvExt* env) : env_(env) {
155 JNIEnvExt* const env_;
jni_env_ext.cc 41 const JNINativeInterface* JNIEnvExt::table_override_ = nullptr;
46 static bool CheckLocalsValid(JNIEnvExt* in) NO_THREAD_SAFETY_ANALYSIS {
53 jint JNIEnvExt::GetEnvHandler(JavaVMExt* vm, /*out*/void** env, jint version) {
67 JNIEnvExt* JNIEnvExt::Create(Thread* self_in, JavaVMExt* vm_in, std::string* error_msg) {
68 std::unique_ptr<JNIEnvExt> ret(new JNIEnvExt(self_in, vm_in, error_msg));
75 JNIEnvExt::JNIEnvExt(Thread* self_in, JavaVMExt* vm_in, std::string* error_msg)
90 void JNIEnvExt::SetFunctionsToRuntimeShutdownFunctions()
    [all...]

Completed in 44 milliseconds