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

1 2

  /art/runtime/
thread_state.h 49 kNative, // RUNNABLE TS_RUNNING running in a JNI native method
monitor_test.cc 320 ScopedThreadSuspension sts(soa.Self(), kNative);
runtime.cc 460 ScopedThreadStateChange tsc(Thread::Current(), kNative);
579 // Restore main thread state to kNative as expected by native code.
582 self->TransitionFromRunnableToSuspended(kNative);
791 // Must be in the kNative state for calling native methods.
792 CHECK_EQ(self->GetState(), kNative);
    [all...]
common_runtime_test.cc 354 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
java_vm_ext.cc 469 ScopedThreadSuspension sts(self, kNative);
    [all...]
thread.cc 760 self->SetState(kNative);
    [all...]
jni_internal.cc 315 template <bool kNative>
320 if (kNative == method.IsNative() && name == method.GetName() && method.GetSignature() == sig) {
    [all...]
  /art/runtime/interpreter/
interpreter.cc 49 ScopedThreadStateChange tsc(self, kNative);
58 ScopedThreadStateChange tsc(self, kNative);
65 ScopedThreadStateChange tsc(self, kNative);
72 ScopedThreadStateChange tsc(self, kNative);
79 ScopedThreadStateChange tsc(self, kNative);
91 ScopedThreadStateChange tsc(self, kNative);
100 ScopedThreadStateChange tsc(self, kNative);
111 ScopedThreadStateChange tsc(self, kNative);
119 ScopedThreadStateChange tsc(self, kNative);
126 ScopedThreadStateChange tsc(self, kNative);
    [all...]
  /art/runtime/entrypoints/quick/
quick_jni_entrypoints.cc 41 self->TransitionFromRunnableToSuspended(kNative);
  /art/runtime/native/
dalvik_system_VMStack.cc 38 ScopedThreadSuspension sts(soa.Self(), kNative);
java_lang_Thread.cc 86 case kNative: return kJavaRunnable;
  /art/runtime/jdwp/
jdwp_main.cc 462 CHECK_EQ(thread_->GetState(), kNative);
563 thread_->SetState(kNative);
  /art/cmdline/
cmdline.h 116 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
  /external/v8/include/
v8-profiler.h 280 kNative = 8, // Native object (not from V8 heap).
  /art/compiler/jni/
jni_compiler_test.cc 202 EXPECT_EQ(kNative, Thread::Current()->GetState());
259 EXPECT_EQ(kNative, Thread::Current()->GetState());
289 EXPECT_EQ(kNative, Thread::Current()->GetState());
320 EXPECT_EQ(kNative, Thread::Current()->GetState());
352 EXPECT_EQ(kNative, Thread::Current()->GetState());
383 EXPECT_EQ(kNative, Thread::Current()->GetState());
413 EXPECT_EQ(kNative, Thread::Current()->GetState());
470 EXPECT_EQ(kNative, Thread::Current()->GetState());
497 EXPECT_EQ(kNative, Thread::Current()->GetState());
600 EXPECT_EQ(kNative, Thread::Current()->GetState())
    [all...]
  /external/v8/src/profiler/
heap-snapshot-generator.h 88 kNative = v8::HeapGraphNode::kNative,
heap-snapshot-generator.cc 151 case kNative: return "/native/";
    [all...]
  /art/runtime/gc/space/
space_test.h 242 ScopedThreadStateChange tsc(self, kNative);
  /art/compiler/optimizing/
optimizing_compiler.cc 735 ScopedThreadSuspension sts(soa.Self(), kNative);
    [all...]
  /external/skia/tests/
SkpSkGrTest.cpp 260 static const GLContextType kNative = GrContextFactory::kNative_GLContextType;
414 GrContext* context = contextFactory.get(kNative);
  /art/compiler/
image_test.cc 390 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
  /external/v8/src/parsing/
parser.h 56 FLAG_ACCESSOR(kNative, is_native, set_native)
165 kNative = 1 << 5,
    [all...]
  /art/patchoat/
patchoat.cc 180 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
    [all...]
  /art/compiler/driver/
compiler_driver.cc 693 ScopedThreadSuspension sts(self, kNative);
    [all...]
  /external/v8/test/cctest/
test-heap-profiler.cc     [all...]

Completed in 391 milliseconds

1 2