Searched refs:propName (Results 1 – 8 of 8) sorted by relevance
/libcore/ojluni/src/main/java/sun/security/util/ |
D | SecurityProperties.java | 46 public static String privilegedGetOverridable(String propName) { in privilegedGetOverridable() argument 48 return getOverridableProperty(propName); in privilegedGetOverridable() 50 …n AccessController.doPrivileged((PrivilegedAction<String>) () -> getOverridableProperty(propName)); in privilegedGetOverridable() 54 private static String getOverridableProperty(String propName) { in getOverridableProperty() argument 55 String val = System.getProperty(propName); in getOverridableProperty() 57 return Security.getProperty(propName); in getOverridableProperty()
|
/libcore/ojluni/src/main/java/sun/misc/ |
D | MessageUtils.java | 81 public static String substProp(String propName, String arg) { in substProp() argument 82 return subst(System.getProperty(propName), arg); in substProp() 85 public static String substProp(String propName, String arg1, String arg2) { in substProp() argument 86 return subst(System.getProperty(propName), arg1, arg2); in substProp() 89 public static String substProp(String propName, String arg1, String arg2, in substProp() argument 91 return subst(System.getProperty(propName), arg1, arg2, arg3); in substProp()
|
/libcore/ojluni/annotations/hiddenapi/sun/misc/ |
D | MessageUtils.java | 58 public static java.lang.String substProp(java.lang.String propName, java.lang.String arg) { in substProp() argument 63 java.lang.String propName, java.lang.String arg1, java.lang.String arg2) { in substProp() argument 68 java.lang.String propName, in substProp() argument
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
D | KeyStoreTest.java | 187 String propName = "keystore.type"; in testKeyStore01() local 188 String defKSType = Security.getProperty(propName); in testKeyStore01() 198 Security.setProperty(propName, defaultType); in testKeyStore01() 200 resType = Security.getProperty(propName); in testKeyStore01()
|
/libcore/luni/src/test/java/tests/security/cert/ |
D | CertPathValidator1Test.java | 102 String propName = "certpathvalidator.type"; in testCertPathValidator01() local 103 String defCPV = Security.getProperty(propName); in testCertPathValidator01() 114 Security.setProperty(propName, defaultType); in testCertPathValidator01() 116 resType = Security.getProperty(propName); in testCertPathValidator01()
|
D | CertPathValidator2Test.java | 83 String propName = "certpathvalidator.type"; in checkResult() local 85 Security.setProperty(propName, invalidValues[i]); in checkResult() 89 Security.setProperty(propName, dt); in checkResult()
|
/libcore/ojluni/src/main/java/java/security/ |
D | Security.java | 233 String propName) { in getAlgorithmProperty() argument 234 ProviderProperty entry = getProviderProperty("Alg." + propName in getAlgorithmProperty()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/ |
D | DocumentBuilderFactoryTest.java | 704 String propName = SchemaFactory.class.getName() + ":" + language; in test_setSchemaLjavax_xml_validation_Schema() local 711 System.setProperty(propName, className); in test_setSchemaLjavax_xml_validation_Schema()
|