/packages/apps/Camera/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/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...] |
/system/core/fastboot/ |
bootimg.c | 35 void bootimg_set_cmdline(boot_img_hdr *h, const char *cmdline) 37 strcpy((char*) h->cmdline, cmdline);
|
/external/chromium_org/base/process/ |
launch_win.cc | 108 bool LaunchProcess(const string16& cmdline, 191 const_cast<wchar_t*>(cmdline.c_str()), 197 DPLOG(ERROR) << "Command line:" << std::endl << UTF16ToUTF8(cmdline) 203 const_cast<wchar_t*>(cmdline.c_str()), NULL, NULL, 206 DPLOG(ERROR) << "Command line:" << std::endl << UTF16ToUTF8(cmdline) 234 bool LaunchProcess(const CommandLine& cmdline, 238 return LaunchProcess(cmdline.GetCommandLineString(), options, NULL); 241 bool rv = LaunchProcess(cmdline.GetCommandLineString(), options, &process); 246 bool LaunchElevatedProcess(const CommandLine& cmdline, 249 const string16 file = cmdline.GetProgram().value() [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/cpp/ |
cpp-preproc.c | 99 char *cmdline, *p, *limit; local 103 cmdline = p = yasm_xmalloc(strlen(CPP_PROG)+CMDLINE_SIZE); 129 return cmdline; 136 char *cmdline; local 138 cmdline = cpp_build_cmdline(pp, NULL); 141 pp->f = popen(cmdline, "r"); 148 yasm_xfree(cmdline); 168 char *cmdline; local 170 cmdline = cpp_build_cmdline(pp, "-M"); 173 pp->f_deps = popen(cmdline, "r") [all...] |
/external/qemu/distrib/sdl-1.2.15/src/main/win32/ |
SDL_win32_main.c | 79 static int ParseCommandLine(char *cmdline, char **argv) 86 for ( bufp = cmdline; *bufp; ) { 334 char *cmdline; local 373 cmdline = SDL_stack_alloc(char, nLen); 374 if ( cmdline == NULL ) { 377 WideCharToMultiByte(CP_ACP, 0, bufp, -1, cmdline, nLen, NULL, NULL); 382 cmdline = SDL_stack_alloc(char, nLen); 383 if ( cmdline == NULL ) { 386 SDL_strlcpy(cmdline, bufp, nLen); 390 argc = ParseCommandLine(cmdline, NULL) [all...] |
/system/core/toolbox/ |
lsof.c | 51 char cmdline[CMD_DISPLAY_MAX]; member in struct:pid_info_t 91 info->cmdline, info->pid, info->user, type, 120 info->cmdline, info->pid, info->user, "mem", 144 info->cmdline, info->pid, info->user, "FDS", 187 strlcat(info.path, "cmdline", sizeof(info.path)); 194 char cmdline[PATH_MAX]; local 195 int numRead = read(fd, cmdline, sizeof(cmdline) - 1); 199 fprintf(stderr, "Error reading cmdline: %s: %s\n", info.path, strerror(errno)); 203 cmdline[numRead] = '\0' [all...] |
ps.c | 41 char cmdline[1024]; local 58 cmdline[0] = 0; 62 sprintf(cmdline, "/proc/%d/cmdline", pid); 64 fd = open(cmdline, O_RDONLY); 68 r = read(fd, cmdline, 1023); 72 cmdline[r] = 0; 160 printf("%-30s %-9s %-5d %-5d %s\n", macline, user, pid, ppid, cmdline[0] ? cmdline : name); 180 printf("%s", cmdline[0] ? cmdline : name) [all...] |
/system/core/init/ |
bootchart.c | 126 char cmdline[1024]; local 139 proc_read("/proc/cmdline", cmdline, sizeof(cmdline)); 156 fprintf(out, "system.kernel.options = %s\n", cmdline); 256 char cmdline[1024]; local 261 snprintf(filename,sizeof(filename),"/proc/%d/cmdline",pid); 262 proc_read(filename, cmdline, sizeof(cmdline)); 271 int len2 = strlen(cmdline); 316 char cmdline[1024]; local [all...] |
/external/chromium_org/tools/gn/ |
setup.cc | 207 const CommandLine* cmdline = CommandLine::ForCurrentProcess(); local 208 if (cmdline->HasSwitch(kTimeSwitch)) 210 if (cmdline->HasSwitch(kTracelogSwitch)) 211 SaveTraces(cmdline->GetSwitchValuePath(kTracelogSwitch)); 236 CommandLine* cmdline = CommandLine::ForCurrentProcess(); local 238 scheduler_.set_verbose_logging(cmdline->HasSwitch(kSwitchVerbose)); 239 if (cmdline->HasSwitch(kTimeSwitch) || 240 cmdline->HasSwitch(kTracelogSwitch)) 245 if (!FillSourceDir(*cmdline)) 249 if (!FillOtherConfig(*cmdline)) [all...] |
function_exec_script.cc | 45 bool ExecProcess(const CommandLine& cmdline, 86 base::FilePath::StringType cmdline_str(cmdline.GetCommandLineString()); 142 bool ExecProcess(const CommandLine& cmdline, 149 std::vector<std::string> argv = cmdline.argv(); 339 CommandLine cmdline(python_path); 340 cmdline.AppendArgPath(script_path); 350 cmdline.AppendArg(script_args.list_value()[i].string_value()); 355 trace.SetCommandLine(cmdline); 360 base::UTF16ToUTF8(cmdline.GetCommandLineString())); 362 g_scheduler->Log("Pythoning", cmdline.GetCommandLineString()) [all...] |
setup.h | 124 bool FillArguments(const base::CommandLine& cmdline); 138 bool FillSourceDir(const base::CommandLine& cmdline); 152 bool FillOtherConfig(const base::CommandLine& cmdline);
|
ninja_build_writer.cc | 35 CommandLine cmdline(executable.NormalizePathSeparatorsTo('/')); 36 cmdline.AppendArg("gen"); 37 cmdline.AppendArg(build_settings->build_dir().value()); 38 cmdline.AppendSwitchPath("--root", build_settings->root_path()); 39 cmdline.AppendSwitch("-q"); // Don't write output. 61 cmdline.AppendSwitchASCII(i->first, escaped_value); 66 return base::WideToUTF8(cmdline.GetCommandLineString()); 68 return cmdline.GetCommandLineString();
|
/art/test/etc/ |
push-and-run-prebuilt-test-jar | 191 # This is due to the fact this cmdline can get longer than the longest allowed 194 cmdline="cd $DEX_LOCATION && export ANDROID_DATA=$DEX_LOCATION && export DEX_LOCATION=$DEX_LOCATION && \ 199 echo "$cmdline" > $cmdfile 202 echo $cmdline 206 adb push $cmdfile $DEX_LOCATION/cmdline.sh 208 adb push $cmdfile $DEX_LOCATION/cmdline.sh > /dev/null 2>&1 211 adb shell sh $DEX_LOCATION/cmdline.sh
|
push-and-run-test-jar | 174 cmdline="cd $DEX_LOCATION && export ANDROID_DATA=$DEX_LOCATION && export DEX_LOCATION=$DEX_LOCATION && \ 177 echo $cmdline "$@" 180 adb shell $cmdline "$@"
|
/external/chromium_org/gpu/gles2_conform_support/ |
gles2_conform_test.cc | 66 CommandLine cmdline(program); 67 cmdline.AppendSwitch(std::string("-run=") + path); 70 bool success = base::GetAppOutput(cmdline, &output);
|
/external/chromium_org/chrome/tools/ |
chrome-process-identifier.sh | 30 xargs -0 </proc/$p/cmdline 2>/dev/null|grep -q -- --type= && continue 46 xargs -0 </proc/$p/cmdline 2>/dev/null|grep -q -- --type= && { 54 cmd="$(xargs -0 </proc/$child/cmdline|sed 's/ -/\n-/g')" 2>/dev/null 118 local super=("$@" $(xargs -0 </proc/"$pida"/cmdline)) 2>/dev/null 119 local sub=($(xargs -0 </proc/"$pidb"/cmdline)) 2>/dev/null
|
/external/fio/ |
profile.h | 33 * Called after parsing options, to prepare 'cmdline' 40 const char **cmdline; member in struct:profile_ops
|
/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/fastbootd/commands/ |
boot.c | 70 char cmdline[0]; member in struct:atag_cmdline 77 struct atag_cmdline cmdline; member in union:atag::__anon81065 201 cmdl_length = strnlen((char *) hdr->cmdline, BOOT_ARGS_SIZE - 1); 211 //copy cmdline and ensure that there is null character 212 memcpy(((struct atag *) natags_raw_buff)->data.cmdline.cmdline, 213 (char *) hdr->cmdline, cmdl_length); 214 ((struct atag *) natags_raw_buff)->data.cmdline.cmdline[cmdl_length] = '\0';
|
/system/core/mkbootimg/ |
mkbootimg.c | 64 " [ --cmdline <kernel-commandline> ]\n" 105 char *cmdline = ""; local 140 } else if(!strcmp(arg, "--cmdline")) { 141 cmdline = val; 196 cmdlen = strlen(cmdline); 203 strncpy((char *)hdr.cmdline, cmdline, BOOT_ARGS_SIZE - 1); 204 hdr.cmdline[BOOT_ARGS_SIZE - 1] = '\0'; 206 cmdline += (BOOT_ARGS_SIZE - 1); 207 strncpy((char *)hdr.extra_cmdline, cmdline, BOOT_EXTRA_ARGS_SIZE) [all...] |
/external/chromium_org/build/win/importlibs/ |
create_importlib_win.py | 117 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/chromium_org/chrome/browser/component_updater/ |
component_updater_configurator.cc | 92 ChromeConfigurator(const CommandLine* cmdline, 123 const CommandLine* cmdline, 132 Tokenize(cmdline->GetSwitchValueASCII(switches::kComponentUpdater), 212 const CommandLine* cmdline, 214 return new ChromeConfigurator(cmdline, context_getter);
|
/external/chromium_org/content/shell/android/linker_test_apk/src/org/chromium/chromium_linker_test_apk/ |
ChromiumLinkerTestActivity.java | 64 String[] cmdline = CommandLine.getJavaSwitchesOrNull(); local 65 if (cmdline == null) 69 for (int n = 0; n < cmdline.length; ++n) { 70 Log.i(TAG, " '" + cmdline[n] + "'"); 71 if (cmdline[n].equals(LOW_MEMORY_DEVICE))
|
/external/clang/tools/scan-view/ |
startfile.py | 34 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)
|