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

1 2

  /art/runtime/
thread_state.h 43 kNative, // RUNNABLE TS_RUNNING running in a JNI native method
runtime.cc 321 ScopedThreadStateChange tsc(Thread::Current(), kNative);
411 // Restore main thread state to kNative as expected by native code.
414 self->TransitionFromRunnableToSuspended(kNative);
572 // Must be in the kNative state for calling native methods.
573 CHECK_EQ(self->GetState(), kNative);
911 // Must be in the kNative state for calling native methods (JNI_OnLoad code).
912 CHECK_EQ(self->GetState(), kNative);
934 self->TransitionFromRunnableToSuspended(kNative);
    [all...]
common_runtime_test.cc 226 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
thread.cc 397 self->SetState(kNative);
    [all...]
  /art/runtime/native/
dalvik_system_VMStack.cc 36 soa.Self()->TransitionFromRunnableToSuspended(kNative);
47 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kNative);
49 soa.Self()->TransitionFromRunnableToSuspended(kNative);
58 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kNative);
java_lang_Thread.cc 76 case kNative: return kJavaRunnable;
  /art/runtime/interpreter/
interpreter.cc 146 ScopedThreadStateChange tsc(self, kNative);
155 ScopedThreadStateChange tsc(self, kNative);
162 ScopedThreadStateChange tsc(self, kNative);
169 ScopedThreadStateChange tsc(self, kNative);
176 ScopedThreadStateChange tsc(self, kNative);
187 ScopedThreadStateChange tsc(self, kNative);
196 ScopedThreadStateChange tsc(self, kNative);
206 ScopedThreadStateChange tsc(self, kNative);
213 ScopedThreadStateChange tsc(self, kNative);
220 ScopedThreadStateChange tsc(self, kNative);
    [all...]
  /external/skia/bench/
benchmain.cpp 174 static const GLContextType kNative = GrContextFactory::kNative_GLContextType;
183 static const GLContextType kNative = 0, kANGLE = 0, kDebug = 0, kNull = 0;
200 { kN32_SkColorType, "NONRENDERING", 0, Benchmark::kNonRendering_Backend, kNative, true},
201 { kN32_SkColorType, "8888", 0, Benchmark::kRaster_Backend, kNative, true},
202 { kRGB_565_SkColorType, "565", 0, Benchmark::kRaster_Backend, kNative, true},
204 { kN32_SkColorType, "GPU", 0, Benchmark::kGPU_Backend, kNative, true},
205 { kN32_SkColorType, "MSAA4", 4, Benchmark::kGPU_Backend, kNative, false},
206 { kN32_SkColorType, "MSAA16", 16, Benchmark::kGPU_Backend, kNative, false},
  /art/runtime/entrypoints/portable/
portable_jni_entrypoints.cc 30 self->TransitionFromRunnableToSuspended(kNative);
  /art/runtime/entrypoints/quick/
quick_jni_entrypoints.cc 39 self->TransitionFromRunnableToSuspended(kNative);
quick_trampoline_entrypoints_test.cc 40 t->TransitionFromRunnableToSuspended(ThreadState::kNative); // So we can shut down.
  /external/chromium_org/v8/include/
v8-profiler.h 230 kNative = 8, // Native object (not from V8 heap).
  /external/chromium_org/v8/src/
compiler.h 73 kNative = 1 << 5,
158 void MarkAsNative() { SetFlag(kNative); }
160 bool is_native() const { return GetFlag(kNative); }
heap-snapshot-generator.h 83 kNative = v8::HeapGraphNode::kNative,
  /art/runtime/jdwp/
jdwp_main.cc 428 CHECK_EQ(thread_->GetState(), kNative);
530 thread_->SetState(kNative);
  /art/compiler/
image_test.cc 160 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
image_writer.cc 130 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
154 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
    [all...]
  /art/compiler/jni/
jni_compiler_test.cc 198 EXPECT_EQ(kNative, Thread::Current()->GetState());
264 EXPECT_EQ(kNative, Thread::Current()->GetState());
295 EXPECT_EQ(kNative, Thread::Current()->GetState());
327 EXPECT_EQ(kNative, Thread::Current()->GetState());
360 EXPECT_EQ(kNative, Thread::Current()->GetState());
392 EXPECT_EQ(kNative, Thread::Current()->GetState());
423 EXPECT_EQ(kNative, Thread::Current()->GetState());
481 EXPECT_EQ(kNative, Thread::Current()->GetState());
509 EXPECT_EQ(kNative, Thread::Current()->GetState());
618 EXPECT_EQ(kNative, Thread::Current()->GetState())
    [all...]
  /art/runtime/arch/
arch_test.cc 42 t->TransitionFromRunnableToSuspended(ThreadState::kNative); // So we can shut down.
  /external/chromium_org/third_party/skia/tests/
SkpSkGrTest.cpp 256 static const GLContextType kNative = GrContextFactory::kNative_GLContextType;
410 GrContext* context = contextFactory.get(kNative);
  /external/skia/tests/
SkpSkGrTest.cpp 258 static const GLContextType kNative = GrContextFactory::kNative_GLContextType;
412 GrContext* context = contextFactory.get(kNative);
  /art/patchoat/
patchoat.cc 163 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
258 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
    [all...]
  /external/chromium_org/v8/src/arm/
builtins-arm.cc     [all...]
  /external/chromium_org/v8/src/arm64/
builtins-arm64.cc     [all...]
  /external/chromium_org/v8/src/mips/
builtins-mips.cc     [all...]

Completed in 345 milliseconds

1 2