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

123

/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DServiceLocator.java116 * @param environment The possibly null environment of the context.
120 static String[] getLdapService(String domainName, Hashtable environment) { argument
134 Context ctx = NamingManager.getURLContext("dns", environment);
H A DLdapSchemaCtx.java83 private LdapSchemaCtx(int objectType, Hashtable environment, SchemaInfo info) { argument
84 super(environment, LdapClient.caseIgnore);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DFilterExprIterator.java70 public void setRoot(int context, Object environment) argument
72 super.setRoot(context, environment);
H A DFilterExprIteratorSimple.java78 public void setRoot(int context, Object environment) argument
80 super.setRoot(context, environment);
H A DOneStepIterator.java95 public void setRoot(int context, Object environment) argument
97 super.setRoot(context, environment);
H A DWalkingIterator.java152 public void setRoot(int context, Object environment) argument
155 super.setRoot(context, environment);
H A DUnionPathIterator.java69 public void setRoot(int context, Object environment) argument
71 super.setRoot(context, environment);
H A DNodeSequence.java261 public void setRoot(int nodeHandle, Object environment) argument
272 XPathContext xctxt = (XPathContext)environment;
274 m_iter.setRoot(nodeHandle, environment);
H A DLocPathIterator.java152 * Set the environment in which this iterator operates, which should provide:
159 * <p>At this time the exact implementation of this environment is application
162 * @param environment The environment object.
164 public void setEnvironment(Object environment) argument
359 public void setRoot(int context, Object environment) argument
364 XPathContext xctxt = (XPathContext)environment;
/openjdk7/jdk/src/share/classes/java/lang/
H A DProcessBuilder.java60 * <li>an <i>environment</i>, which is a system-dependent mapping from
62 * the environment of the current process (see {@link System#getenv()}).
144 * and environment is easy:
151 * directory and environment, and redirects standard output and error
157 * Map<String, String> env = pb.environment();
171 * <p>To start a process with an explicit set of environment
173 * before adding environment variables.
183 private Map<String,String> environment; field in class:ProcessBuilder
273 * Returns a string map view of this process builder's environment.
275 * Whenever a process builder is created, the environment i
340 public Map<String,String> environment() { method in class:ProcessBuilder
354 ProcessBuilder environment(String[] envp) { method in class:ProcessBuilder
[all...]
/openjdk7/jdk/src/share/classes/javax/management/remote/
H A DJMXConnectorFactory.java70 * <li>If the <code>environment</code> parameter to {@link
98 * <p>If the <code>environment</code> parameter to {@link
107 * key is not present in the <code>environment</code> parameter, the
153 * <code>environment</code> parameter to {@link
158 * present in the <code>environment</code> parameter, it is added to
238 * environment);
239 * conn.connect(environment);
244 * @param environment a set of attributes to determine how the
248 * <code>environment</code> are not changed by this call.
263 Map<String,?> environment)
262 connect(JMXServiceURL serviceURL, Map<String,?> environment) argument
309 newJMXConnector(JMXServiceURL serviceURL, Map<String,?> environment) argument
413 getProvider(JMXServiceURL serviceURL, final Map<String, Object> environment, String providerClassName, Class<T> targetInterface, final ClassLoader loader) argument
546 resolveClassLoader(Map<String, ?> environment) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/
H A DInitialContext.java40 * When the initial context is constructed, its environment
41 * is initialized with properties defined in the environment parameter
57 * environment parameter and (for appropriate properties) the applet
73 * The default policy uses the environment property
105 * When the environment property "java.naming.factory.initial" is
110 * to the users of the initial context any environment property- or
134 * The environment associated with this InitialContext.
136 * that accepts an environment or by the <tt>init()</tt> method.
162 * a subclass when the value of the environment parameter
165 * call this constructor, compute the value of the environment,
210 InitialContext(Hashtable<?,?> environment) argument
235 init(Hashtable<?,?> environment) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/spi/
H A DNamingManager.java54 * a <tt>Name</tt> or environment parameter
169 * <tt>Context.OBJECT_FACTORIES</tt> property of the environment
175 Context nameCtx, Hashtable environment) throws Exception {
178 Context.OBJECT_FACTORIES, environment, nameCtx);
188 answer = factory.getObjectInstance(obj, name, nameCtx, environment);
204 * and environment.
227 * the <tt>Context.OBJECT_FACTORIES</tt> property of the environment,
269 * @param environment The possibly null environment to
289 Hashtable<?,?> environment)
174 createObjectFromFactories(Object obj, Name name, Context nameCtx, Hashtable environment) argument
288 getObjectInstance(Object refInfo, Name name, Context nameCtx, Hashtable<?,?> environment) argument
351 processURLAddrs(Reference ref, Name name, Context nameCtx, Hashtable environment) argument
370 processURL(Object refInfo, Name name, Context nameCtx, Hashtable environment) argument
429 getContext(Object obj, Name name, Context nameCtx, Hashtable environment) argument
454 getResolver(Object obj, Name name, Context nameCtx, Hashtable environment) argument
543 getURLContext(String scheme, Hashtable<?,?> environment) argument
586 getURLObject(String scheme, Object urlInfo, Name name, Context nameCtx, Hashtable environment) argument
852 getStateToBind(Object obj, Name name, Context nameCtx, Hashtable<?,?> environment) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/ctx/
H A DContinuation.java57 * The environment used by the caller. Initialized by constructor and
60 protected Hashtable environment = null; field in class:Continuation
94 * @param environment The environment used by the caller. It is used
95 * when setting the "environment" of a CannotProceedException.
97 public Continuation(Name top, Hashtable environment) { argument
100 this.environment = environment;
134 * If the exception is a CannotProceedException, its environment,
136 * environment, relativeResolvedNam
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTMIterator.java112 * @param environment The environment object.
113 * The environment in which this iterator operates, which should provide:
122 * <p>At this time the exact implementation of this environment is application
126 public void setRoot(int nodeHandle, Object environment); argument
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIConnectorServer.java107 * RMIConnectorServer(directoryURL,environment,null,null)}</p>
112 * @param environment attributes governing the creation and
127 public RMIConnectorServer(JMXServiceURL url, Map<String,?> environment) argument
129 this(url, environment, (MBeanServer) null);
137 * RMIConnectorServer(directoryURL,environment,null,mbeanServer)}</p>
142 * @param environment attributes governing the creation and
161 public RMIConnectorServer(JMXServiceURL url, Map<String,?> environment, argument
164 this(url, environment, (RMIServerImpl) null, mbeanServer);
174 * @param environment attributes governing the creation and
201 public RMIConnectorServer(JMXServiceURL url, Map<String,?> environment, argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/rmi/registry/
H A DRegistryContext.java49 private Hashtable environment; field in class:RegistryContext
73 environment = ((env == null) ? new Hashtable(5) : env);
74 if (environment.get(SECURITY_MGR) != null) {
84 (RMIClientSocketFactory) environment.get(SOCKET_FACTORY);
97 environment = (Hashtable)ctx.environment.clone();
281 return environment.remove(propName);
290 return environment.put(propName, propVal);
294 return (Hashtable)environment.clone();
298 environment
[all...]
/openjdk7/jdk/src/share/classes/com/sun/beans/decoder/
H A DDocumentHandler.java66 private final Map<String, Object> environment = new HashMap<>(); field in class:DocumentHandler
204 return this.environment.containsKey(id);
214 if (!this.environment.containsKey(id)) {
217 return this.environment.get(id);
227 this.environment.put(id, value);
/openjdk7/jdk/src/windows/classes/java/lang/
H A DProcessEnvironment.java35 * termination even if the environment is empty. We should always
42 * - There are magic environment variables maintained by Windows
76 ("Invalid environment variable name: \"" + name + "\"");
83 ("Invalid environment variable value: \"" + value + "\"");
247 // Ignore corrupted environment strings.
283 // Only for use by ProcessBuilder.environment()
284 static Map<String,String> environment() { method in class:ProcessEnvironment
288 // Only for use by ProcessBuilder.environment(String[] envp)
331 // add the environment variable to the child, if it exists in parent
H A DProcessImpl.java87 java.util.Map<String,String> environment,
93 String envblock = ProcessEnvironment.toEnvironmentBlock(environment);
463 * environment strings in VAR=VALUE form
86 start(String cmdarray[], java.util.Map<String,String> environment, String dir, ProcessBuilder.Redirect[] redirects, boolean redirectErrorStream) argument
/openjdk7/jdk/src/share/instrument/
H A DInvocationAdapter.c115 /* create an environment which has the retransformClasses capability */
456 JPLISEnvironment * environment = NULL; local
459 environment = getJPLISEnvironment(jvmtienv);
462 if ( environment != NULL ) {
464 success = processJavaStart( environment->mAgent,
486 JPLISEnvironment * environment = NULL; local
488 environment = getJPLISEnvironment(jvmtienv);
491 if ( environment != NULL ) {
493 transformClassFile( environment->mAgent,
503 environment
[all...]
/openjdk7/jdk/src/share/classes/sun/management/jmxremote/
H A DConnectorBootstrap.java211 environment = env;
218 new JMXPluggableAuthenticator(environment);
260 private final Map<String, Object> environment; field in class:ConnectorBootstrap.AccessFileCheckerAuthenticator
/openjdk7/jdk/src/solaris/classes/java/lang/
H A DProcessEnvironment.java37 * the parent process for any environment name or value not created by
42 * environment then looks like a Map<Variable,Value>. But we don't
68 // We cache the C environment. This means that subsequent calls
72 // Read environment variables back to front,
93 /* Only for use by ProcessBuilder.environment() */
94 static Map<String,String> environment() { method in class:ProcessEnvironment
114 ("Invalid environment variable name: \"" + name + "\"");
121 ("Invalid environment variable value: \"" + value + "\"");
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DNodeSetDTM.java195 * Set the environment in which this iterator operates, which should provide:
202 * <p>At this time the exact implementation of this environment is application
205 * @param environment The environment object.
207 public void setEnvironment(Object environment) argument
237 public void setRoot(int context, Object environment) argument
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsContext.java50 Hashtable environment; field in class:DnsContext
51 private boolean envShared; // true if environment is possibly shared
68 // retries, and name the environment properties used to override
96 * The environment must not be null; it is cloned before being stored.
98 public DnsContext(String domain, String[] servers, Hashtable environment) argument
105 this.environment = (Hashtable) environment.clone();
127 * share <tt>environment</tt>, but it's copy-on-write so there's
131 environment = ctx.environment;
[all...]

Completed in 152 milliseconds

123