| /development/tools/yuv420sp2rgb/ |
| cmdline.c | 2 #include <cmdline.h>
|
| /external/chromium/base/ |
| process_util.h | 215 // cmdline = "c:\windows\explorer.exe" -foo "c:\bar\" 221 BASE_API bool LaunchApp(const std::wstring& cmdline, 227 BASE_API bool LaunchAppWithHandleInheritance(const std::wstring& cmdline, 232 // represented by |token| had launched it. The caveats about |cmdline| and 242 const std::wstring& cmdline, 250 const std::wstring& cmdline,
|
| logging.cc | 492 std::wstring cmdline = UTF8ToWide(str); local 493 if (cmdline.empty()) 501 if (CreateProcessW(prog_name, &cmdline[0], NULL, NULL, false, 0, NULL, 508 MessageBoxW(NULL, &cmdline[0], L"Fatal error",
|
| /system/core/sh/ |
| options.c | 152 options(int cmdline) 159 if (cmdline) 166 if (!cmdline) { 183 if (c == 'c' && cmdline) {
|
| /external/oprofile/gui/ |
| oprof_start_util.cpp | 269 string cmdline = cmd; local 272 cmdline += " " + *cit + " "; 274 error += "\n\nCommand was :\n\n" + cmdline + "\n";
|
| /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);
|
| /external/dbus/dbus/ |
| dbus-sysdeps-util-unix.c | 1064 DBusString cmdline; local 1073 if (!_dbus_string_init (&cmdline)) 1080 if (!_dbus_string_append_printf (&path, "/proc/%ld/cmdline", pid)) 1094 if (!_dbus_read (fd, &cmdline, max_len)) 1107 string_squash_nonprintable (&cmdline); 1109 if (!_dbus_string_copy (&cmdline, 0, str, _dbus_string_get_length (str))) 1112 _dbus_string_free (&cmdline); 1118 _dbus_string_free (&cmdline);
|
| /system/core/logcat/ |
| logcat.cpp | 599 static char cmdline[1024]; local 601 fd = open("/proc/cmdline", O_RDONLY); 603 int n = read(fd, cmdline, sizeof(cmdline)-1 ); 605 cmdline[n] = 0; 608 cmdline[0] = 0; 611 logcat = strstr( cmdline, KERNEL_OPTION ); 612 console = strstr( cmdline, CONSOLE_OPTION );
|
| /external/chromium/chrome/browser/safe_browsing/ |
| safe_browsing_service.cc | 560 CommandLine* cmdline = CommandLine::ForCurrentProcess(); local 562 cmdline->HasSwitch(switches::kSbDisableAutoUpdate) || 563 cmdline->HasSwitch(switches::kDisableBackgroundNetworking); 565 cmdline->HasSwitch(switches::kSbInfoURLPrefix) ? 566 cmdline->GetSwitchValueASCII(switches::kSbInfoURLPrefix) : 569 cmdline->HasSwitch(switches::kSbMacKeyURLPrefix) ? 570 cmdline->GetSwitchValueASCII(switches::kSbMacKeyURLPrefix) : 881 CommandLine* cmdline = CommandLine::ForCurrentProcess(); local 883 !cmdline->HasSwitch(switches::kSbDisableDownloadProtection); 895 (!cmdline->HasSwitch(switches::kDisableClientSidePhishingDetection) & [all...] |
| /external/chromium/net/tools/crash_cache/ |
| crash_cache.cc | 47 CommandLine cmdline(exe); 48 cmdline.AppendArg(base::IntToString(action)); 51 if (!base::LaunchApp(cmdline, false, false, &handle)) {
|
| /external/dnsmasq/contrib/dynamic-dnsmasq/ |
| dynamic-dnsmasq.pl | 239 if ( open(FILE,"</proc/$process/cmdline") ) { 240 my $cmdline = <FILE>; 242 if ( (split(/\0/,$cmdline))[0] =~ /dnsmasq/ ) {
|
| /system/vold/ |
| cryptfs.c | 997 char cmdline[256]; local 1001 snprintf(cmdline, sizeof(cmdline), "/system/bin/make_ext4fs -a /data -l %lld %s", 1003 SLOGI("Making empty filesystem with command %s\n", cmdline); 1005 snprintf(cmdline, sizeof(cmdline), "/system/bin/newfs_msdos -F 32 -O android -c 8 -s %lld %s", 1007 SLOGI("Making empty filesystem with command %s\n", cmdline); 1013 if (system(cmdline)) { [all...] |
| /frameworks/base/core/jni/ |
| android_util_Process.cpp | 194 char cmdline[32]; local 197 strcpy(cmdline, "unknown"); 199 sprintf(proc_path, "/proc/%d/cmdline", pid); 202 int rc = read(fd, cmdline, sizeof(cmdline)-1); 203 cmdline[rc] = 0; 208 LOGD("setProcessGroup: vvv pid %d (%s)", pid, cmdline); 210 LOGD("setProcessGroup: ^^^ pid %d (%s)", pid, cmdline);
|
| /external/grub/ |
| Android.mk | 72 stage2/cmdline.c \
|
| /external/grub/docs/ |
| kernel.c | 84 printf ("cmdline = %s\n", (char *) mbi->cmdline);
|
| kernel.c.texi | 84 printf ("cmdline = %s\n", (char *) mbi->cmdline);
|
| /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/ |
| SDL_fbevents.c | 380 int cmdline, len, arglen; local 398 SDL_snprintf(path, SDL_arraysize(path), "/proc/%d/cmdline", pid); 399 cmdline = open(path, O_RDONLY, 0); 400 if ( cmdline >= 0 ) { 401 len = read(cmdline, args, sizeof(args)); 429 close(cmdline);
|
| /external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/ |
| SDL_gsevents.c | 354 int cmdline, len, arglen; local 367 SDL_snprintf(path, SDL_arraysize(path), "/proc/%d/cmdline", pid); 368 cmdline = open(path, O_RDONLY, 0); 369 if ( cmdline >= 0 ) { 370 len = read(cmdline, args, sizeof(args)); 380 close(cmdline);
|
| /external/oprofile/pp/ |
| opannotate.cpp | 46 string cmdline; member in namespace:__anon9158 94 out << in_comment << "Command line: " << cmdline << '\n' 855 cmdline += string(argv[i]) + " ";
|
| /external/chromium/chrome/browser/extensions/ |
| extension_webstore_private_api.cc | 83 CommandLine* cmdline = CommandLine::ForCurrentProcess(); local 85 if (cmdline->HasSwitch(switches::kAppsGalleryReturnTokens) &&
|
| /external/qemu/distrib/sdl-1.2.12/src/main/macos/ |
| SDL_main.c | 80 static int ParseCommandLine(char *cmdline, char **argv) 86 for ( bufp = cmdline; *bufp; ) {
|
| /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/ |
| SysinfoPanel.java | 546 String cmdline = line.substring(43).trim().replace("/system/bin/", ""); local 549 mDataset.setValue(cmdline, pss);
|
| /frameworks/base/telephony/java/com/android/internal/telephony/ |
| BaseCommands.java | 820 * The contents of the /proc/cmdline file 824 String cmdline = ""; local 827 is = new FileInputStream("/proc/cmdline"); 831 cmdline = new String(buffer, 0, count); 834 Log.d(LOG_TAG, "No /proc/cmdline exception=" + e); 843 Log.d(LOG_TAG, "/proc/cmdline=" + cmdline); 844 return cmdline;
|
| /external/chromium/sdch/open-vcdiff/src/ |
| gflags.cc | 1440 static const char* cmdline = ""; \/\/ the entire command-line member in namespace:google [all...] |
| /bootable/diskinstaller/ |
| config.mk | 124 internal_installerimage_args += --cmdline "$(BOARD_INSTALLER_CMDLINE)"
|