Home
last modified time | relevance | path

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

/art/runtime/native/
Ddalvik_system_ZygoteHooks.cc159 static uint32_t EnableDebugFeatures(uint32_t runtime_flags) { in EnableDebugFeatures() argument
161 if ((runtime_flags & DEBUG_ENABLE_CHECKJNI) != 0) { in EnableDebugFeatures()
171 runtime_flags &= ~DEBUG_ENABLE_CHECKJNI; in EnableDebugFeatures()
174 if ((runtime_flags & DEBUG_ENABLE_JNI_LOGGING) != 0) { in EnableDebugFeatures()
176 runtime_flags &= ~DEBUG_ENABLE_JNI_LOGGING; in EnableDebugFeatures()
179 Dbg::SetJdwpAllowed((runtime_flags & DEBUG_ENABLE_JDWP) != 0); in EnableDebugFeatures()
180 runtime_flags &= ~DEBUG_ENABLE_JDWP; in EnableDebugFeatures()
182 const bool safe_mode = (runtime_flags & DEBUG_ENABLE_SAFEMODE) != 0; in EnableDebugFeatures()
187 runtime_flags &= ~DEBUG_ENABLE_SAFEMODE; in EnableDebugFeatures()
191 runtime_flags &= ~DEBUG_ENABLE_ASSERT; in EnableDebugFeatures()
[all …]
/art/runtime/
Dhidden_api.h234 uint32_t runtime_flags = 0u; in CreateRuntimeFlags_Impl() local
240 runtime_flags |= kAccPublicApi; in CreateRuntimeFlags_Impl()
245 runtime_flags |= kAccCorePlatformApi; in CreateRuntimeFlags_Impl()
249 DCHECK_EQ(runtime_flags & kAccHiddenapiBits, runtime_flags) in CreateRuntimeFlags_Impl()
251 return runtime_flags; in CreateRuntimeFlags_Impl()
390 const uint32_t runtime_flags = GetRuntimeFlags(member); in ShouldDenyAccessToMember() local
394 if ((runtime_flags & kAccPublicApi) != 0) { in ShouldDenyAccessToMember()
441 if ((runtime_flags & kAccCorePlatformApi) != 0) { in ShouldDenyAccessToMember()