HomeSort by relevance Sort by last modified time
    Searched defs:process_type (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/chrome/nacl/
nacl_exe_win_64.cc 24 std::string process_type = local
28 breakpad::InitCrashReporter(process_type);
  /external/chromium_org/content/public/browser/
child_process_data.h 17 int process_type; member in struct:content::ChildProcessData
33 explicit ChildProcessData(int process_type)
34 : process_type(process_type), id(0), handle(base::kNullProcessHandle) {
  /external/chromium_org/chrome/browser/task_profiler/
task_profiler_data_serializer_unittest.cc 14 #include "content/public/common/process_type.h"
25 int process_type,
29 process_data, process_type, &serialized_value);
44 int process_type = content::PROCESS_TYPE_BROWSER; local
45 ExpectSerialization(process_data, process_type,
52 "\"process_type\":\"Browser\""
103 int process_type = content::PROCESS_TYPE_RENDERER; local
104 ExpectSerialization(process_data, process_type,
158 "\"process_type\":\"Tab\""
  /external/chromium_org/components/nacl/loader/
nacl_helper_win_64.cc 53 std::string process_type = local
69 << process_type;
73 if (process_type == switches::kNaClLoaderProcess)
76 if (process_type == switches::kNaClBrokerProcess)
  /external/chromium_org/ash/shell/content_client/
shell_main_delegate.cc 23 std::string process_type = local
  /external/chromium_org/content/common/
handle_enumerator_win.cc 54 std::string process_type = local
57 base::string16 output = ASCIIToUTF16(process_type);
  /external/chromium_org/content/renderer/
memory_benchmarking_extension.cc 72 std::string process_type; local
76 args->GetNext(&process_type);
82 if (process_type == "browser") {
  /external/chromium_org/ui/views_content_client/
views_content_main_delegate.cc 44 std::string process_type = local
  /external/chromium_org/apps/shell/app/
shell_main_delegate.cc 62 std::string process_type = local
65 if (ProcessNeedsResourceBundle(process_type))
93 const std::string& process_type) {
96 return process_type.empty() ||
97 process_type == switches::kZygoteProcess ||
98 process_type == switches::kRendererProcess ||
99 process_type == switches::kUtilityProcess;
  /external/chromium_org/apps/shell/browser/
shell_content_browser_client.cc 165 std::string process_type = local
167 if (process_type == switches::kRendererProcess) {
  /external/chromium_org/chrome/common/
profiling.cc 54 std::string process_type = local
56 std::string type = process_type.empty() ?
57 std::string("browser") : std::string(process_type);
128 std::string process_type = local
163 if (process_type == process_type_to_start)
  /external/chromium_org/components/breakpad/app/
breakpad_linux_impl.h 50 const char* process_type; // Process type, e.g. "renderer". member in struct:breakpad::BreakpadInfo
51 unsigned process_type_length; // Length of |process_type|.
breakpad_win.cc 491 std::wstring process_type = base::ASCIIToWide(process_type_switch); local
492 if (process_type.empty())
493 process_type = L"browser";
506 keeper->GetCustomInfo(exe_path, process_type,
514 if (process_type == L"browser") {
517 } else if (process_type == L"service") {
522 if (process_type == L"browser") {
589 if (process_type != L"browser" &&
  /external/chromium_org/content/browser/loader/
resource_message_filter.h 47 int process_type,
83 int process_type() const { return process_type_; } function in class:content::ResourceMessageFilter
resource_request_info_impl.h 43 int process_type,
134 int process_type() const { return process_type_; } function in class:content::ResourceRequestInfoImpl
  /external/chromium_org/remoting/host/
host_main.cc 135 MainRoutineFn SelectMainRoutine(const std::string& process_type) {
138 if (process_type == kProcessTypeHost) {
141 } else if (process_type == kProcessTypeDaemon) {
143 } else if (process_type == kProcessTypeDesktop) {
145 } else if (process_type == kProcessTypeController) {
147 } else if (process_type == kProcessTypeRdpDesktopSession) {
210 std::string process_type = kProcessTypeHost; local
212 process_type = command_line->GetSwitchValueASCII(kProcessTypeSwitchName);
215 MainRoutineFn main_routine = SelectMainRoutine(process_type);
218 process_type.c_str())
    [all...]
  /external/chromium_org/chrome/browser/
memory_details.h 14 #include "content/public/common/process_type.h"
34 int process_type,
60 int process_type; member in struct:ProcessMemoryInformation
chrome_content_browser_client.cc 514 const std::string& process_type) {
521 new breakpad::CrashHandlerHostLinux(process_type, dumps_path, upload);
536 std::string process_type = local
539 if (process_type == switches::kRendererProcess) {
542 crash_handler = CreateCrashHandlerHost(process_type);
546 if (process_type == switches::kPluginProcess) {
549 crash_handler = CreateCrashHandlerHost(process_type);
553 if (process_type == switches::kPpapiPluginProcess) {
556 crash_handler = CreateCrashHandlerHost(process_type);
560 if (process_type == switches::kGpuProcess)
1548 std::string process_type = local
    [all...]
  /external/chromium_org/chrome/browser/metrics/
plugin_metrics_provider.cc 21 #include "content/public/common/process_type.h"
64 explicit ChildProcessStats(int process_type)
69 process_type(process_type) {}
78 process_type(content::PROCESS_TYPE_UNKNOWN) {}
95 int process_type; member in struct:PluginMetricsProvider::ChildProcessStats
263 if (!IsPluginProcess(stats.process_type))
294 if (stats.process_type == content::PROCESS_TYPE_UNKNOWN) {
297 stats.process_type = content::PROCESS_TYPE_PLUGIN;
299 DCHECK(IsPluginProcess(stats.process_type));
    [all...]
  /external/chromium_org/content/shell/app/
shell_main_delegate.cc 199 std::string process_type = local
205 breakpad::InitCrashReporter(process_type);
206 breakpad::InitCrashProcessInfo(process_type);
208 if (process_type != switches::kZygoteProcess) {
210 if (process_type.empty())
211 breakpad::InitCrashReporter(process_type);
213 breakpad::InitNonBrowserCrashReporterForAndroid(process_type);
215 breakpad::InitCrashReporter(process_type);
223 breakpad::InitCrashReporter(process_type);
231 const std::string& process_type,
250 std::string process_type = local
    [all...]
  /external/chromium_org/content/app/
content_main_runner.cc 170 void CommonSubprocessInit(const std::string& process_type) {
243 static void Set(const std::string& process_type,
246 if (process_type.empty()) {
254 if (process_type == switches::kPluginProcess ||
255 process_type == switches::kPpapiPluginProcess) {
261 } else if (process_type == switches::kRendererProcess ||
270 if (process_type == switches::kUtilityProcess ||
326 std::string process_type = local
328 ContentClientInitializer::Set(process_type, delegate);
338 if (process_type == kMainFunctions[i].name
611 std::string process_type = variable
724 CommonSubprocessInit(process_type); variable
750 std::string process_type = variable
774 std::string process_type = variable
    [all...]
  /external/chromium_org/content/browser/
child_process_launcher.cc 202 std::string process_type = local
244 process_type);
259 if (process_type == switches::kRendererProcess) {
  /external/chromium_org/content/common/sandbox_linux/
sandbox_linux.cc 56 const std::string process_type = local
60 process_type + ".";
254 bool LinuxSandbox::StartSeccompBPF(const std::string& process_type) {
258 seccomp_bpf_started_ = SandboxSeccompBPF::StartSandbox(process_type);
268 const std::string process_type = local
281 process_type));
287 "threads in process " + process_type;
294 bool sandbox_failure_fatal = process_type != switches::kGpuProcess;
298 if (process_type == switches::kGpuProcess &&
321 LimitAddressSpace(process_type);
    [all...]
  /external/chromium_org/content/zygote/
zygote_linux.cc 342 int Zygote::ForkWithRealPid(const std::string& process_type,
353 if ((*i)->CanHelp(process_type, uma_name, uma_sample, uma_boundary_value)) {
370 pid = helper->Fork(process_type, fds, channel_id);
475 std::string process_type; local
480 if (!pickle.ReadString(&iter, &process_type))
516 base::ProcessId child_pid = ForkWithRealPid(process_type,
545 LOG(ERROR) << "Zygote could not fork: process_type " << process_type
  /external/chromium_org/chrome/app/
chrome_main_delegate.cc 162 static void AdjustLinuxOOMScore(const std::string& process_type) {
182 if (process_type == switches::kPluginProcess ||
183 process_type == switches::kPpapiPluginProcess) {
185 } else if (process_type == switches::kPpapiBrokerProcess) {
188 } else if (process_type == switches::kUtilityProcess ||
189 process_type == switches::kWorkerProcess ||
190 process_type == switches::kGpuProcess ||
191 process_type == switches::kServiceProcess) {
194 } else if (process_type == switches::kNaClLoaderProcess ||
195 process_type == switches::kNaClLoaderNonSfiProcess)
312 std::string process_type = local
595 << switches::kUtilityProcess << ", saw " << process_type; local
599 << switches::kNaClLoaderProcess << ", saw " << process_type; local
605 << switches::kNaClLoaderProcess << ", saw " << process_type; local
621 std::string process_type = local
863 std::string process_type = local
    [all...]

Completed in 1129 milliseconds

1 2