Home
last modified time | relevance | path

Searched refs:env (Results 1 – 14 of 14) sorted by relevance

/tools/test/connectivity/acts/framework/acts/controllers/utils_lib/ssh/
Dformatter.py164 def format_remote_command(self, command, env): argument
177 if not env:
181 for name in env:
182 value = env[name]
191 env, argument
208 remote_command = self.format_remote_command(command, env)
Dconnection.py154 env=None, argument
183 if env is None:
184 env = {}
200 full_command, env, self._settings, extra_options=extra_options)
268 self.run(command, timeout, ignore_status, env, io_encoding,
272 def run_async(self, command, env=None): argument
294 result = self.run(command, env=env)
/tools/test/connectivity/tools/lab/utils/
Djob.py113 env=None, argument
141 env=env,
177 def run_async(command, env=None): argument
197 env=env,
/tools/test/connectivity/acts/framework/acts/libs/proc/
Djob.py113 env=None, argument
141 env=env,
177 def run_async(command, env=None): argument
197 env=env,
/tools/metalava/
Dbuild.gradle82 * With the build server you are given two env variables:
88 if (System.env.DIST_DIR != null && System.env.OUT_DIR != null) {
89 buildDir = file("${System.env.OUT_DIR}/host/common/metalava").getCanonicalFile()
90 ext.distDir = file(System.env.DIST_DIR).getCanonicalFile()
/tools/repohooks/rh/
Dutils.py263 shell=False, env=None, extra_env=None, ignore_sigint=False, argument
383 env = env.copy() if env is not None else os.environ.copy()
384 env.update(extra_env if extra_env else {})
395 stderr=stderr, shell=False, env=env,
/tools/tradefederation/core/atest/
Datest_utils.py78 stderr=subprocess.STDOUT, env=env_vars)
142 env=full_env_vars)
/tools/test/connectivity/tools/
D.gitignore12 env/
/tools/test/connectivity/acts/
D.gitignore12 env/
/tools/test/connectivity/acts/framework/tests/
Dacts_test_ssh.py54 result = conn.run('printenv', env={'MYSPECIALVAR': 20})
Dacts_job_test.py116 result = job.run('printenv', env=test_env.copy())
/tools/test/connectivity/tools/lab/
DREADME.md16 env: whether $ADB_VENDOR_KEYS is set (bool)
/tools/apksig/src/apksigner/java/com/android/apksigner/
Dhelp_sign.txt83 env:<name> password provided in the named
102 env:<name> password provided in the named
/tools/tradefederation/core/src/com/android/tradefed/command/
DConsole.java1045 Map<String, String> env = new TreeMap<>(System.getenv()); in dumpEnv() local
1046 for (Map.Entry<String, String> entry : env.entrySet()) { in dumpEnv()