Searched defs:cmdline (Results 1 - 25 of 33) sorted by relevance

12

/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/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/fio/
H A Dprofile.h33 * Called after parsing options, to prepare 'cmdline'
40 const char **cmdline; member in struct:profile_ops
/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/libxml2/
H A Dxmlcatalog.c96 char *cmdline = NULL, *cur; local
105 cmdline = xmlShellReadline("> ");
106 if (cmdline == NULL)
112 cur = cmdline;
124 free(cmdline);
187 free(cmdline);
301 free(cmdline); /* not xmlFree here ! */
H A DdebugXML.c2811 char *cmdline = NULL, *cur; local
2859 cmdline = ctxt->input(prompt);
2860 if (cmdline == NULL)
2866 cur = cmdline;
3409 free(cmdline); /* not xmlFree here ! */
3410 cmdline = NULL;
3421 if (cmdline != NULL)
3422 free(cmdline); /* not xmlFree here ! */
/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/deqp/framework/delibs/decpp/
H A DdeCommandLine.cpp34 namespace cmdline namespace in namespace:de
582 } // cmdline
H A DdeCommandLine.hpp37 namespace cmdline namespace in namespace:de
151 // Generic implementation for cmdline.
426 } // cmdline
/external/libchrome/sandbox/linux/services/
H A Dnamespace_sandbox.cc98 const base::CommandLine& cmdline,
100 return LaunchProcessWithOptions(cmdline.argv(), launch_options, Options());
112 const base::CommandLine& cmdline,
115 return LaunchProcessWithOptions(cmdline.argv(), launch_options,
97 LaunchProcess( const base::CommandLine& cmdline, const base::LaunchOptions& launch_options) argument
111 LaunchProcessWithOptions( const base::CommandLine& cmdline, const base::LaunchOptions& launch_options, const Options& ns_sandbox_options) argument
/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::__anon7587
/external/dbus/dbus/
H A Ddbus-sysdeps-util-unix.c1109 DBusString cmdline; local
1118 if (!_dbus_string_init (&cmdline))
1125 if (!_dbus_string_append_printf (&path, "/proc/%ld/cmdline", pid))
1139 if (!_dbus_read (fd, &cmdline, max_len))
1152 string_squash_nonprintable (&cmdline);
1154 if (!_dbus_string_copy (&cmdline, 0, str, _dbus_string_get_length (str)))
1157 _dbus_string_free (&cmdline);
1163 _dbus_string_free (&cmdline);
/external/e2fsprogs/lib/ext2fs/
H A Dtdbtool.c48 char cmdline[1024]; variable
/external/libchrome/base/process/
H A Dlaunch_posix.cc287 Process LaunchProcess(const CommandLine& cmdline, argument
289 return LaunchProcess(cmdline.argv(), options);
/external/autotest/frontend/client/src/autotest/afe/create/
H A DCreateJobViewPresenter.java338 private JSONArray getKernelParams(String kernel_list, String cmdline) { argument
345 // if there is a cmdline part, put it for all versions in the map
346 if (cmdline.length() > 0) {
347 item.put("cmdline", cmdline);
/external/google-breakpad/src/tools/linux/md2core/
H A Dminidump-2-core.cc647 const char* cmdline = (const char*) range.data(); local
651 for (; i < range.length() && cmdline[i] && cmdline[i] != ' '; ++i) { }
653 fwrite(cmdline, i, 1, stderr);
656 if (!cmdline[j] || cmdline[j] == ' ') {
658 fwrite(cmdline + i, j - i, 1, stderr);
666 const char *binary_name = cmdline;
668 if (cmdline[i] == '/') {
669 binary_name = cmdline
[all...]
/external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
H A Dantlr3.jar ... .apache.tools.ant.types.CommandlineJava cmdline org.apache.tools.ant.taskdefs. ...
/external/autotest/frontend/afe/
H A Dmodels.py1044 cmdline = dbmodels.CharField(max_length=255, blank=True) variable in class:Kernel
1064 cmdline = kernel_dict.pop('cmdline', '')
1071 cmdline=cmdline)
1078 unique_together = ('version', 'cmdline')
1081 return u'%s %s' % (self.version, self.cmdline)
/external/valgrind/coregrind/
H A Dvgdb.c1065 and at least on MacOS, reading cmdline is not available. */
1075 sprintf(cmdline_file, "/proc/%d/cmdline", pid);
1078 DEBUG(1, "error opening cmdline file %s %s\n",
1082 char cmdline[100]; local
1084 while ((sz = read(fd, cmdline, sizeof cmdline - 1)) != 0) {
1086 if (cmdline[i] == 0)
1087 cmdline[i] = ' ';
1088 cmdline[sz] = 0;
1089 fprintf(out, "%s", cmdline);
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-nodeps.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/guice/extensions/struts2/lib/
H A Dant-1.6.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 1086 milliseconds

12