HomeSort by relevance Sort by last modified time
    Searched refs:cmdline (Results 76 - 100 of 189) sorted by null

1 2 34 5 6 7 8

  /external/grub/stage2/
stage2.c 765 get_line_from_config (char *cmdline, int maxlen, int read_from_file)
821 cmdline[pos++] = c;
829 cmdline[pos++] = c;
833 cmdline[pos] = 0;
916 char *cmdline; local
933 cmdline = (char *) CMDLINE_BUF;
934 while (get_line_from_config (cmdline, NEW_HEAPSIZE,
940 builtin = find_command (cmdline);
970 ptr = skip_to (1, cmdline);
979 char *arg = skip_to (1, cmdline);
    [all...]
  /frameworks/native/cmds/dumpstate/
utils.c 68 char cmdline[255]; local
74 sprintf(cmdpath,"/proc/%d/cmdline", pid);
75 memset(cmdline, 0, sizeof(cmdline));
77 strcpy(cmdline, "N/A");
79 read(fd, cmdline, sizeof(cmdline) - 1);
82 helper(pid, cmdline, arg);
88 static void for_each_pid_helper(int pid, const char *cmdline, void *arg) {
90 func(pid, cmdline);
    [all...]
  /external/chromium/googleurl/base/
logging.cc 207 scoped_array<wchar_t> cmdline(new wchar_t[charcount]);
208 if (!MultiByteToWideChar(CP_UTF8, 0, str.c_str(), -1, cmdline.get(), charcount))
216 if (CreateProcessW(prog_name, cmdline.get(), NULL, NULL, false, 0, NULL,
223 MessageBoxW(NULL, cmdline.get(), L"Fatal error", MB_OK | MB_ICONHAND);
  /external/linux-tools-perf/util/
cache.h 49 int split_cmdline(char *cmdline, const char ***argv);
  /frameworks/native/opengl/libs/EGL/
Loader.cpp 104 snprintf(procPath, 128, "/proc/%ld/cmdline", pid);
107 static char cmdline[256]; local
108 char *str = fgets(cmdline, sizeof(cmdline) - 1, file);
111 return cmdline;
egl.cpp 140 FILE * file = fopen("/proc/self/cmdline", "r");
142 char cmdline[256]; local
143 if (fgets(cmdline, sizeof(cmdline), file)) {
144 if (!strncmp(value, cmdline, strlen(value))) {
  /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);
first_run_win.cc 314 const CommandLine& cmdline = *CommandLine::ForCurrentProcess(); local
315 CommandLine import_cmd(cmdline.GetProgram());
322 import_cmd.CopySwitchesFrom(cmdline, kSwitchNames, arraysize(kSwitchNames));
374 const CommandLine& cmdline) {
375 std::string import_info = cmdline.GetSwitchValueASCII(switches::kImport);
  /external/chromium/base/
process_util_win.cc 220 bool LaunchAppImpl(const std::wstring& cmdline,
229 const_cast<wchar_t*>(cmdline.c_str()), NULL, NULL,
249 bool LaunchApp(const std::wstring& cmdline,
251 return LaunchAppImpl(cmdline, wait, start_hidden, false, process_handle);
255 const std::wstring& cmdline, bool wait, bool start_hidden,
257 return LaunchAppImpl(cmdline, wait, start_hidden, true, process_handle);
260 bool LaunchAppAsUser(UserTokenHandle token, const std::wstring& cmdline,
262 return LaunchAppAsUser(token, cmdline, start_hidden, process_handle,
266 bool LaunchAppAsUser(UserTokenHandle token, const std::wstring& cmdline,
285 CreateProcessAsUser(token, NULL, const_cast<wchar_t*>(cmdline.c_str())
    [all...]
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/chromium_org/chrome/browser/safe_browsing/
safe_browsing_service.cc 356 CommandLine* cmdline = CommandLine::ForCurrentProcess(); local
358 cmdline->HasSwitch(switches::kSbDisableAutoUpdate) ||
359 cmdline->HasSwitch(switches::kDisableBackgroundNetworking);
360 if (cmdline->HasSwitch(switches::kSbURLPrefix)) {
361 config.url_prefix = cmdline->GetSwitchValueASCII(switches::kSbURLPrefix);
  /external/chromium_org/third_party/libxml/src/
xmlcatalog.c 96 char *cmdline = NULL, *cur; local
105 cmdline = xmlShellReadline("> ");
106 if (cmdline == NULL)
112 cur = cmdline;
124 free(cmdline);
300 free(cmdline); /* not xmlFree here ! */
  /external/libxml2/
xmlcatalog.c 96 char *cmdline = NULL, *cur; local
105 cmdline = xmlShellReadline("> ");
106 if (cmdline == NULL)
112 cur = cmdline;
124 free(cmdline);
300 free(cmdline); /* not xmlFree here ! */
  /system/core/init/
util.c 446 char cmdline[1024]; local
450 fd = open("/proc/cmdline", O_RDONLY);
452 int n = read(fd, cmdline, 1023);
456 if (n > 0 && cmdline[n-1] == '\n') n--;
458 cmdline[n] = 0;
461 cmdline[0] = 0;
464 ptr = cmdline;
  /external/chromium/chrome/browser/diagnostics/
diagnostics_model.cc 167 DiagnosticsModel* MakeDiagnosticsModel(const CommandLine& cmdline) {
168 FilePath user_data_dir = cmdline.GetSwitchValuePath(switches::kUserDataDir);
  /external/chromium/net/test/
test_server_win.cc 26 bool LaunchTestServerAsJob(const CommandLine& cmdline,
41 NULL, const_cast<wchar_t*>(cmdline.command_line_string().c_str()),
  /external/chromium/testing/gtest/test/
gtest_output_test.py 232 environ, cmdline = env_cmd
235 return NormalizeOutput(GetShellCommandOutput((environ, cmdline)))
  /external/chromium_org/testing/gtest/test/
gtest_output_test.py 232 environ, cmdline = env_cmd
235 return NormalizeOutput(GetShellCommandOutput((environ, cmdline)))
  /external/chromium_org/tools/site_compare/commands/
compare2.py 24 def CreateCommand(cmdline):
26 cmd = cmdline.AddCommand(
  /external/chromium_org/v8/tools/
nacl-run.py 44 def Execute(cmdline):
48 args=cmdline,
  /external/grub/docs/
multiboot.h.texi 86 unsigned long cmdline;
  /external/gtest/test/
gtest_output_test.py 232 environ, cmdline = env_cmd
235 return NormalizeOutput(GetShellCommandOutput((environ, cmdline)))
  /ndk/sources/third_party/googletest/googletest/test/
gtest_output_test.py 232 environ, cmdline = env_cmd
235 return NormalizeOutput(GetShellCommandOutput((environ, cmdline)))
  /build/core/tasks/
factory_ramdisk.mk 83 RAMDISK_CMDLINE := --cmdline "$(BOARD_KERNEL_CMDLINE_FACTORY_BOOT)"
  /development/tools/yuv420sp2rgb/
cmdline.c 2 #include <cmdline.h>

Completed in 1517 milliseconds

1 2 34 5 6 7 8