/external/chromium/base/ |
debug_message.cc | 14 LPWSTR cmdline = GetCommandLineW(); local 15 MessageBox(NULL, cmdline, L"Kr\x00d8m", MB_TOPMOST);
|
/bootable/bootloader/legacy/libboot/ |
tags_cmdline.c | 40 const char *cmdline = ""; local 45 h.cookie = &cmdline; 49 return cmdline;
|
/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
|
/bootable/bootloader/legacy/include/boot/ |
bootimg.h | 58 unsigned char cmdline[BOOT_ARGS_SIZE]; member in struct:boot_img_hdr 96 void bootimg_set_cmdline(boot_img_hdr *hdr, const char *cmdline);
|
/development/tools/yuv420sp2rgb/ |
Android.mk | 11 LOCAL_SRC_FILES := yuv420sp2rgb.c cmdline.c debug.c
|
/bootable/bootloader/legacy/usbloader/ |
main.c | 42 static void create_atags(unsigned taddr, const char *cmdline, 76 if(cmdline && cmdline[0]) { 82 src = cmdline; 115 const char *cmdline; local 150 if(hdr->cmdline[0]) { 151 cmdline = (char*) hdr->cmdline; 153 cmdline = board_cmdline(); 154 if(cmdline == 0) 221 const char *cmdline = 0; local [all...] |
usbloader.c | 83 static void fixup_tags(unsigned *tags, unsigned *out, const char *cmdline) 90 if(cmdline == 0) cmdline = ""; 104 } else if((tags[1] == 0x54410009) && (cmdline[0])) { 105 /* skip existing cmdline so we can replace it */ 126 dprintf("cmdline: '%s'\n", oldcmdline); 127 dprintf("cmdline: '%s'\n", cmdline); 129 /* create a cmdline tag if we need to */ 130 if(cmdline[0]) 167 static char cmdline[BOOT_ARGS_SIZE]; variable [all...] |
/system/core/mkbootimg/ |
bootimg.h | 47 unsigned char cmdline[BOOT_ARGS_SIZE]; member in struct:boot_img_hdr
|
/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/e2fsprogs/debian/ |
initrd.ext3-add-journal | 8 cmdline=$(cat /proc/cmdline)
|
/dalvik/tests/etc/ |
push-and-run-test-jar | 13 # --dev -- development mode (print the vm invocation cmdline) 129 cmdline="cd /data; dalvikvm $DEX_VERIFY $DEX_OPTIMIZE $DEX_DEBUG \ 132 echo $cmdline "$@" 134 adb shell $cmdline "$@"
|
/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...] |
/system/core/fastboot/ |
bootimg.c | 35 void bootimg_set_cmdline(boot_img_hdr *h, const char *cmdline) 37 strcpy((char*) h->cmdline, cmdline);
|
/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", 191 strncat(info.path, "cmdline", sizeof(info.path)); 197 char cmdline[PATH_MAX]; local 198 if (read(fd, cmdline, sizeof(cmdline)) < 0) { 199 fprintf(stderr, "Error reading cmdline: %s: %s\n", info.path, strerror(errno)); 206 // We only want the basename of the cmdline [all...] |
ps.c | 37 char cmdline[1024]; local 53 cmdline[0] = 0; 56 sprintf(cmdline, "/proc/%d/cmdline", pid); 57 fd = open(cmdline, O_RDONLY); 61 r = read(fd, cmdline, 1023); 65 cmdline[r] = 0; 163 printf(" %08x %08x %s %s", wchan, eip, state, cmdline[0] ? cmdline : name);
|
/external/qemu/distrib/sdl-1.2.12/src/main/win32/ |
SDL_win32_main.c | 57 static int ParseCommandLine(char *cmdline, char **argv) 63 for ( bufp = cmdline; *bufp; ) { 236 char *cmdline; local 328 cmdline = SDL_stack_alloc(char, nLen); 329 if ( cmdline == NULL ) { 332 WideCharToMultiByte(CP_ACP, 0, bufp, -1, cmdline, nLen, NULL, NULL); 337 cmdline = SDL_stack_alloc(char, nLen); 338 if ( cmdline == NULL ) { 341 SDL_strlcpy(cmdline, bufp, nLen); 345 argc = ParseCommandLine(cmdline, NULL) [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/bluetooth/glib/tests/ |
child-test.c | 62 gchar *cmdline; local 68 cmdline = g_strdup_printf( "child-test -c%d", ttl); 70 if (!CreateProcess (argv0, cmdline, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi)) 73 g_free(cmdline);
|
/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
|