HomeSort by relevance Sort by last modified time
    Searched refs:comspec (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/chrome/browser/extensions/api/messaging/
native_process_launcher_win.cc 121 DWORD comspec_length = ::GetEnvironmentVariable(L"COMSPEC", NULL, 0);
123 LOG(ERROR) << "COMSPEC is not set";
126 scoped_ptr<wchar_t[]> comspec(new wchar_t[comspec_length]);
127 ::GetEnvironmentVariable(L"COMSPEC", comspec.get(), comspec_length);
137 comspec.get(), command_line_string.c_str(),
  /external/qemu/android/
qemu-setup.c 519 char* comspec = getenv("COMSPEC"); local
520 if (!comspec) comspec = "cmd.exe";
533 comspec, /* program path */
544 D( "ping command: %s %s", comspec, args );
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
subprocess.py 921 comspec = os.environ.get("COMSPEC", "cmd.exe")
922 args = '{} /c "{}"'.format (comspec, args)
924 os.path.basename(comspec).lower() == "command.com"):
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
subprocess.py 921 comspec = os.environ.get("COMSPEC", "cmd.exe")
922 args = '{} /c "{}"'.format (comspec, args)
924 os.path.basename(comspec).lower() == "command.com"):
    [all...]

Completed in 509 milliseconds