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

1 2 3 4 5 6 7 8

  /external/chromium/chrome/browser/
background_mode_manager_linux.cc 8 #include "base/environment.h"
52 scoped_ptr<base::Environment> environment(base::Environment::Create());
53 if (!AutoStart::Remove(ShellIntegration::GetDesktopName(environment.get()))) {
61 scoped_ptr<base::Environment> environment(base::Environment::Create());
65 if (!environment->GetVar("CHROME_WRAPPER", &wrapper_script)) {
73 ShellIntegration::GetDesktopName(environment.get())
    [all...]
  /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));
  /external/chromium/chrome/common/
auto_start_linux.cc 7 #include "base/environment.h"
20 FilePath GetAutostartDirectory(base::Environment* environment) {
22 base::nix::GetXDGDirectory(environment, kXdgConfigHome, kConfig);
33 scoped_ptr<base::Environment> environment(base::Environment::Create());
34 FilePath autostart_directory = GetAutostartDirectory(environment.get());
59 scoped_ptr<base::Environment> environment(base::Environment::Create())
    [all...]
multi_process_lock_unittest.cc 6 #include "base/environment.h"
24 : name_(name), environment_(base::Environment::Create()) {
33 scoped_ptr<base::Environment> environment_;
131 scoped_ptr<base::Environment> environment(base::Environment::Create());
132 EXPECT_TRUE(environment->GetVar(MultiProcessLockTest::kLockEnviromentVarName,
150 scoped_ptr<base::Environment> environment(base::Environment::Create())
    [all...]
  /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);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMIterator.java 110 * @param environment The environment object.
111 * The environment in which this iterator operates, which should provide:
120 * <p>At this time the exact implementation of this environment is application
124 public void setRoot(int nodeHandle, Object environment);
  /system/media/mca/filterfw/java/android/filterfw/
GraphEnvironment.java 38 * 2. Perform any configuration, such as adding graph references and setting a GL environment.
67 public AsyncRunner getAsyncRunner(FilterContext environment) {
69 mAsyncRunner = new AsyncRunner(environment, RoundRobinScheduler.class);
75 public GraphRunner getSyncRunner(FilterContext environment) {
77 mSyncRunner = new SyncRunner(environment, mGraph, RoundRobinScheduler.class);
125 * Loads a graph file from the specified resource and adds it to this environment.
145 * Add a graph to the environment. Consider using loadGraph() if you are loading a graph from
148 * @param graph The graph to add to the environment.
158 * Access a specific graph of this environment given a graph ID (previously returned from
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
ChildTestIterator.java 124 public void setRoot(int context, Object environment)
126 super.setRoot(context, environment);
OneStepIteratorForward.java 88 public void setRoot(int context, Object environment)
90 super.setRoot(context, environment);
FilterExprIterator.java 68 public void setRoot(int context, Object environment)
70 super.setRoot(context, environment);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/
IconLoader.java 23 GraphicsEnvironment environment = GraphicsEnvironment.getLocalGraphicsEnvironment(); local
24 return environment.getDefaultScreenDevice().getDefaultConfiguration();
  /external/webkit/Tools/WebKitLauncher/
main.m 110 static void myExecve(NSString *executable, NSArray *args, NSDictionary *environment)
113 char **env = (char **)calloc(sizeof(char *), [environment count] + 1);
121 e = [environment keyEnumerator];
124 env[i++] = (char *) [[NSString stringWithFormat:@"%@=%@", s, [environment objectForKey:s]] UTF8String];
232 NSMutableDictionary *environment = [[[NSDictionary dictionaryWithObjectsAndKeys:frameworkPath, @"DYLD_FRAMEWORK_PATH", @"YES", @"WEBKIT_UNSET_DYLD_FRAMEWORK_PATH",
234 [environment addEntriesFromDictionary:[[NSProcessInfo processInfo] environment]];
240 myExecve(executablePath, arguments, environment);
  /development/samples/ApiDemos/tests/
Android.mk 14 # automatically get all of its classes loaded into our environment.
  /external/chromium/net/data/proxy_resolver_v8_unittest/
dns_fail.js 1 // This script should be run in an environment where all DNS resolution are
  /external/webkit/LayoutTests/storage/script-tests/
storageinfo-query-usage.js 19 // Quota value would vary depending on the test environment.
  /frameworks/base/tests/SmokeTest/tests/
Android.mk 14 # automatically get all of its classes loaded into our environment.
  /system/media/mca/filterfw/java/android/filterfw/core/
FilterContext.java 59 public void initGLEnvironment(GLEnvironment environment) {
61 mGLEnvironment = environment;
63 throw new RuntimeException("Attempting to re-initialize GL Environment for " +
  /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);
  /ndk/sources/host-tools/make-3.81/
configure.bat 22 rem The SmallEnv trick protects against too small environment block,
24 rem goes awry. COMMAND.COM will say "Out of environment space", but
59 echo Your environment is too small. Please enlarge it and run me again.
  /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...]
  /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();
  /external/v8/src/ia32/
lithium-codegen-ia32.cc 332 void LCodeGen::WriteTranslation(LEnvironment* environment,
334 if (environment == NULL) return;
336 // The translation includes one command per value in the environment.
337 int translation_size = environment->values()->length();
339 int height = translation_size - environment->parameter_count();
341 WriteTranslation(environment->outer(), translation);
342 int closure_id = DefineDeoptimizationLiteral(environment->closure());
343 translation->BeginFrame(environment->ast_id(), closure_id, height);
345 LOperand* value = environment->values()->at(i);
348 if (environment->spilled_registers() != NULL && value != NULL)
4167 LEnvironment* environment = instr->environment(); local
    [all...]
  /external/v8/src/x64/
lithium-codegen-x64.cc 364 void LCodeGen::WriteTranslation(LEnvironment* environment,
366 if (environment == NULL) return;
368 // The translation includes one command per value in the environment.
369 int translation_size = environment->values()->length();
371 int height = translation_size - environment->parameter_count();
373 WriteTranslation(environment->outer(), translation);
374 int closure_id = DefineDeoptimizationLiteral(environment->closure());
375 translation->BeginFrame(environment->ast_id(), closure_id, height);
377 LOperand* value = environment->values()->at(i);
380 if (environment->spilled_registers() != NULL && value != NULL)
4000 LEnvironment* environment = instr->environment(); local
    [all...]

Completed in 1716 milliseconds

1 2 3 4 5 6 7 8