Home
last modified time | relevance | path

Searched refs:is_native (Results 1 – 8 of 8) sorted by relevance

/aosp12/system/bt/osi/src/
H A Dwakelock.cc48 static bool is_native = true; variable
97 is_native = (wakelock_os_callouts == NULL); in wakelock_set_os_callouts()
98 LOG_INFO("%s set to %s", __func__, (is_native) ? "native" : "non-native"); in wakelock_set_os_callouts()
106 if (is_native) in wakelock_acquire()
152 if (is_native) in wakelock_release()
186 if (is_native) wakelock_initialize_native(); in wakelock_initialize()
/aosp12/build/make/core/
H A Dautogen_test_config.mk28 ifeq (true,$(is_native))
36 ifeq (true,$(is_native))
H A Dbase_rules.mk692 is_native :=
695 is_native := true
735 ifneq (true,$(is_native))
752 ifeq (true, $(filter true,$(is_native) $(is_instrumentation_test)))
854 is_native :=
/aosp12/art/test/910-methods/
H A Dmethods.cc160 jboolean is_native; in Java_art_Test910_isMethodNative() local
161 jvmtiError result = jvmti_env->IsMethodNative(id, &is_native); in Java_art_Test910_isMethodNative()
166 return is_native; in Java_art_Test910_isMethodNative()
/aosp12/system/bt/gd/os/
H A Dwakelock_manager.fbs9 is_native:bool;
/aosp12/system/bt/gd/os/linux_generic/
H A Dwakelock_manager.cc134 flatbuffers::FlatBufferBuilder* fb_builder, bool is_native) const { in GetDumpsysData()
162 builder.add_is_native(is_native); in GetDumpsysData()
/aosp12/art/compiler/jni/quick/
H A Djni_compiler.cc119 const bool is_native = (access_flags & kAccNative) != 0; in ArtJniCompileMethodInternal() local
120 CHECK(is_native); in ArtJniCompileMethodInternal()
/aosp12/art/runtime/
H A Ddebugger.cc619 void AppendChunk(uint8_t state, void* ptr, size_t length, bool is_native) in AppendChunk() argument
627 if (is_native) { in AppendChunk()