HomeSort by relevance Sort by last modified time
    Searched refs:cmd (Results 251 - 275 of 5756) sorted by null

<<11121314151617181920>>

  /external/strace/tests/
fcntl64.c 38 # define TEST_FLOCK64_EINVAL(cmd) test_flock64_einval(cmd, #cmd)
41 test_flock64_einval(const int cmd, const char *name)
48 long rc = invoke_test_syscall(cmd, &fl);
  /external/strace/tests-m32/
fcntl64.c 38 # define TEST_FLOCK64_EINVAL(cmd) test_flock64_einval(cmd, #cmd)
41 test_flock64_einval(const int cmd, const char *name)
48 long rc = invoke_test_syscall(cmd, &fl);
  /external/strace/tests-mx32/
fcntl64.c 38 # define TEST_FLOCK64_EINVAL(cmd) test_flock64_einval(cmd, #cmd)
41 test_flock64_einval(const int cmd, const char *name)
48 long rc = invoke_test_syscall(cmd, &fl);
  /external/syslinux/com32/cmenu/libmenu/
syslnx.c 23 void runsyslinuxcmd(const char *cmd)
27 bounce = lmalloc(strlen(cmd) + 1);
31 strcpy(bounce, cmd);
59 void runsyslinuximage(const char *cmd, long ipappend)
64 runsyslinuxcmd(cmd);
  /external/wpa_supplicant_8/src/ap/
dpp_hostapd.h 12 int hostapd_dpp_qr_code(struct hostapd_data *hapd, const char *cmd);
13 int hostapd_dpp_bootstrap_gen(struct hostapd_data *hapd, const char *cmd);
19 int hostapd_dpp_auth_init(struct hostapd_data *hapd, const char *cmd);
27 int hostapd_dpp_configurator_add(struct hostapd_data *hapd, const char *cmd);
29 int hostapd_dpp_pkex_add(struct hostapd_data *hapd, const char *cmd);
  /frameworks/base/services/core/java/com/android/server/content/
ContentShellCommand.java 33 public int onCommand(String cmd) {
34 if (cmd == null) {
35 return handleDefaultCommands(cmd);
40 switch(cmd) {
44 return handleDefaultCommands(cmd);
  /prebuilts/go/darwin-x86/src/cmd/compile/
main.go 8 "cmd/compile/internal/amd64"
9 "cmd/compile/internal/arm"
10 "cmd/compile/internal/arm64"
11 "cmd/compile/internal/gc"
12 "cmd/compile/internal/mips"
13 "cmd/compile/internal/mips64"
14 "cmd/compile/internal/ppc64"
15 "cmd/compile/internal/s390x"
16 "cmd/compile/internal/x86"
17 "cmd/internal/objabi
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/
main.go 8 "cmd/compile/internal/amd64"
9 "cmd/compile/internal/arm"
10 "cmd/compile/internal/arm64"
11 "cmd/compile/internal/gc"
12 "cmd/compile/internal/mips"
13 "cmd/compile/internal/mips64"
14 "cmd/compile/internal/ppc64"
15 "cmd/compile/internal/s390x"
16 "cmd/compile/internal/x86"
17 "cmd/internal/objabi
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_sdist.py 79 """Returns a cmd"""
88 cmd = sdist(dist)
89 cmd.dist_dir = 'dist'
90 return dist, cmd
112 dist, cmd = self.get_cmd()
116 cmd.formats = ['zip']
118 cmd.ensure_finalized()
119 cmd.run()
144 dist, cmd = self.get_cmd()
147 cmd.formats = ['gztar', 'tar'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_sdist.py 79 """Returns a cmd"""
88 cmd = sdist(dist)
89 cmd.dist_dir = 'dist'
90 return dist, cmd
112 dist, cmd = self.get_cmd()
116 cmd.formats = ['zip']
118 cmd.ensure_finalized()
119 cmd.run()
144 dist, cmd = self.get_cmd()
147 cmd.formats = ['gztar', 'tar'
    [all...]
  /external/libxml2/os400/
xmllintcl.c 60 extern void qshell(vary4 * cmd);
133 vary4 cmd; local
143 cmd.len = 0;
144 vary4append(&cmd, "/QSYS.LIB/");
145 vary4nappend(&cmd, args->pgm, i);
146 vary4append(&cmd, ".LIB/XMLLINT.PGM");
152 vary4arg(&cmd, "--dtdvalidfpi");
154 vary4arg(&cmd, "--dtdvalid");
156 vary4vargquote(&cmd, args->dtd);
160 vary4varg(&cmd, args->schemakind)
    [all...]
  /external/autotest/client/site_tests/hardware_Keyboard/
hardware_Keyboard.py 35 cmd = os.path.join(self.srcdir, 'evtest') + ' ' + event
36 cmd += ' -s ' + key_name
37 (status, output) = commands.getstatusoutput(cmd)
49 cmd = os.path.join(self.srcdir, 'evtest') + ' ' + event
50 cmd += ' -n'
51 (status, output) = commands.getstatusoutput(cmd)
53 logging.warning("Bad event. cmd : %s" % cmd)
70 cmd = os.path.join(self.srcdir, 'evtest') + ' ' + high_key_event
71 cmd += ' -k
    [all...]
  /external/skia/infra/bots/
infra_tests.py 21 def test(cmd, cwd):
23 subprocess.check_output(cmd, cwd=cwd, stderr=subprocess.STDOUT)
37 cmd = [
40 cmd.append('train')
42 cmd.append('run')
43 return test(cmd, SKIA_DIR)
47 cmd = ['go', 'run', 'gen_tasks.go']
49 cmd.append('--test')
51 output = test(cmd, INFRA_BOTS_DIR)
54 % ' '.join(cmd))
    [all...]
  /external/skqp/infra/bots/
infra_tests.py 21 def test(cmd, cwd):
23 subprocess.check_output(cmd, cwd=cwd, stderr=subprocess.STDOUT)
37 cmd = [
40 cmd.append('train')
42 cmd.append('run')
43 return test(cmd, SKIA_DIR)
47 cmd = ['go', 'run', 'gen_tasks.go']
49 cmd.append('--test')
51 output = test(cmd, INFRA_BOTS_DIR)
54 % ' '.join(cmd))
    [all...]
  /system/vold/fs/
Exfat.cpp 42 std::vector<std::string> cmd; local
43 cmd.push_back(kFsckPath);
44 cmd.push_back(source);
46 int rc = ForkExecvp(cmd, sFsckUntrustedContext);
77 std::vector<std::string> cmd; local
78 cmd.push_back(kMkfsPath);
79 cmd.push_back("-n");
80 cmd.push_back("android");
81 cmd.push_back(source);
83 int rc = ForkExecvp(cmd);
    [all...]
Vfat.cpp 67 std::vector<std::string> cmd; local
68 cmd.push_back(kFsckPath);
69 cmd.push_back("-p");
70 cmd.push_back("-f");
71 cmd.push_back(source);
74 rc = ForkExecvp(cmd, sFsckUntrustedContext);
160 std::vector<std::string> cmd; local
161 cmd.push_back(kMkfsPath);
162 cmd.push_back("-F");
163 cmd.push_back("32")
    [all...]
  /test/vts/utils/python/common/
cmd_utils.py 27 def _ExecuteOneShellCommandWithTimeout(cmd, timeout):
40 # On Windows, subprocess.Popen(shell=True) starts two processes, cmd.exe
41 # and the command. The Popen object represents the cmd.exe process, so
44 proc = utils.start_standing_subprocess(cmd)
86 def ExecuteOneShellCommand(cmd, timeout=None):
90 cmd: string, a shell command.
100 str(cmd), shell=True,
105 return _ExecuteOneShellCommandWithTimeout(str(cmd), timeout)
108 def ExecuteShellCommand(cmd):
109 """Execute one shell cmd or a list of shell commands
    [all...]
  /tools/test/connectivity/acts/framework/tests/
acts_adb_test.py 39 cmd = ['adb', '-s', '"SOME_SERIAL"', 'shell', '"SOME_SHELL_CMD"']
42 MockAdbProxy()._exec_cmd(cmd)
47 cmd = ['adb', '-s', '"SOME_SERIAL"', 'shell', '"SOME_SHELL_CMD"']
50 MockAdbProxy()._exec_cmd(cmd)
54 cmd = ['adb', '-s', '"SOME_SERIAL"', 'shell', '"SOME_SHELL_CMD"']
56 MockAdbProxy()._exec_cmd(cmd)
60 cmd = ['adb', '-s', '"SOME_SERIAL"', 'shell', '"SOME_SHELL_CMD"']
62 MockAdbProxy()._exec_cmd(cmd)
66 cmd = ['adb', '-s', '"SOME_SERIAL"', 'shell', '"SOME_SHELL_CMD"']
68 MockAdbProxy()._exec_cmd(cmd)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
test_register.py 97 cmd = self._get_cmd()
114 cmd.run()
136 cmd.show_response = 1
137 cmd.run()
150 cmd = self._get_cmd()
151 cmd._set_config()
152 cmd.finalize_options()
153 cmd.send_metadata()
157 self.assertEqual(cmd.distribution.password, 'password')
161 cmd = self._get_cmd()
    [all...]
  /external/autotest/server/site_tests/enterprise_CFM_HuddlyUpdater/
enterprise_CFM_HuddlyUpdater.py 55 cmd = 'ls -l /lib/firmware/ | grep huddly'
56 result = self._shcmd(cmd)
60 cmd = '[ -f {} ] && rm -rf {}'.format(self.DUT_FIRMWARE_SRC,
62 self._shcmd(cmd)
64 cmd = 'mv {} {} && rm -rf {}'.format(self.DUT_FIRMWARE_SRC_BACKUP,
67 self._shcmd(cmd)
69 def _shcmd(self, cmd):
71 logging.info('CMD: [%s]', cmd)
72 result = self._client.run(cmd)
    [all...]
  /frameworks/base/core/java/android/nfc/tech/
MifareClassic.java 373 byte[] cmd = new byte[12];
377 cmd[0] = 0x60; // phHal_eMifareAuthentA
379 cmd[0] = 0x61; // phHal_eMifareAuthentB
385 cmd[1] = (byte) sectorToBlock(sector);
389 System.arraycopy(uid, uid.length - 4, cmd, 2, 4);
392 System.arraycopy(key, 0, cmd, 6, 6);
395 if (transceive(cmd, false) != null) {
424 byte[] cmd = { 0x30, (byte) blockIndex };
425 return transceive(cmd, false);
449 byte[] cmd = new byte[data.length + 2]
476 ByteBuffer cmd = ByteBuffer.allocate(6); local
504 ByteBuffer cmd = ByteBuffer.allocate(6); local
    [all...]
  /external/chromium-trace/catapult/devil/devil/android/sdk/
gce_adb_wrapper.py 35 cmd = ['connect', self._device_serial]
36 output = self._RunAdbCmd(cmd, timeout=timeout, retries=retries)
38 raise device_errors.AdbCommandFailedError(cmd, output)
78 cmd = [
86 status, _ = cmd_helper.GetCmdStatusAndOutput(cmd)
89 cmd, 'File not reachable on host: %s' % local,
100 cmd = [
109 status, _ = cmd_helper.GetCmdStatusAndOutput(cmd)
112 cmd, 'File not reachable on host: %s' % local,
120 cmd, 'File not reachable on host: %s' % local
    [all...]
  /external/libmojo/third_party/catapult/devil/devil/android/sdk/
gce_adb_wrapper.py 33 cmd = ['connect', self._device_serial]
34 output = self._RunAdbCmd(cmd, timeout=timeout, retries=retries)
36 raise device_errors.AdbCommandFailedError(cmd, output)
76 cmd = [
84 status, _ = cmd_helper.GetCmdStatusAndOutput(cmd)
87 cmd, 'File not reachable on host: %s' % local,
98 cmd = [
107 status, _ = cmd_helper.GetCmdStatusAndOutput(cmd)
110 cmd, 'File not reachable on host: %s' % local,
118 cmd, 'File not reachable on host: %s' % local
    [all...]
  /external/python/cpython3/Lib/distutils/tests/
test_sdist.py 77 """Returns a cmd"""
86 cmd = sdist(dist)
87 cmd.dist_dir = 'dist'
88 return dist, cmd
110 dist, cmd = self.get_cmd()
114 cmd.formats = ['zip']
116 cmd.ensure_finalized()
117 cmd.run()
140 dist, cmd = self.get_cmd()
143 cmd.formats = ['gztar', 'tar'
    [all...]
  /build/soong/ui/build/
soong.go 34 cmd := Command(ctx, config, "blueprint bootstrap", "build/blueprint/bootstrap.bash", "-t")
35 cmd.Environment.Set("BLUEPRINTDIR", "./build/blueprint")
36 cmd.Environment.Set("BOOTSTRAP", "./build/blueprint/bootstrap.bash")
37 cmd.Environment.Set("BUILDDIR", config.SoongOutDir())
38 cmd.Environment.Set("GOROOT", "./"+filepath.Join("prebuilts/go", config.HostPrebuiltTag()))
39 cmd.Environment.Set("BLUEPRINT_LIST_FILE", filepath.Join(config.FileListDir(), "Android.bp.list"))
40 cmd.Environment.Set("NINJA_BUILDDIR", config.OutDir())
41 cmd.Environment.Set("SRCDIR", ".")
42 cmd.Environment.Set("TOPNAME", "Android.bp")
43 cmd.Sandbox = soongSandbo
    [all...]

Completed in 1484 milliseconds

<<11121314151617181920>>