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

1 2

  /art/runtime/
thread_state.h 41 kNative, // RUNNABLE TS_RUNNING running in a JNI native method
runtime.cc 236 ScopedThreadStateChange tsc(Thread::Current(), kNative);
713 // Restore main thread state to kNative as expected by native code.
715 self->TransitionFromRunnableToSuspended(kNative);
815 // Must be in the kNative state for calling native methods.
816 CHECK_EQ(self->GetState(), kNative);
    [all...]
common_test.h 312 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
thread.cc 337 self->SetState(kNative);
868 // We don't just check kNative because native methods will be in state kSuspended if they're
    [all...]
  /external/skia/bench/
benchmain.cpp 199 static const GLContextType kNative = GrContextFactory::kNative_GLContextType;
207 static const GLContextType kNative = 0, kANGLE = 0, kDebug = 0, kNull = 0;
224 { SkBitmap::kNo_Config, "NONRENDERING", 0, SkBenchmark::kNonRendering_Backend, kNative, true},
225 { SkBitmap::kARGB_8888_Config, "8888", 0, SkBenchmark::kRaster_Backend, kNative, true},
226 { SkBitmap::kRGB_565_Config, "565", 0, SkBenchmark::kRaster_Backend, kNative, true},
228 { SkBitmap::kARGB_8888_Config, "GPU", 0, SkBenchmark::kGPU_Backend, kNative, true},
229 { SkBitmap::kARGB_8888_Config, "MSAA4", 4, SkBenchmark::kGPU_Backend, kNative, false},
230 { SkBitmap::kARGB_8888_Config, "MSAA16", 16, SkBenchmark::kGPU_Backend, kNative, false},
  /art/runtime/entrypoints/portable/
portable_jni_entrypoints.cc 30 self->TransitionFromRunnableToSuspended(kNative);
  /art/runtime/entrypoints/quick/
quick_jni_entrypoints.cc 36 self->TransitionFromRunnableToSuspended(kNative);
  /art/compiler/jni/
jni_compiler_test.cc 126 EXPECT_EQ(kNative, Thread::Current()->GetState());
180 EXPECT_EQ(kNative, Thread::Current()->GetState());
206 EXPECT_EQ(kNative, Thread::Current()->GetState());
233 EXPECT_EQ(kNative, Thread::Current()->GetState());
261 EXPECT_EQ(kNative, Thread::Current()->GetState());
290 EXPECT_EQ(kNative, Thread::Current()->GetState());
316 EXPECT_EQ(kNative, Thread::Current()->GetState());
367 EXPECT_EQ(kNative, Thread::Current()->GetState());
390 EXPECT_EQ(kNative, Thread::Current()->GetState());
419 EXPECT_EQ(kNative, Thread::Current()->GetState())
    [all...]
  /external/chromium_org/v8/include/
v8-profiler.h 259 kNative = 8, // Native object (not from V8 heap).
  /external/v8/include/
v8-profiler.h 258 kNative = 8, // Native object (not from V8 heap).
  /art/runtime/interpreter/
interpreter.cc 241 ScopedThreadStateChange tsc(self, kNative);
250 ScopedThreadStateChange tsc(self, kNative);
257 ScopedThreadStateChange tsc(self, kNative);
264 ScopedThreadStateChange tsc(self, kNative);
271 ScopedThreadStateChange tsc(self, kNative);
282 ScopedThreadStateChange tsc(self, kNative);
291 ScopedThreadStateChange tsc(self, kNative);
300 ScopedThreadStateChange tsc(self, kNative);
307 ScopedThreadStateChange tsc(self, kNative);
314 ScopedThreadStateChange tsc(self, kNative);
    [all...]
  /art/runtime/jdwp/
jdwp_main.cc 431 CHECK_EQ(thread_->GetState(), kNative);
535 thread_->SetState(kNative);
  /art/compiler/
image_test.cc 131 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
image_writer.cc 113 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
142 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
  /art/runtime/native/
java_lang_Thread.cc 74 case kNative: return kJavaRunnable;
  /external/chromium_org/v8/src/
heap-snapshot-generator.h 104 kNative = v8::HeapGraphNode::kNative,
  /external/skia/tests/
SkpSkGrTest.cpp 258 static const GLContextType kNative = GrContextFactory::kNative_GLContextType;
412 GrContext* context = contextFactory.get(kNative);
  /external/v8/src/
profile-generator.h 530 kNative = v8::HeapGraphNode::kNative,
    [all...]
  /art/runtime/gc/
heap.cc     [all...]
  /external/chromium_org/v8/src/arm/
builtins-arm.cc     [all...]
  /external/chromium_org/v8/src/mips/
builtins-mips.cc     [all...]
  /external/v8/src/arm/
builtins-arm.cc     [all...]
  /external/v8/src/mips/
builtins-mips.cc     [all...]
  /external/v8/test/cctest/
test-heap-profiler.cc 882 native_group_aaa, v8::HeapGraphNode::kNative, "aaa / 100 entries");
889 native_group_ccc, v8::HeapGraphNode::kNative, "ccc");
    [all...]
  /art/dex2oat/
dex2oat.cc     [all...]

Completed in 1548 milliseconds

1 2