Searched refs:cmdline (Results 1 - 25 of 82) sorted by relevance

1234

/external/chromium-trace/catapult/third_party/coverage/coverage/
H A D__main__.py7 from coverage.cmdline import main
/external/autotest/client/site_tests/security_Minijail_seccomp/
H A Dsecurity_Minijail_seccomp.py26 cmdline = '/sbin/minijail0'
29 cmdline += ' -u %s' % jail.user
32 cmdline += ' -n'
34 cmdline += ' -S %s/%s %s/%s' % (self.bindir, jail.policy,
38 cmdline += ' %s' % ' '.join(args)
40 logging.info("Command line: " + cmdline)
41 ret = utils.system(cmdline, ignore_status=True)
/external/toybox/toys/other/
H A Dswitch_root.c46 char *newroot = *toys.optargs, **cmdline = toys.optargs+1; local
70 // trim any / characters from the init cmdline, as we want to test it with
71 // stat(), relative to newroot. *cmdline is also used below, but by that
73 while (**cmdline == '/') (*cmdline)++;
76 if (stat(*cmdline, &st1) || !S_ISREG(st1.st_mode) || !(st1.st_mode&0100)) {
112 execv(*cmdline, cmdline);
113 perror_msg("Failed to exec '%s'", *cmdline);
/external/deqp/execserver/tools/
H A DxsMain.cpp42 void registerOptions (de::cmdline::Parser& parser)
44 using de::cmdline::Option;
45 using de::cmdline::NamedValue;
55 de::cmdline::CommandLine cmdLine;
68 de::cmdline::Parser parser;
/external/chromium-trace/catapult/telemetry/telemetry/internal/util/
H A Dps_util.py80 if inspect.ismethod(p.cmdline):
81 cmdline = p.cmdline()
83 cmdline = p.cmdline
84 process_info += ' - %s' % cmdline
/external/v8/tools/gcmole/
H A Dparallel.py28 def invoke(cmdline):
31 cmdline, shell=True, stderr=subprocess.STDOUT), 0)
/external/libopus/
H A DMakefile.unix68 COMPILE.c.cmdline = $(CC) -c $(CFLAGS) -o $@ $<
70 LINK.o.cmdline = $(LINK.o) $^ $(LDLIBS) -o $@$(EXESUFFIX)
72 ARCHIVE.cmdline = $(AR) $(ARFLAGS) $@ $^ && $(RANLIB) $@
75 $(COMPILE.c.cmdline)
78 $(COMPILE.cpp.cmdline)
103 $(ARCHIVE.cmdline)
106 $(LINK.o.cmdline)
109 $(LINK.o.cmdline)
/external/toybox/toys/pending/
H A Dsh.c205 char *cmdline; // Unparsed line for display purposes member in struct:pipeline
206 int cmdlinelen; // How long is cmdline?
237 static char *parse_pipeline(char *cmdline, struct pipeline *line) argument
240 char *start = line->cmdline = cmdline;
242 if (!cmdline) return 0;
244 line->cmdline = cmdline;
253 line->cmdlinelen = start-cmdline;
277 line->cmdlinelen = start-cmdline;
[all...]
/external/curl/tests/
H A Dhttp2-server.pl69 my $cmdline="$nghttpx --backend=127.0.0.1,8990 ".
74 print "RUN: $cmdline\n" if($verbose);
75 system("$cmdline 2>/dev/null");
/external/libchrome/sandbox/linux/services/
H A Dnamespace_sandbox.h60 static base::Process LaunchProcess(const base::CommandLine& cmdline,
68 const base::CommandLine& cmdline,
/external/autotest/client/site_tests/security_AltSyscall/
H A Dsecurity_AltSyscall.py39 cmdline = '/sbin/minijail0 -a %s %s/%s' % (table, self.srcdir, exe)
41 logging.info("Command line: " + cmdline)
42 ret = utils.system(cmdline, ignore_status=True)
/external/deqp/framework/common/
H A DtcuCommandLine.hpp195 const de::cmdline::CommandLine& getCommandLine (void) const;
203 virtual void registerExtendedOptions (de::cmdline::Parser& parser);
205 de::cmdline::CommandLine m_cmdLine;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A Drunant.py92 cmdline = ('%s %s -classpath %s -Dant.home=%s %s ' + \
98 print '\n%s\n\n' % (cmdline)
102 os.system(cmdline)
95 CLASSPATH, string.join(sys.argv[1:], ' ')) variable
/external/google-breakpad/src/common/linux/
H A Dfile_id_unittest.cc82 char cmdline[4096]; local
83 sprintf(cmdline, "cp \"%s\" \"%s\"", exe_name, templ.c_str());
84 ASSERT_EQ(0, system(cmdline)) << "Failed to execute: " << cmdline;
85 sprintf(cmdline, "chmod u+w \"%s\"", templ.c_str());
86 ASSERT_EQ(0, system(cmdline)) << "Failed to execute: " << cmdline;
87 sprintf(cmdline, "strip \"%s\"", templ.c_str());
88 ASSERT_EQ(0, system(cmdline)) << "Failed to execute: " << cmdline;
[all...]
/external/autotest/contrib/
H A Dwatch_expensive_rpcs.py61 cmdline = subprocess.check_output('become chromeos-test@%s -- '
62 '"cat /proc/%s/cmdline"' % (host,proc_id), shell=True)
64 cmdline = ''
65 return cmdline
/external/fio/
H A Dprofile.h33 * Called after parsing options, to prepare 'cmdline'
40 const char **cmdline; member in struct:profile_ops
/external/clang/tools/scan-view/share/
H A Dstartfile.py34 def _invoke(self, cmdline):
57 pipe = subprocess.Popen(cmdline, stdin=inout, stdout=inout,
71 cmdline = self.args + [filename]
74 cmdline = self.args + filename
76 return self._invoke(cmdline)
/external/v8/build/win/importlibs/
H A Dcreate_importlib_win.py117 cmdline = ['ml.exe', '/nologo', '/c', asm_name, '/Fo', obj_name]
118 self._Shell(cmdline, cwd=self._temp_dir, stdout=open(os.devnull))
147 cmdline = ['lib.exe',
152 cmdline.append(obj_file)
154 self._Shell(cmdline, cwd=self._temp_dir, stdout=open(os.devnull))
/external/libchrome/base/process/
H A Dlaunch.h173 // 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,
/external/v8/build/android/pylib/utils/
H A Dtest_environment.py19 if not server in ' '.join(p.cmdline):
/external/autotest/server/site_tests/brillo_ProcLibMemoryInventory/
H A Dbrillo_ProcLibMemoryInventory.py84 # 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/v8/tools/
H A Dandroid-run.py49 def Execute(cmdline):
53 args=cmdline,
/external/deqp/framework/platform/android/
H A DtcuAndroidPlatformCapabilityQueryJNI.cpp57 virtual void registerExtendedOptions (de::cmdline::Parser& parser);
93 void GLConfigParser::registerExtendedOptions (de::cmdline::Parser& parser)
95 using de::cmdline::Option;
/external/netperf/src/
H A Dnetserver.c1056 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_inde
[all...]
/external/kernel-headers/original/uapi/asm-arm/asm/
H A Dsetup.h126 char cmdline[1]; /* this is the minimum size */ member in struct:tag_cmdline
157 struct tag_cmdline cmdline; member in union:tag::__anon7759

Completed in 854 milliseconds

1234