Home
last modified time | relevance | path

Searched refs:runtime_flags (Results 1 – 3 of 3) sorted by relevance

/art/runtime/native/
Ddalvik_system_ZygoteHooks.cc164 static uint32_t EnableDebugFeatures(uint32_t runtime_flags) { in EnableDebugFeatures() argument
166 if ((runtime_flags & DEBUG_ENABLE_CHECKJNI) != 0) { in EnableDebugFeatures()
177 runtime_flags &= ~DEBUG_ENABLE_CHECKJNI; in EnableDebugFeatures()
180 if ((runtime_flags & DEBUG_ENABLE_JNI_LOGGING) != 0) { in EnableDebugFeatures()
182 runtime_flags &= ~DEBUG_ENABLE_JNI_LOGGING; in EnableDebugFeatures()
185 Dbg::SetJdwpAllowed((runtime_flags & DEBUG_ENABLE_JDWP) != 0); in EnableDebugFeatures()
186 runtime_flags &= ~DEBUG_ENABLE_JDWP; in EnableDebugFeatures()
188 const bool safe_mode = (runtime_flags & DEBUG_ENABLE_SAFEMODE) != 0; in EnableDebugFeatures()
193 runtime_flags &= ~DEBUG_ENABLE_SAFEMODE; in EnableDebugFeatures()
197 runtime_flags &= ~DEBUG_ENABLE_ASSERT; in EnableDebugFeatures()
[all …]
/art/runtime/
Dhidden_api.h244 uint32_t runtime_flags = 0u; in CreateRuntimeFlags_Impl() local
250 runtime_flags |= kAccPublicApi; in CreateRuntimeFlags_Impl()
255 runtime_flags |= kAccCorePlatformApi; in CreateRuntimeFlags_Impl()
259 DCHECK_EQ(runtime_flags & kAccHiddenapiBits, runtime_flags) in CreateRuntimeFlags_Impl()
261 return runtime_flags; in CreateRuntimeFlags_Impl()
Dhidden_api.cc693 const uint32_t runtime_flags = GetRuntimeFlags(member); in ShouldDenyAccessToMember() local
697 if ((runtime_flags & kAccPublicApi) != 0) { in ShouldDenyAccessToMember()
744 if ((runtime_flags & kAccCorePlatformApi) != 0) { in ShouldDenyAccessToMember()