Home
last modified time | relevance | path

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

/art/runtime/native/
Ddalvik_system_ZygoteHooks.cc162 static uint32_t EnableDebugFeatures(uint32_t runtime_flags) { in EnableDebugFeatures() argument
164 if ((runtime_flags & DEBUG_ENABLE_CHECKJNI) != 0) { in EnableDebugFeatures()
174 runtime_flags &= ~DEBUG_ENABLE_CHECKJNI; in EnableDebugFeatures()
177 if ((runtime_flags & DEBUG_ENABLE_JNI_LOGGING) != 0) { in EnableDebugFeatures()
179 runtime_flags &= ~DEBUG_ENABLE_JNI_LOGGING; in EnableDebugFeatures()
182 Dbg::SetJdwpAllowed((runtime_flags & DEBUG_ENABLE_JDWP) != 0); in EnableDebugFeatures()
183 runtime_flags &= ~DEBUG_ENABLE_JDWP; in EnableDebugFeatures()
185 const bool safe_mode = (runtime_flags & DEBUG_ENABLE_SAFEMODE) != 0; in EnableDebugFeatures()
190 runtime_flags &= ~DEBUG_ENABLE_SAFEMODE; in EnableDebugFeatures()
194 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()
404 const uint32_t runtime_flags = GetRuntimeFlags(member); in ShouldDenyAccessToMember() local
408 if ((runtime_flags & kAccPublicApi) != 0) { in ShouldDenyAccessToMember()
455 if ((runtime_flags & kAccCorePlatformApi) != 0) { in ShouldDenyAccessToMember()