/external/qemu/android/ |
cmdline-option.c | 1 #include "android/cmdline-option.h" 42 #include "android/cmdline-options.h"
|
main-common.h | 16 #include "android/cmdline-option.h"
|
/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);
|
/frameworks/base/docs/html/guide/developing/devices/ |
index.jd | 16 "{@docRoot}guide/developing/devices/managing-avds-cmdline.html">Managing Virtual 71 <a href="{@docRoot}guide/developing/devices/managing-avds-cmdline.html">Managing AVDs
|
/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;
|
/ndk/sources/host-tools/nawk-20071023/ |
main.c | 46 /* 2 = cmdline, 1 = compile, 0 = running */ 61 setlocale(LC_NUMERIC, "C"); /* for parsing cmdline & prog */
|
/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 );
|
/frameworks/base/opengl/libs/EGL/ |
egl.cpp | 90 sprintf(procPath, "/proc/%ld/cmdline", pid); 94 char cmdline[256] = {}; local 95 if (fgets(cmdline, sizeof(cmdline) - 1, file)) 97 if (!strcmp(value, cmdline))
|
/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/chrome/browser/first_run/ |
first_run.cc | 80 int FirstRun::ImportNow(Profile* profile, const CommandLine& cmdline) { 82 if (cmdline.HasSwitch(switches::kImportFromFile)) { 85 return_code = ImportFromFile(profile, cmdline); 87 if (cmdline.HasSwitch(switches::kImport)) { 89 return_code = ImportFromBrowser(profile, cmdline); 433 int FirstRun::ImportFromFile(Profile* profile, const CommandLine& cmdline) { 434 FilePath file_path = cmdline.GetSwitchValuePath(switches::kImportFromFile);
|
/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/ ) {
|
/external/qemu/hw/ |
goldfish_trace.c | 54 static unsigned cmdlen; // cmdline length 144 case TRACE_DEV_REG_CMDLINE_LEN: // execve, process cmdline length 147 case TRACE_DEV_REG_CMDLINE: // execve, process cmdline
|
/external/grub/stage2/ |
Makefile.in | 93 libgrub_a-cmdline.$(OBJEXT) libgrub_a-common.$(OBJEXT) \ 110 diskless_exec-cmdline.$(OBJEXT) diskless_exec-common.$(OBJEXT) \ 200 pre_stage2_exec-cmdline.$(OBJEXT) \ 447 libgrub_a_SOURCES = boot.c builtins.c char_io.c cmdline.c common.c \ 490 cmdline.c common.c console.c disk_io.c fsys_ext2fs.c \ 755 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/diskless_exec-cmdline.Po@am__quote@ [all...] |
/development/tools/emulator/opengl/tests/gles_android_wrapper/ |
egl.cpp | 113 FILE *fp = fopen("/proc/self/cmdline", "rt"); 115 LOGE("couldn't open /proc/self/cmdline\n"); 121 LOGE("couldn't read the self cmdline from \n"); 128 LOGE("cmdline is empty\n");
|
/development/tools/yuv420sp2rgb/ |
cmdline.c | 2 #include <cmdline.h>
|
/external/chromium/chrome/browser/diagnostics/ |
diagnostics_model.h | 75 DiagnosticsModel* MakeDiagnosticsModel(const CommandLine& cmdline);
|
/external/grub/docs/ |
multiboot.h.texi | 86 unsigned long cmdline;
|
kernel.c | 84 printf ("cmdline = %s\n", (char *) mbi->cmdline);
|
kernel.c.texi | 84 printf ("cmdline = %s\n", (char *) mbi->cmdline);
|
/system/core/init/ |
ueventd.c | 69 * for androidboot.hardware param in kernel cmdline, and save its value in
|
/system/core/mkbootimg/ |
bootimg.h | 47 unsigned char cmdline[BOOT_ARGS_SIZE]; member in struct:boot_img_hdr
|
/system/core/sh/ |
options.c | 152 options(int cmdline) 159 if (cmdline) 166 if (!cmdline) { 183 if (c == 'c' && cmdline) {
|
/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,
|
/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);
|