/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_getopt.py | 101 cmdline = ['-a', '1', '-b', '--alpha=2', '--beta', '-a', '3', '-a', 104 opts, args = getopt.getopt(cmdline, 'a:b', ['alpha=', 'beta']) 112 self.assertError(getopt.getopt, cmdline, 'a:b', ['alpha', 'beta']) 116 cmdline = ['-a', 'arg1', '-b', '1', '--alpha', '--beta=2'] 119 opts, args = getopt.gnu_getopt(cmdline, 'ab:', ['alpha', 'beta=']) 130 opts, args = getopt.gnu_getopt(cmdline, '+ab:', ['alpha', 'beta=']) 136 opts, args = getopt.gnu_getopt(cmdline, 'ab:', ['alpha', 'beta='])
|
/system/core/init/ |
bootchart.cpp | 86 android::base::ReadFileToString("/proc/cmdline", &kernel_cmdline); 128 // name from /proc/<pid>/cmdline. 129 snprintf(filename, sizeof(filename), "/proc/%d/cmdline", pid); 130 std::string cmdline; local 131 android::base::ReadFileToString(filename, &cmdline); 132 const char* full_name = cmdline.c_str(); // So we stop at the first NUL. 138 if (!cmdline.empty()) { 166 std::string cmdline; local 168 android::base::ReadFileToString("/proc/cmdline", &cmdline); [all...] |
/external/autotest/contrib/ |
watch_expensive_rpcs.py | 61 cmdline = subprocess.check_output('become chromeos-test@%s -- ' 62 '"cat /proc/%s/cmdline"' % (host,proc_id), shell=True) 64 cmdline = '' 65 return cmdline
|
/external/libchrome/base/process/ |
launch.h | 173 // Launch a process via the command line |cmdline|. 186 BASE_EXPORT Process LaunchProcess(const CommandLine& cmdline, 199 // cmdline = "c:\windows\explorer.exe" -foo "c:\bar\" 200 BASE_EXPORT Process LaunchProcess(const string16& cmdline, 208 BASE_EXPORT Process LaunchElevatedProcess(const CommandLine& cmdline,
|
/toolchain/binutils/binutils-2.25/gold/testsuite/ |
incremental_test.sh | 51 cat incremental_test.cmdline |
|
/system/core/toolbox/ |
ps.c | 47 char cmdline[1024]; local 65 cmdline[0] = 0; 69 sprintf(cmdline, "/proc/%d/cmdline", pid); 71 int fd = open(cmdline, O_RDONLY); 75 r = read(fd, cmdline, 1023); 79 cmdline[r] = 0; 198 printf("%s", cmdline[0] ? cmdline : name);
|
/frameworks/base/tools/preload2/src/com/android/preload/ |
DeviceUtils.java | 48 public static void doShell(IDevice device, String cmdline, long timeout, TimeUnit unit) { 49 doShell(device, cmdline, new NullShellOutputReceiver(), timeout, unit); 55 public static String doShellReturnString(IDevice device, String cmdline, long timeout, 58 doShell(device, cmdline, rec, timeout, unit); 65 public static void doShell(IDevice device, String cmdline, IShellOutputReceiver receiver, 68 device.executeShellCommand(cmdline, receiver, timeout, unit);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
webbrowser.py | 172 cmdline = [self.name] + [arg.replace("%s", url) 176 p = subprocess.Popen(cmdline) 178 p = subprocess.Popen(cmdline, close_fds=True) 189 cmdline = [self.name] + [arg.replace("%s", url) 193 p = subprocess.Popen(cmdline) 198 p = subprocess.Popen(cmdline, close_fds=True, preexec_fn=setsid) 223 cmdline = [self.name] + raise_opt + args 236 p = subprocess.Popen(cmdline, close_fds=True, stdin=inout, 667 for cmdline in _userchoices: 668 if cmdline != '' 672 cmdline = None # to make del work if _userchoices was empty variable [all...] |
CGIHTTPServer.py | 261 cmdline = [scriptfile] 267 cmdline = [interp, '-u'] + cmdline 269 cmdline.append(query) 271 self.log_message("command: %s", subprocess.list2cmdline(cmdline)) 276 p = subprocess.Popen(cmdline,
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
webbrowser.py | 172 cmdline = [self.name] + [arg.replace("%s", url) 176 p = subprocess.Popen(cmdline) 178 p = subprocess.Popen(cmdline, close_fds=True) 189 cmdline = [self.name] + [arg.replace("%s", url) 193 p = subprocess.Popen(cmdline) 198 p = subprocess.Popen(cmdline, close_fds=True, preexec_fn=setsid) 223 cmdline = [self.name] + raise_opt + args 236 p = subprocess.Popen(cmdline, close_fds=True, stdin=inout, 667 for cmdline in _userchoices: 668 if cmdline != '' 672 cmdline = None # to make del work if _userchoices was empty variable [all...] |
CGIHTTPServer.py | 261 cmdline = [scriptfile] 267 cmdline = [interp, '-u'] + cmdline 269 cmdline.append(query) 271 self.log_message("command: %s", subprocess.list2cmdline(cmdline)) 276 p = subprocess.Popen(cmdline,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
webbrowser.py | 172 cmdline = [self.name] + [arg.replace("%s", url) 176 p = subprocess.Popen(cmdline) 178 p = subprocess.Popen(cmdline, close_fds=True) 189 cmdline = [self.name] + [arg.replace("%s", url) 193 p = subprocess.Popen(cmdline) 198 p = subprocess.Popen(cmdline, close_fds=True, preexec_fn=setsid) 223 cmdline = [self.name] + raise_opt + args 236 p = subprocess.Popen(cmdline, close_fds=True, stdin=inout, 667 for cmdline in _userchoices: 668 if cmdline != '' 672 cmdline = None # to make del work if _userchoices was empty variable [all...] |
CGIHTTPServer.py | 261 cmdline = [scriptfile] 267 cmdline = [interp, '-u'] + cmdline 269 cmdline.append(query) 271 self.log_message("command: %s", subprocess.list2cmdline(cmdline)) 276 p = subprocess.Popen(cmdline,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
webbrowser.py | 172 cmdline = [self.name] + [arg.replace("%s", url) 176 p = subprocess.Popen(cmdline) 178 p = subprocess.Popen(cmdline, close_fds=True) 189 cmdline = [self.name] + [arg.replace("%s", url) 193 p = subprocess.Popen(cmdline) 198 p = subprocess.Popen(cmdline, close_fds=True, preexec_fn=setsid) 223 cmdline = [self.name] + raise_opt + args 236 p = subprocess.Popen(cmdline, close_fds=True, stdin=inout, 667 for cmdline in _userchoices: 668 if cmdline != '' 672 cmdline = None # to make del work if _userchoices was empty variable [all...] |
CGIHTTPServer.py | 261 cmdline = [scriptfile] 267 cmdline = [interp, '-u'] + cmdline 269 cmdline.append(query) 271 self.log_message("command: %s", subprocess.list2cmdline(cmdline)) 276 p = subprocess.Popen(cmdline,
|
/toolchain/binutils/binutils-2.25/gold/ |
options.cc | 343 Command_line* cmdline) 345 cmdline->script_options().define_symbol(arg); 410 Command_line* cmdline) 425 cmdline->inputs().add_file(file); 448 Command_line* cmdline) 454 this->parse_just_symbols(option, arg, cmdline); 459 Command_line* cmdline) 463 cmdline->inputs().add_file(file); 531 Command_line* cmdline) 533 if (!read_commandline_script(arg, cmdline)) [all...] |
/external/deqp/framework/platform/android/ |
tcuAndroidPlatformCapabilityQueryJNI.cpp | 57 virtual void registerExtendedOptions (de::cmdline::Parser& parser); 93 void GLConfigParser::registerExtendedOptions (de::cmdline::Parser& parser) 95 using de::cmdline::Option; 179 std::string cmdLine; 192 cmdLine = std::string(cmdLineBytes); 197 tcu::print("failed to copy cmdLine"); 204 const bool isSupported = isRenderConfigSupported(cmdLine);
|
/external/netperf/src/ |
netserver.c | 1056 char *cmdline; 1071 /* create the cmdline array based on strlen(program) + 80 chars */ 1073 cmdline = malloc(cmdline_length + 1); // +1 for trailing null 1086 /* Build cmdline for child process */ 1087 strcpy(cmdline, program); 1088 cmd_index = strlen(cmdline); 1090 cmd_index += snprintf(&cmdline[cmd_index], 1096 cmd_index += snprintf(&cmdline[cmd_index], 1100 cmd_index += snprintf(&cmdline[cmd_index], 1107 cmd_index += snprintf(&cmdline[cmd_index] [all...] |
/bionic/libc/kernel/uapi/asm-arm/asm/ |
setup.h | 109 char cmdline[1]; member in struct:tag_cmdline 139 struct tag_cmdline cmdline; member in union:tag::__anon220
|
/development/ndk/platforms/android-21/arch-arm/include/asm/ |
setup.h | 109 char cmdline[1]; member in struct:tag_cmdline 139 struct tag_cmdline cmdline; member in union:tag::__anon1396
|
/external/autotest/server/site_tests/brillo_ProcLibMemoryInventory/ |
brillo_ProcLibMemoryInventory.py | 84 # PID Vss Rss Pss Uss cmdline 87 pid, vss_str, rss_str, pss_str, uss_str, cmdline = line_tokens 88 path, daemon = os.path.split(cmdline)
|
/external/kernel-headers/original/uapi/asm-arm/asm/ |
setup.h | 126 char cmdline[1]; /* this is the minimum size */ member in struct:tag_cmdline 157 struct tag_cmdline cmdline; member in union:tag::__anon13710
|
/external/v8/tools/ |
android-run.py | 49 def Execute(cmdline): 53 args=cmdline,
|
/prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/asm/ |
setup.h | 109 char cmdline[1]; member in struct:tag_cmdline 139 struct tag_cmdline cmdline; member in union:tag::__anon54421
|
/prebuilts/ndk/current/platforms/android-23/arch-arm/usr/include/asm/ |
setup.h | 109 char cmdline[1]; member in struct:tag_cmdline 139 struct tag_cmdline cmdline; member in union:tag::__anon59068
|