Searched defs:props (Results 1 - 25 of 107) sorted by relevance

12345

/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/
H A DReporter.java40 void writeReport(BenchInfo[] binfo, Properties props) argument
H A DXmlReporter.java58 public void writeReport(BenchInfo[] binfo, Properties props) argument
66 p.println("<VERSION>" + props.getProperty("java.version") +
68 p.println("<VENDOR>" + props.getProperty("java.vendor") + "</VENDOR>");
69 p.println("<DIRECTORY>" + props.getProperty("java.home") +
71 String vmName = props.getProperty("java.vm.name");
72 String vmInfo = props.getProperty("java.vm.info");
76 p.println("<OS>" + props.getProperty("os.name") +
77 " version " + props.getProperty("os.version") + "</OS>");
H A DHtmlReporter.java60 public void writeReport(BenchInfo[] binfo, Properties props) argument
77 props.getProperty(PROPNAMES[i]));
/openjdk7/jdk/src/share/native/sun/misc/
H A DVMSupport.c39 Java_sun_misc_VMSupport_initAgentProperties(JNIEnv *env, jclass cls, jobject props) argument
54 return (*InitAgentProperties_fp)(env, props);
/openjdk7/corba/src/share/classes/javax/rmi/CORBA/
H A DGetORBPropertiesFileAction.java69 private void getPropertiesFromFile( Properties props, String fileName ) argument
79 props.load( in ) ;
/openjdk7/jdk/test/java/util/ResourceBundle/Control/
H A DXMLResourceBundleTest.java96 private Properties props; field in class:XMLResourceBundleTest.XMLResourceBundle
99 props = new Properties();
100 props.loadFromXML(stream);
107 return props.get(key);
/openjdk7/jdk/src/share/classes/sun/net/
H A DNetProperties.java42 static private Properties props = new Properties(); field in class:NetProperties
70 props.load(bin);
90 String def = props.getProperty(key);
115 val = System.getProperty(key, props.getProperty(key));
144 val = System.getProperty(key, props.getProperty(key));
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DOutputPropertyUtils.java47 * @param props the list of properties that will be searched.
51 public static boolean getBooleanProperty(String key, Properties props) argument
54 String s = props.getProperty(key);
70 * @param props the list of properties that will be searched.
74 public static int getIntProperty(String key, Properties props) argument
77 String s = props.getProperty(key);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orb/
H A DAppletDataCollector.java34 AppletDataCollector( Applet app, Properties props, String localHostName, argument
37 super( props, localHostName, configurationHostName ) ;
H A DDataCollectorFactory.java37 public static DataCollector create( Applet app, Properties props, argument
49 return new AppletDataCollector( app, props, localHostName,
53 public static DataCollector create( String[] args, Properties props, argument
56 return new NormalDataCollector( args, props, localHostName,
60 public static DataCollector create( Properties props, argument
63 return new PropertyOnlyDataCollector( props, localHostName,
H A DNormalDataCollector.java38 public NormalDataCollector( String[] args, Properties props, argument
41 super( props, localHostName, configurationHostName ) ;
H A DPropertyOnlyDataCollector.java38 public PropertyOnlyDataCollector( Properties props, argument
41 super( props, localHostName, configurationHostName ) ;
/openjdk7/jdk/src/share/classes/javax/security/sasl/
H A DSaslClientFactory.java67 * @param props The possibly null set of properties used to select the SASL
95 Map<String,?> props,
101 * @param props The possibly null set of properties used to specify the
102 * security policy of the SASL mechanisms. For example, if <tt>props</tt>
107 * Non-policy related properties, if present in <tt>props</tt>, are ignored,
111 public abstract String[] getMechanismNames(Map<String,?> props); argument
90 createSaslClient( String[] mechanisms, String authorizationId, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
H A DSaslServerFactory.java65 * @param props The possibly null set of properties used to select the SASL
92 Map<String,?> props,
98 * @param props The possibly null set of properties used to specify the
99 * security policy of the SASL mechanisms. For example, if <tt>props</tt>
104 * Non-policy related properties, if present in <tt>props</tt>, are ignored,
108 public abstract String[] getMechanismNames(Map<String,?> props); argument
88 createSaslServer( String mechanism, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/
H A DCramMD5Server.java71 CramMD5Server(String protocol, String serverFqdn, Map props, argument
H A DServerFactoryImpl.java60 Map<String,?> props,
64 && PolicyUtils.checkPolicy(mechPolicies[CRAMMD5], props)) {
70 return new CramMD5Server(protocol, serverName, props, cbh);
75 public String[] getMechanismNames(Map<String,?> props) { argument
76 return PolicyUtils.filterMechs(myMechs, mechPolicies, props);
57 createSaslServer(String mech, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
H A DClientFactoryImpl.java74 Map<String,?> props,
79 && PolicyUtils.checkPolicy(mechPolicies[EXTERNAL], props)) {
83 && PolicyUtils.checkPolicy(mechPolicies[CRAMMD5], props)) {
92 && PolicyUtils.checkPolicy(mechPolicies[PLAIN], props)) {
104 public String[] getMechanismNames(Map<String,?> props) { argument
105 return PolicyUtils.filterMechs(myMechs, mechPolicies, props);
70 createSaslClient(String[] mechs, String authorizationId, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/amx/
H A DAMXUtil.java58 @param props
62 final String props)
64 return newObjectName(domain + ":" + props);
60 newObjectName( final String domain, final String props) argument
/openjdk7/jdk/test/java/lang/management/RuntimeMXBean/
H A DGetSystemProperties.java50 Properties props = System.getProperties();
55 System.setProperties(new Properties(props));
59 System.setProperties(props);
67 Map<String,String> props = mbean.getSystemProperties();
68 printProperties(props);
111 private static void printProperties(Map<String,String> props) { argument
112 Set<Map.Entry<String,String>> set = props.entrySet();
/openjdk7/jdk/test/java/rmi/activation/CommandEnvironment/
H A DSetChildEnv.java60 // don't embed spaces in any of the test args/props, because
86 String[] props, // extra system properties
104 // compile props
110 for (i = 0; i < props.length; i++) {
111 p.put(props[i].substring(0, props[i].indexOf('=')),
112 props[i].substring(props[i].indexOf('=')+1));
193 for (m = 0; m < props.length; m++) {
194 if (!argset.contains("-D" + props[
84 runwith( String[] params, String[] props, int port ) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DVMSupport.java51 private static native Properties initAgentProperties(Properties props); argument
61 Properties props = new Properties();
67 props.put(key, value);
70 props.store(out, null);
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/digest/
H A DFactoryImpl.java67 Map<String,?> props, CallbackHandler cbh)
72 PolicyUtils.checkPolicy(mechPolicies[DIGEST_MD5], props)) {
82 protocol, serverName, props, cbh);
96 String protocol, String serverName, Map<String,?> props, CallbackHandler cbh)
100 PolicyUtils.checkPolicy(mechPolicies[DIGEST_MD5], props)) {
109 return new DigestMD5Server(protocol, serverName, props, cbh);
65 createSaslClient(String[] mechs, String authorizationId, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
95 createSaslServer(String mech, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/gsskerb/
H A DFactoryImpl.java57 Map<String,?> props,
62 && PolicyUtils.checkPolicy(mechPolicies[GSS_KERB_V5], props)) {
67 props,
77 Map<String,?> props,
80 && PolicyUtils.checkPolicy(mechPolicies[GSS_KERB_V5], props)) {
88 props,
94 public String[] getMechanismNames(Map<String,?> props) { argument
95 return PolicyUtils.filterMechs(myMechs, mechPolicies, props);
53 createSaslClient(String[] mechs, String authorizationId, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
74 createSaslServer(String mech, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
H A DGssKrb5Client.java96 Map props, CallbackHandler cbh) throws SaslException {
98 super(props, MY_CLASS_NAME);
113 if (props != null) {
114 Object prop = props.get(Sasl.CREDENTIALS);
135 if (props != null) {
137 String prop = (String)props.get(Sasl.SERVER_AUTH);
95 GssKrb5Client(String authzID, String protocol, String serverName, Map props, CallbackHandler cbh) argument
H A DGssKrb5Server.java80 Map props, CallbackHandler cbh) throws SaslException {
82 super(props, MY_CLASS_NAME);
79 GssKrb5Server(String protocol, String serverName, Map props, CallbackHandler cbh) argument

Completed in 60 milliseconds

12345