HomeSort by relevance Sort by last modified time
    Searched defs:cmdline (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /toolchain/binutils/binutils-2.25/ld/
ldfile.h 38 bfd_boolean cmdline; member in struct:search_dirs
46 (const char *, bfd_boolean cmdline);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
runant.py 92 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/
switch_root.c 46 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);
  /system/tools/aidl/tests/
end_to_end_tests.cpp 101 const char* cmdline[argc + 1] = { local
105 auto options = CppOptions::Parse(argc, cmdline);
  /external/fio/
profile.h 33 * Called after parsing options, to prepare 'cmdline'
40 const char **cmdline; member in struct:profile_ops
  /external/google-breakpad/src/common/linux/
file_id_unittest.cc 82 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...]
  /system/core/libmemtrack/
memtrack_test.c 38 if (asprintf(&filename, "/proc/%d/cmdline", pid) < 0) {
112 char cmdline[256]; local
120 getprocname(pid, cmdline, (int)sizeof(cmdline));
138 v1, v2, v3, v4, v5, v6, cmdline);
  /system/core/mkbootimg/
bootimg.h 57 uint8_t cmdline[BOOT_ARGS_SIZE]; member in struct:boot_img_hdr
  /system/extras/simpleperf/
cmd_dumprecord.cpp 144 {FEAT_CMDLINE, "cmdline"},
207 std::vector<std::string> cmdline = record_file_reader_->ReadCmdlineFeature(); local
208 PrintIndented(1, "cmdline: %s\n", android::base::Join(cmdline, ' ').c_str());
record_file_reader.cpp 209 std::vector<std::string> cmdline; local
217 cmdline.push_back(p);
220 return cmdline;
  /art/test/137-cfi/src/
Main.java 91 String[] cmdline = getCmdLine(); local
92 String[] secCmdLine = new String[cmdline.length + 1];
93 System.arraycopy(cmdline, 0, secCmdLine, 0, cmdline.length);
140 // Read /proc/self/cmdline to find the invocation command line (so we can fork another runtime).
143 BufferedReader in = new BufferedReader(new FileReader("/proc/self/cmdline"));
  /external/libxml2/
xmlcatalog.c 97 char *cmdline = NULL, *cur; local
106 cmdline = xmlShellReadline("> ");
107 if (cmdline == NULL)
113 cur = cmdline;
125 free(cmdline);
188 free(cmdline);
302 free(cmdline); /* not xmlFree here ! */
  /external/toybox/toys/pending/
sh.c 205 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)
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...]
  /system/core/libcutils/
trace-dev.c 67 static bool atrace_is_cmdline_match(const char* cmdline)
77 if (strcmp(value, cmdline) == 0) {
100 FILE * file = fopen("/proc/self/cmdline", "re");
102 char cmdline[4096]; local
103 if (fgets(cmdline, sizeof(cmdline), file)) {
104 result = atrace_is_cmdline_match(cmdline);
106 ALOGE("Error reading cmdline: %s (%d)", strerror(errno), errno);
110 ALOGE("Error opening /proc/self/cmdline: %s (%d)", strerror(errno),
  /system/tools/aidl/
generate_cpp_unittest.cpp 777 const char* cmdline[argc] = { local
780 return CppOptions::Parse(argc, cmdline);
  /development/perftests/panorama/feature_stab/src/dbregtest/
dbregtest.cpp 70 void parse_cmd_line(stringstream& cmdline,
108 stringstream cmdline; local
116 // put the options and image list file name into the cmdline stringstream
119 cmdline << argv[c] << " ";
122 parse_cmd_line(cmdline, argc, progname, image_list_file_name, nr_corners, max_disparity, motion_model_type,quarter_resolution,reference_update_period,do_motion_smoothing,motion_smoothing_gain);
304 void parse_cmd_line(stringstream& cmdline,
322 while (cmdline >> token)
333 --c; cmdline >> token;
353 --c; cmdline >> nr_corners;
356 --c; cmdline >> max_disparity
    [all...]
  /external/deqp/framework/delibs/decpp/
deCommandLine.cpp 34 namespace cmdline namespace in namespace:de
355 CommandLine cmdLine;
356 const bool parseOk = parser.parse(0, DE_NULL, &cmdLine, err);
364 CommandLine cmdLine;
365 const bool parseOk = parser.parse(DE_LENGTH_OF_ARRAY(args), &args[0], &cmdLine, err);
374 CommandLine cmdLine;
375 const bool parseOk = parser.parse(DE_LENGTH_OF_ARRAY(args), &args[0], &cmdLine, err);
384 CommandLine cmdLine;
385 const bool parseOk = parser.parse(DE_LENGTH_OF_ARRAY(args), &args[0], &cmdLine, err);
388 DE_TEST_ASSERT(cmdLine.getArgs().size() == DE_LENGTH_OF_ARRAY(args))
    [all...]
deCommandLine.hpp 37 namespace cmdline namespace in namespace:de
151 // Generic implementation for cmdline.
426 } // cmdline
  /frameworks/native/opengl/libs/EGL/
Loader.cpp 104 snprintf(procPath, 128, "/proc/%ld/cmdline", pid);
107 static char cmdline[256]; local
108 char *str = fgets(cmdline, sizeof(cmdline) - 1, file);
111 return cmdline;
  /hardware/intel/bootstub/
mb.h 74 u32 cmdline; member in struct:__anon29618
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbregtest/
dbregtest.cpp 70 void parse_cmd_line(stringstream& cmdline,
108 stringstream cmdline; local
116 // put the options and image list file name into the cmdline stringstream
119 cmdline << argv[c] << " ";
122 parse_cmd_line(cmdline, argc, progname, image_list_file_name, nr_corners, max_disparity, motion_model_type,quarter_resolution,reference_update_period,do_motion_smoothing,motion_smoothing_gain);
304 void parse_cmd_line(stringstream& cmdline,
322 while (cmdline >> token)
333 --c; cmdline >> token;
353 --c; cmdline >> nr_corners;
356 --c; cmdline >> max_disparity
    [all...]
  /packages/experimental/procstatlog/
procstatlog.c 242 char cmdline[4096]; local
243 sprintf(filename, "/proc/%d/cmdline", pid);
250 int len = read(fd, cmdline, sizeof(cmdline) - 1);
258 cmdline[len] = '\0';
260 for (n = 0; n < name_count && !strstr(cmdline, names[n]); ++n);
  /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...]
  /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...]
  /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...]

Completed in 639 milliseconds

1 2 3 4