Home
last modified time | relevance | path

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

/art/test/674-hiddenapi/
Dhiddenapi.cc89 std::vector<std::string> exemptions; in Java_Main_setSdkAll() local
91 exemptions.push_back("L"); in Java_Main_setSdkAll()
93 Runtime::Current()->SetHiddenApiExemptions(exemptions); in Java_Main_setSdkAll()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc81 jobjectArray exemptions) { in VMRuntime_setHiddenApiExemptions() argument
83 int exemptions_length = env->GetArrayLength(exemptions); in VMRuntime_setHiddenApiExemptions()
85 jstring exemption = reinterpret_cast<jstring>(env->GetObjectArrayElement(exemptions, i)); in VMRuntime_setHiddenApiExemptions()
/art/runtime/
Dhidden_api.cc232 bool MemberSignature::DoesPrefixMatchAny(const std::vector<std::string>& exemptions) { in DoesPrefixMatchAny() argument
233 for (const std::string& exemption : exemptions) { in DoesPrefixMatchAny()
Dhidden_api.h199 bool DoesPrefixMatchAny(const std::vector<std::string>& exemptions);
Druntime.h629 void SetHiddenApiExemptions(const std::vector<std::string>& exemptions) { in SetHiddenApiExemptions() argument
630 hidden_api_exemptions_ = exemptions; in SetHiddenApiExemptions()