Searched defs:environment (Results 51 - 54 of 54) sorted by relevance

123

/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DHierMemDirCtx.java73 public HierMemDirCtx(Hashtable environment, boolean ignoreCase) { argument
74 this(environment, ignoreCase, false);
77 protected HierMemDirCtx(Hashtable environment, boolean ignoreCase, argument
79 myEnv = environment;
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIConnector.java128 Map<String, ?> environment) {
136 if (environment == null) {
139 EnvHelp.checkAttributes(environment);
140 this.env = Collections.unmodifiableMap(environment);
176 * @param environment additional attributes specifying how to make
185 public RMIConnector(JMXServiceURL url, Map<String,?> environment) { argument
186 this(null, url, environment);
193 * @param environment additional attributes specifying how to make
200 public RMIConnector(RMIServer rmiServer, Map<String,?> environment) { argument
201 this(rmiServer, null, environment);
127 RMIConnector(RMIServer rmiServer, JMXServiceURL address, Map<String, ?> environment) argument
246 connect(Map<String,?> environment) argument
1707 connectStub(RMIServer rmiServer, Map<String, ?> environment) argument
1742 resolveOrb(Map<String, ?> environment) argument
1879 findRMIServer(JMXServiceURL directoryURL, Map<String, Object> environment) argument
[all...]
/openjdk7/jdk/test/java/lang/ProcessBuilder/
H A DBasic.java221 Map<String,String> environ = new ProcessBuilder().environment();
231 Map<String,String> environ = new ProcessBuilder().environment();
240 Map<String,String> environ = new ProcessBuilder().environment();
251 private static String getenvAsString(Map<String,String> environment) { argument
253 for (Map.Entry<String,String> e : environment.entrySet())
254 // Ignore magic environment variables added by the launcher
348 pb2.environment().put("PATH", "anyOldPathIgnoredAnyways");
369 pb2.environment().put("PATH", "anyOldPathIgnoredAnyways");
370 pb3.environment().remove("PATH");
487 pb.environment()
[all...]
/openjdk7/jdk/src/share/instrument/
H A DJPLISAgent.c175 JPLISEnvironment * environment = NULL; local
180 (void**)&environment);
185 jplis_assert(environment != NULL);
186 jplis_assert(environment->mJVMTIEnv == jvmtienv);
188 environment = NULL;
190 return environment;
690 * Enable native method prefix in one JVM TI environment
976 /* Return the environment with the retransformation capability.
1006 /* cannot get the capability, dispose of the retransforming environment */
1019 // install the retransforming environment
[all...]

Completed in 51 milliseconds

123