Searched defs:global (Results 1 - 3 of 3) sorted by relevance

/art/test/130-hprof/src/
H A DMain.java30 private static void fillArray(Object global[], Object local[], int i) { argument
32 local[0] = global;
34 local[j] = global[j];
/art/runtime/jdwp/
H A Dobject_registry.cc140 // We must not hold the mutator lock exclusively if we want to delete weak global
142 // 1. GC thread disables access to weak global references, then releases
148 // 4. JDWP thread clears weak global references but need to wait for GC
215 jobject global = entry.jni_reference; local
218 env->DeleteGlobalRef(global);
/art/runtime/
H A Djni_internal_test.cc1364 jobject global = env_->NewGlobalRef(local); local
1365 EXPECT_EQ(JNIGlobalRefType, env_->GetObjectRefType(global));
1394 Runtime::Current()->GetHeap()->CollectGarbage(false); // GC should clear the weak global.
1963 std::string expected(StringPrintf("use of deleted global reference %p", o));
2016 std::string expected(StringPrintf("use of deleted weak global reference %p", o));
2235 // As re-attaching will create a different thread, we need to use a global
2258 // Look at the global ref, check whether it's still locked.
2261 // Delete the global ref.

Completed in 136 milliseconds