Searched refs:props (Results 1 - 25 of 213) sorted by relevance

123456789

/openjdk7/jdk/make/tools/GenerateCharacter/
H A DCharacterData0E.java.template70 int props = $$Lookup(offset);
71 return props;
76 int props = $$LookupEx(offset);
77 return props;
81 int props = getPropertiesEx(ch);
82 return (props & $$maskOtherLowercase) != 0;
86 int props = getPropertiesEx(ch);
87 return (props & $$maskOtherUppercase) != 0;
91 int props = getPropertiesEx(ch);
92 return (props
[all...]
H A DCharacterData02.java.template70 int props = $$Lookup(offset);
71 return props;
76 int props = $$LookupEx(offset);
77 return props;
81 int props = getPropertiesEx(ch);
82 return (props & $$maskOtherLowercase) != 0;
86 int props = getPropertiesEx(ch);
87 return (props & $$maskOtherUppercase) != 0;
91 int props = getPropertiesEx(ch);
92 return (props
[all...]
H A DCharacterDataLatin1.java.template71 int props = $$Lookup(offset);
72 return props;
77 int props = $$LookupEx(offset);
78 return props;
82 int props = getPropertiesEx(ch);
83 return (props & $$maskOtherLowercase) != 0;
87 int props = getPropertiesEx(ch);
88 return (props & $$maskOtherUppercase) != 0;
92 int props = getPropertiesEx(ch);
93 return (props
[all...]
H A DCharacterData01.java.template71 int props = $$Lookup(offset);
72 return props;
77 int props = $$LookupEx(offset);
78 return props;
82 int props = getProperties(ch);
83 return (props & $$maskType);
87 int props = getPropertiesEx(ch);
88 return (props & $$maskOtherLowercase) != 0;
92 int props = getPropertiesEx(ch);
93 return (props
[all...]
/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/jdk/src/share/native/java/lang/
H A DSystem.c59 #define PUTPROP(props, key, val) \
63 jobject r = (*env)->CallObjectMethod(env, props, putID, jkey, jval); \
73 #define PUTPROP_ForPlatformNString(props, key, val) \
77 jobject r = (*env)->CallObjectMethod(env, props, putID, jkey, jval); \
83 #define REMOVEPROP(props, key) \
86 jobject r = (*env)->CallObjectMethod(env, props, removeID, jkey); \
91 #define GETPROP(props, key, jret) \
94 jret = (*env)->CallObjectMethod(env, props, getPropID, jkey); \
115 jobject fillI18nProps(JNIEnv *env, jobject props, char *baseKey, argument
120 GETPROP(props, baseKe
169 Java_java_lang_System_initProperties(JNIEnv *env, jclass cla, jobject props) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/util/
H A DPolicyUtils.java51 * fits the security policy properties found in props.
53 * @param props The security policy properties to check
56 public static boolean checkPolicy(int flags, Map props) { argument
57 if (props == null) {
61 if ("true".equalsIgnoreCase((String)props.get(Sasl.POLICY_NOPLAINTEXT))
65 if ("true".equalsIgnoreCase((String)props.get(Sasl.POLICY_NOACTIVE))
69 if ("true".equalsIgnoreCase((String)props.get(Sasl.POLICY_NODICTIONARY))
73 if ("true".equalsIgnoreCase((String)props.get(Sasl.POLICY_NOANONYMOUS))
77 if ("true".equalsIgnoreCase((String)props.get(Sasl.POLICY_FORWARD_SECRECY))
81 if ("true".equalsIgnoreCase((String)props
95 filterMechs(String[] mechs, int[] policies, Map props) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orb/
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 DParserAction.java45 /** Apply this action to props and return the result.
47 Object apply( Properties props ) ;
H A DAppletDataCollector.java34 AppletDataCollector( Applet app, Properties props, String localHostName, argument
37 super( props, localHostName, configurationHostName ) ;
H A DPropertyOnlyDataCollector.java38 public PropertyOnlyDataCollector( Properties props, argument
41 super( props, localHostName, configurationHostName ) ;
/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>");
/openjdk7/jdk/test/java/util/logging/
H A DCustomLogManager.java38 Properties props = initConfig(); field in class:CustomLogManager
53 if (props.get(name + ".level") != null) {
54 logger.setLevel(Level.parse(props.getProperty(name + ".level")));
57 if (props.get(name + ".handlers") != null && logger.getHandlers().length == 0) {
68 if (props.get(pname + ".level") != null ||
69 props.get(pname + ".handlers") != null) {
92 return props.getProperty(name);
104 Properties props = new Properties();
105 props.put(".level", "CONFIG");
106 props
[all...]
/openjdk7/jdk/src/share/classes/javax/security/sasl/
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
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
/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
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/ntlm/
H A DFactoryImpl.java66 Map<String,?> props, CallbackHandler cbh)
71 PolicyUtils.checkPolicy(mechPolicies[0], props)) {
80 protocol, serverName, props, cbh);
94 String protocol, String serverName, Map<String,?> props, CallbackHandler cbh)
98 PolicyUtils.checkPolicy(mechPolicies[0], props)) {
99 if (props != null) {
100 String qop = (String)props.get(Sasl.QOP);
111 return new NTLMServer(mech, protocol, serverName, props, cbh);
64 createSaslClient(String[] mechs, String authorizationId, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
93 createSaslServer(String mech, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) argument
/openjdk7/jdk/test/java/lang/management/RuntimeMXBean/
H A DPropertiesTest.java44 Properties props = System.getProperties();
49 System.setProperties(new Properties(props));
50 runTest(props.size());
53 System.setProperties(props);
72 Map<String,String> props =
75 for (Map.Entry<String,String> e : props.entrySet()) {
81 if (props.size() != NUM_MYPROPS + sysPropsCount) {
85 " but found = " + props.size());
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/
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
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DVersion.java58 Properties props = new Properties();
60 props.load(is);
68 props.getProperty("build-id"),
69 props.getProperty("build-version"),
70 props.getProperty("major-version"));
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/defaults/
H A DSnmpProperties.java59 Properties props = new Properties();
61 props.load(is);
63 for (final Enumeration e = props.keys(); e.hasMoreElements() ; ) {
65 System.setProperty(key,props.getProperty(key));
/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/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/sun/misc/
H A DVM.java257 public static void saveAndRemoveProperties(Properties props) { argument
261 savedProps.putAll(props);
268 String s = (String)props.remove("sun.nio.MaxDirectMemorySize");
281 s = (String)props.remove("sun.nio.PageAlignDirectMemory");
288 s = props.getProperty("sun.lang.ClassLoader.allowArraySyntax");
297 s = props.getProperty("jdk.reflect.allowGetCallerClass");
301 Boolean.valueOf(props.getProperty("jdk.logging.allowStackWalkSearch"));
305 props.remove("java.lang.Integer.IntegerCache.high");
308 props.remove("sun.zip.disableMemoryMapping");
311 props
[all...]

Completed in 121 milliseconds

123456789