Home
last modified time | relevance | path

Searched refs:exemptions (Results 1 – 5 of 5) sorted by relevance

/art/test/674-hiddenapi/
Dhiddenapi.cc86 std::vector<std::string> exemptions; in Java_Main_setWhitelistAll() local
88 exemptions.push_back("L"); in Java_Main_setWhitelistAll()
90 Runtime::Current()->SetHiddenApiExemptions(exemptions); in Java_Main_setWhitelistAll()
/art/runtime/
Dhidden_api.cc184 bool MemberSignature::IsExempted(const std::vector<std::string>& exemptions) { in IsExempted() argument
185 for (const std::string& exemption : exemptions) { in IsExempted()
Druntime.h568 void SetHiddenApiExemptions(const std::vector<std::string>& exemptions) { in SetHiddenApiExemptions() argument
569 hidden_api_exemptions_ = exemptions; in SetHiddenApiExemptions()
Dhidden_api.h194 bool IsExempted(const std::vector<std::string>& exemptions);
/art/runtime/native/
Ddalvik_system_VMRuntime.cc85 jobjectArray exemptions) { in VMRuntime_setHiddenApiExemptions() argument
87 int exemptions_length = env->GetArrayLength(exemptions); in VMRuntime_setHiddenApiExemptions()
89 jstring exemption = reinterpret_cast<jstring>(env->GetObjectArrayElement(exemptions, i)); in VMRuntime_setHiddenApiExemptions()