Home
last modified time | relevance | path

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

/art/runtime/native/
Ddalvik_system_ZygoteHooks.cc163 static uint32_t EnableDebugFeatures(uint32_t runtime_flags) { in EnableDebugFeatures() argument
165 if ((runtime_flags & DEBUG_ENABLE_CHECKJNI) != 0) { in EnableDebugFeatures()
175 runtime_flags &= ~DEBUG_ENABLE_CHECKJNI; in EnableDebugFeatures()
178 if ((runtime_flags & DEBUG_ENABLE_JNI_LOGGING) != 0) { in EnableDebugFeatures()
180 runtime_flags &= ~DEBUG_ENABLE_JNI_LOGGING; in EnableDebugFeatures()
183 Dbg::SetJdwpAllowed((runtime_flags & DEBUG_ENABLE_JDWP) != 0); in EnableDebugFeatures()
184 runtime_flags &= ~DEBUG_ENABLE_JDWP; in EnableDebugFeatures()
186 const bool safe_mode = (runtime_flags & DEBUG_ENABLE_SAFEMODE) != 0; in EnableDebugFeatures()
191 runtime_flags &= ~DEBUG_ENABLE_SAFEMODE; in EnableDebugFeatures()
195 runtime_flags &= ~DEBUG_ENABLE_ASSERT; in EnableDebugFeatures()
[all …]
/art/runtime/
Dhidden_api.h239 uint32_t runtime_flags = 0u; in CreateRuntimeFlags_Impl() local
245 runtime_flags |= kAccPublicApi; in CreateRuntimeFlags_Impl()
250 runtime_flags |= kAccCorePlatformApi; in CreateRuntimeFlags_Impl()
254 DCHECK_EQ(runtime_flags & kAccHiddenapiBits, runtime_flags) in CreateRuntimeFlags_Impl()
256 return runtime_flags; in CreateRuntimeFlags_Impl()
422 const uint32_t runtime_flags = GetRuntimeFlags(member); in ShouldDenyAccessToMember() local
426 if ((runtime_flags & kAccPublicApi) != 0) { in ShouldDenyAccessToMember()
473 if ((runtime_flags & kAccCorePlatformApi) != 0) { in ShouldDenyAccessToMember()