/external/linux-tools-perf/util/ |
alias.c | 25 int split_cmdline(char *cmdline, const char ***argv) 33 (*argv)[count++] = cmdline; 34 for (src = dst = 0; cmdline[src];) { 35 char c = cmdline[src]; 37 cmdline[dst++] = 0; 38 while (cmdline[++src] 39 && isspace(cmdline[src])) 45 (*argv)[count++] = cmdline + dst; 55 c = cmdline[src]; 59 return error("cmdline ends with \\") [all...] |
/external/chromium/base/ |
debug_message.cc | 14 LPWSTR cmdline = GetCommandLineW(); local 15 MessageBox(NULL, cmdline, L"Kr\x00d8m", MB_TOPMOST);
|
/external/chromium/chrome/browser/first_run/ |
first_run_gtk.cc | 26 const CommandLine& cmdline = *CommandLine::ForCurrentProcess(); local 27 CommandLine import_cmd(cmdline.GetProgram()); 30 if (cmdline.HasSwitch(switches::kUserDataDir)) { 32 cmdline.GetSwitchValuePath(switches::kUserDataDir));
|
first_run.h | 62 // cmdline parameters. 63 static int ImportNow(Profile* profile, const CommandLine& cmdline); 180 static int ImportFromBrowser(Profile* profile, const CommandLine& cmdline); 188 static int ImportFromFile(Profile* profile, const CommandLine& cmdline);
|
/external/grub/stage2/ |
cmdline.c | 0 /* cmdline.c - the device-independent GRUB text command line */ 30 /* Find the next word from CMDLINE and return the pointer. If 34 skip_to (int after_equal, char *cmdline) 37 while (*cmdline && *cmdline != ' ' && *cmdline != '\t' && 38 ! (after_equal && *cmdline == '=')) 39 cmdline ++; 42 while (*cmdline == ' ' || *cmdline == '\t' | [all...] |
mb_info.h | 31 unsigned long cmdline; member in struct:mod_list 119 unsigned long cmdline; member in struct:multiboot_info
|
/dalvik/tests/etc/ |
push-and-run-test-jar | 12 # --dev -- development mode (print the vm invocation cmdline) 118 cmdline="cd /data; dalvikvm $DEX_VERIFY $DEX_OPTIMIZE $DEX_DEBUG \ 121 echo $cmdline "$@" 123 adb shell $cmdline "$@"
|
/development/tools/yuv420sp2rgb/ |
Android.mk | 11 LOCAL_SRC_FILES := yuv420sp2rgb.c cmdline.c debug.c
|
/system/core/mkbootimg/ |
bootimg.h | 47 unsigned char cmdline[BOOT_ARGS_SIZE]; member in struct:boot_img_hdr
|
/system/core/libcutils/ |
trace.c | 60 static bool atrace_is_cmdline_match(const char* cmdline) 75 if (strcmp(cmdline, start) == 0) { 101 FILE * file = fopen("/proc/self/cmdline", "r"); 103 char cmdline[4096]; local 104 if (fgets(cmdline, sizeof(cmdline), file)) { 105 result = atrace_is_cmdline_match(cmdline); 107 ALOGE("Error reading cmdline: %s (%d)", strerror(errno), errno); 111 ALOGE("Error opening /proc/self/cmdline: %s (%d)", strerror(errno),
|
/external/netperf/ |
netserver.c | 659 char cmdline[80]; local 674 /* Build cmdline for child process */ 675 strcpy(cmdline, program); 677 snprintf(&cmdline[strlen(cmdline)], sizeof(cmdline) - strlen(cmdline), " -v %d", verbosity); 680 snprintf(&cmdline[strlen(cmdline)], sizeof(cmdline) - strlen(cmdline), " -d") [all...] |
/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
|
/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/Gallery2/jni_mosaic/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/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, 123 info->cmdline, info->pid, info->user, "mem", 147 info->cmdline, info->pid, info->user, "FDS", 190 strncat(info.path, "cmdline", sizeof(info.path)); 197 char cmdline[PATH_MAX]; local 198 int numRead = read(fd, cmdline, sizeof(cmdline) - 1); 202 fprintf(stderr, "Error reading cmdline: %s: %s\n", info.path, strerror(errno)); 206 cmdline[numRead] = '\0' [all...] |
ps.c | 37 char cmdline[1024]; local 54 cmdline[0] = 0; 58 sprintf(cmdline, "/proc/%d/cmdline", pid); 60 fd = open(cmdline, O_RDONLY); 64 r = read(fd, cmdline, 1023); 68 cmdline[r] = 0; 157 printf("%-30s %-9s %-5d %-5d %s\n", macline, user, pid, ppid, cmdline[0] ? cmdline : name); 173 printf(" %08x %08x %s %s", wchan, eip, state, 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/chrome/browser/diagnostics/ |
diagnostics_model.h | 75 DiagnosticsModel* MakeDiagnosticsModel(const CommandLine& cmdline);
|
/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)
|
/external/openssl/apps/ |
winrand.c | 70 PSTR cmdline, int iCmdShow) 78 if (cmdline[0] == '\0') 81 filename = cmdline;
|
/external/genext2fs/ |
mkbootimg_ext2.sh | 5 CMDLINE= 23 --cmdline) 24 CMDLINE=$2 54 echo " --cmdline <cmdline> The command line to use" 85 echo -n "$CMDLINE" > $TMPDIR/cmdline
|
/external/grub/docs/ |
multiboot.h | 86 unsigned long cmdline; member in struct:multiboot_info
|