Home
last modified time | relevance | path

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

/frameworks/base/tests/testables/src/android/testing/
DDexmakerShareClassLoaderRule.java43 static final String DEXMAKER_SHARE_CLASSLOADER_PROPERTY = "dexmaker.share_classloader"; field in DexmakerShareClassLoaderRule
78 final String previousValue = System.getProperty(DEXMAKER_SHARE_CLASSLOADER_PROPERTY); in wrapInSetAndClearProperty()
80 System.setProperty(DEXMAKER_SHARE_CLASSLOADER_PROPERTY, "true"); in wrapInSetAndClearProperty()
84 System.setProperty(DEXMAKER_SHARE_CLASSLOADER_PROPERTY, previousValue); in wrapInSetAndClearProperty()
86 System.clearProperty(DEXMAKER_SHARE_CLASSLOADER_PROPERTY); in wrapInSetAndClearProperty()
/frameworks/base/tests/testables/tests/src/android/testing/
DDexmakerShareClassLoaderRuleTest.java19 import static android.testing.DexmakerShareClassLoaderRule.DEXMAKER_SHARE_CLASSLOADER_PROPERTY;
44 System.clearProperty(DEXMAKER_SHARE_CLASSLOADER_PROPERTY); in setUp()
60 System.setProperty(DEXMAKER_SHARE_CLASSLOADER_PROPERTY, "asdf"); in rule_resetsProperty_toExactValue()
62 assertThat(System.getProperty(DEXMAKER_SHARE_CLASSLOADER_PROPERTY), is("asdf")); in rule_resetsProperty_toExactValue()
108 return Boolean.parseBoolean(System.getProperty(DEXMAKER_SHARE_CLASSLOADER_PROPERTY)); in readProperty()