HomeSort by relevance Sort by last modified time
    Searched defs:environment (Results 1 - 25 of 50) sorted by null

1 2

  /libcore/luni/src/main/java/java/lang/
ProcessBuilder.java 35 private Map<String, String> environment; field in class:ProcessBuilder
67 this.environment = new Hashtable<String, String>(System.getenv());
137 * Returns this process builder's current environment. When a process
138 * builder instance is created, the environment is populated with a copy of
139 * the environment, as returned by {@link System#getenv()}. Note that the
143 * @return the map containing this process builder's environment variables.
145 public Map<String, String> environment() { method in class:ProcessBuilder
146 return environment;
190 String[] envArray = new String[environment.size()];
192 for (Map.Entry<String, String> entry : environment.entrySet())
    [all...]
ProcessManager.java 160 private static native int exec(String[] command, String[] environment,
179 String[] environment = taintedEnvironment != null ? taintedEnvironment.clone() : null; local
187 // The environment is allowed to be null or empty, but no element may be null.
188 if (environment != null) {
189 for (String env : environment) {
209 pid = exec(command, environment, workingPath, in, out, err, redirectErrorStream);
214 + " Environment: " + Arrays.toString(environment));
  /libcore/luni/src/test/java/libcore/java/lang/
ProcessBuilderTest.java 53 pb.environment().put("A", "android");
99 Map<String, String> environment = pb.environment(); local
100 Map<String, String> before = new HashMap<String, String>(environment);
102 environment.put("A", null);
107 environment.put(null, "android");
111 assertEquals(before, environment);
  /ndk/sources/host-tools/make-3.81/
job.h 46 char **environment; /* Environment for commands. */ member in struct:child
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/
IconLoader.java 23 GraphicsEnvironment environment = GraphicsEnvironment.getLocalGraphicsEnvironment(); local
24 return environment.getDefaultScreenDevice().getDefaultConfiguration();
  /sdk/draw9patch/src/com/android/draw9patch/graphics/
GraphicsUtilities.java 63 GraphicsEnvironment environment = GraphicsEnvironment.getLocalGraphicsEnvironment(); local
64 return environment.getDefaultScreenDevice().getDefaultConfiguration();
  /sdk/ninepatch/src/com/android/ninepatch/
GraphicsUtilities.java 69 GraphicsEnvironment environment = GraphicsEnvironment.getLocalGraphicsEnvironment(); local
70 return environment.getDefaultScreenDevice().getDefaultConfiguration();
  /libcore/luni/src/main/native/
java_lang_ProcessManager.cpp 62 static pid_t executeProcess(JNIEnv* env, char** commands, char** environment,
134 // Set up environment.
135 if (environment != NULL) {
137 environ = environment;
236 // Convert environment array.
237 char** environment = convertStrings(env, javaEnvironment); local
239 pid_t result = executeProcess(env, commands, environment, workingDirectory,
246 freeStrings(env, javaEnvironment, environment);
  /external/dbus/dbus/
dbus-sysdeps.c 100 * the environment variable.
107 * @param varname name of environment variable
108 * @param value value of environment variable
179 * @param varname name of environment variable
180 * @returns value of environment variable or #NULL if unset
212 * environment. Use dbus_free_string_array to free it.
214 * @returns the environment or #NULL on OOM
220 char **environment; local
229 environment = dbus_new0 (char *, length);
231 if (environment == NULL
    [all...]
  /libcore/luni/src/test/java/tests/api/java/lang/
ProcessManagerTest.java 126 String[] environment = { "FOO=foo", "PATH=" + System.getenv("PATH") }; local
128 commands, environment, null);
  /system/core/sh/
var.c 139 * Initialize the varable symbol tables and import the environment
359 * Search the environment of a builtin command. If the second argument
390 environment(void) function
  /external/dbus/bus/
activation.c 57 DBusHashTable *environment; member in struct:BusActivation
721 char **environment; local
724 environment = _dbus_get_environment ();
726 if (environment == NULL)
731 dbus_free_string_array (environment);
738 dbus_free_string_array (environment);
742 for (i = 0; environment[i] != NULL; i++)
744 if (!_dbus_string_append (&key, environment[i]))
757 if (!_dbus_hash_table_insert_string (activation->environment,
765 if (environment[i] != NULL
1567 char **environment; local
    [all...]
  /external/v8/src/arm/
lithium-arm.h 239 LEnvironment* environment() const { return environment_; } function in class:v8::internal::LInstruction
    [all...]
lithium-codegen-arm.cc 471 void LCodeGen::WriteTranslation(LEnvironment* environment,
473 if (environment == NULL) return;
475 // The translation includes one command per value in the environment.
476 int translation_size = environment->values()->length();
478 int height = translation_size - environment->parameter_count();
480 WriteTranslation(environment->outer(), translation);
481 int closure_id = DefineDeoptimizationLiteral(environment->closure());
482 switch (environment->frame_type()) {
484 translation->BeginJSFrame(environment->ast_id(), closure_id, height);
496 LOperand* value = environment->values()->at(i)
5039 LEnvironment* environment = instr->environment(); local
    [all...]
  /external/v8/src/
hydrogen.h 136 // instruction and updating the bailout environment.
145 // Simulate (caller's environment)
386 // Type of stack frame an environment might refer to.
492 // Create an "inlined version" of this environment, where the original
493 // environment is the outer environment but the top expression stack
494 // elements are moved to an inner environment as parameters.
526 // Create an artificial stub environment (e.g. for argument adaptor or
533 // True if index is included in the expression stack part of the environment.
539 // Map a variable to an environment index. Parameter indices are shifte
815 HEnvironment* environment() const { function in class:v8::internal::HGraphBuilder
    [all...]
  /external/v8/src/ia32/
lithium-ia32.h 234 LEnvironment* environment() const { return environment_; } function in class:v8::internal::LInstruction
    [all...]
lithium-codegen-ia32.cc 360 void LCodeGen::WriteTranslation(LEnvironment* environment,
362 if (environment == NULL) return;
364 // The translation includes one command per value in the environment.
365 int translation_size = environment->values()->length();
367 int height = translation_size - environment->parameter_count();
369 WriteTranslation(environment->outer(), translation);
370 int closure_id = DefineDeoptimizationLiteral(environment->closure());
371 switch (environment->frame_type()) {
373 translation->BeginJSFrame(environment->ast_id(), closure_id, height);
385 LOperand* value = environment->values()->at(i)
4877 LEnvironment* environment = instr->environment(); local
    [all...]
  /external/v8/src/mips/
lithium-mips.h 238 LEnvironment* environment() const { return environment_; } function in class:v8::internal::LInstruction
    [all...]
lithium-codegen-mips.cc 439 void LCodeGen::WriteTranslation(LEnvironment* environment,
441 if (environment == NULL) return;
443 // The translation includes one command per value in the environment.
444 int translation_size = environment->values()->length();
446 int height = translation_size - environment->parameter_count();
448 WriteTranslation(environment->outer(), translation);
449 int closure_id = DefineDeoptimizationLiteral(environment->closure());
450 switch (environment->frame_type()) {
452 translation->BeginJSFrame(environment->ast_id(), closure_id, height);
464 LOperand* value = environment->values()->at(i)
4973 LEnvironment* environment = instr->environment(); local
    [all...]
  /external/v8/src/x64/
lithium-x64.h 240 LEnvironment* environment() const { return environment_; } function in class:v8::internal::LInstruction
    [all...]
lithium-codegen-x64.cc 360 void LCodeGen::WriteTranslation(LEnvironment* environment,
362 if (environment == NULL) return;
364 // The translation includes one command per value in the environment.
365 int translation_size = environment->values()->length();
367 int height = translation_size - environment->parameter_count();
369 WriteTranslation(environment->outer(), translation);
370 int closure_id = DefineDeoptimizationLiteral(environment->closure());
371 switch (environment->frame_type()) {
373 translation->BeginJSFrame(environment->ast_id(), closure_id, height);
385 LOperand* value = environment->values()->at(i)
4665 LEnvironment* environment = instr->environment(); local
    [all...]
  /prebuilt/common/ninepatch/
ninepatch-prebuilt.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.launching_3.5.100.v20100526.jar 
org.apache.jasper_5.5.17.v201004212143.jar 
  /prebuilt/common/ecj/
ecj.jar 

Completed in 722 milliseconds

1 2