Searched refs:propName (Results 1 - 6 of 6) sorted by relevance

/libcore/ojluni/src/main/java/sun/misc/
H A DMessageUtils.java81 public static String substProp(String propName, String arg) { argument
82 return subst(System.getProperty(propName), arg);
85 public static String substProp(String propName, String arg1, String arg2) { argument
86 return subst(System.getProperty(propName), arg1, arg2);
89 public static String substProp(String propName, String arg1, String arg2, argument
91 return subst(System.getProperty(propName), arg1, arg2, arg3);
/libcore/ojluni/src/main/java/sun/security/ssl/
H A DDebug.java178 * Return the value of the boolean System property propName.
182 static boolean getBooleanProperty(String propName, boolean defaultValue) { argument
185 new GetPropertyAction(propName));
193 throw new RuntimeException("Value of " + propName
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DKeyStoreTest.java187 String propName = "keystore.type";
188 String defKSType = Security.getProperty(propName);
198 Security.setProperty(propName, defaultType);
200 resType = Security.getProperty(propName);
/libcore/luni/src/test/java/tests/security/cert/
H A DCertPathValidator1Test.java102 String propName = "certpathvalidator.type";
103 String defCPV = Security.getProperty(propName);
114 Security.setProperty(propName, defaultType);
116 resType = Security.getProperty(propName);
H A DCertPathValidator2Test.java83 String propName = "certpathvalidator.type";
85 Security.setProperty(propName, invalidValues[i]);
89 Security.setProperty(propName, dt);
/libcore/ojluni/src/main/java/java/security/
H A DSecurity.java181 * @param propName the name of the property to get.
194 String propName) {
195 ProviderProperty entry = getProviderProperty("Alg." + propName
193 getAlgorithmProperty(String algName, String propName) argument

Completed in 374 milliseconds