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

1 2 3 4 5

  /external/chromium_org/components/breakpad/app/
breakpad_linux.h 17 extern void InitCrashReporter(const std::string& process_type);
22 const std::string& process_type);
breakpad_mac.h 15 void InitCrashReporter(const std::string& process_type);
  /external/chromium_org/content/public/browser/
child_process_data.h 17 int process_type; member in struct:content::ChildProcessData
31 explicit ChildProcessData(int process_type)
32 : process_type(process_type), id(0), handle(base::kNullProcessHandle) {
profiler_subscriber.h 30 int process_type) = 0;
browser_child_process_host_iterator.h 53 explicit BrowserChildProcessHostTypeIterator(int process_type)
54 : BrowserChildProcessHostIterator(process_type) {}
  /external/chromium_org/tools/perf/metrics/
cpu.py 32 for process_type in self._results:
33 trace_name = '%s_%s' % (trace_name, process_type.lower())
34 cpu_percent = 100 * self._results[process_type]
56 for process_type in cpu_stats:
57 assert process_type in start_cpu_stats, 'Mismatching process types'
59 if (not cpu_stats[process_type]) or (not start_cpu_stats[process_type]):
61 cpu_process_time = (cpu_stats[process_type]['CpuProcessTime'] -
62 start_cpu_stats[process_type]['CpuProcessTime'])
63 total_time = (cpu_stats[process_type]['TotalTime']
    [all...]
  /external/chromium_org/content/public/app/
content_main_delegate.h 39 virtual void SandboxInitialized(const std::string& process_type) {}
43 const std::string& process_type,
47 virtual void ProcessExiting(const std::string& process_type) {}
54 const std::string& process_type);
59 virtual bool ShouldSendMachPort(const std::string& process_type);
64 virtual bool DelaySandboxInitialization(const std::string& process_type);
content_main_delegate.cc 22 const std::string& process_type,
30 const std::string& process_type) {
34 bool ContentMainDelegate::ShouldSendMachPort(const std::string& process_type) {
39 const std::string& process_type) {
  /external/chromium_org/content/common/
sandbox_init_mac.cc 38 std::string process_type =
40 if (process_type.empty()) {
43 } else if (process_type == switches::kRendererProcess) {
45 } else if (process_type == switches::kUtilityProcess) {
50 } else if (process_type == switches::kWorkerProcess) {
53 } else if (process_type == switches::kGpuProcess) {
57 } else if ((process_type == switches::kPluginProcess) ||
58 (process_type == switches::kPpapiBrokerProcess)) {
60 } else if (process_type == switches::kPpapiPluginProcess) {
  /external/chromium_org/content/common/sandbox_linux/
sandbox_seccomp_bpf_linux.h 30 // Should the sandbox be enabled for process_type ?
31 static bool ShouldEnableSeccompBPF(const std::string& process_type);
35 // Start the sandbox and apply the policy for process_type, depending on
37 static bool StartSandbox(const std::string& process_type);
sandbox_linux.cc 49 const std::string process_type = local
53 process_type + ".";
226 bool LinuxSandbox::StartSeccompBPF(const std::string& process_type) {
230 seccomp_bpf_started_ = SandboxSeccompBPF::StartSandbox(process_type);
239 const std::string process_type = local
253 process_type));
259 "threads in process " + process_type;
266 if (process_type != switches::kGpuProcess)
281 LimitAddressSpace(process_type);
284 bool seccomp_bpf_started = StartSeccompBPF(process_type);
    [all...]
sandbox_linux.h 79 bool StartSeccompBPF(const std::string& process_type);
83 bool LimitAddressSpace(const std::string& process_type);
103 void CheckForBrokenPromises(const std::string& process_type);
sandbox_seccomp_bpf_linux.cc 116 // If a BPF policy is engaged for |process_type|, run a few sanity checks.
117 void RunSandboxSanityChecks(const std::string& process_type) {
118 if (process_type == switches::kRendererProcess ||
119 process_type == switches::kWorkerProcess ||
120 process_type == switches::kGpuProcess ||
121 process_type == switches::kPpapiPluginProcess) {
180 const std::string& process_type) {
183 if (process_type == switches::kGpuProcess) {
185 } else if (process_type == switches::kRendererProcess ||
186 process_type == switches::kWorkerProcess)
    [all...]
  /external/chromium_org/chrome/app/android/
chrome_main_delegate_android.cc 25 const std::string& process_type) {
26 ChromeMainDelegate::SandboxInitialized(process_type);
30 const std::string& process_type,
33 if (process_type.empty()) {
51 return ChromeMainDelegate::RunProcess(process_type, main_function_params);
chrome_main_delegate_android.h 26 virtual void SandboxInitialized(const std::string& process_type) OVERRIDE;
29 const std::string& process_type,
  /external/chromium_org/chrome/app/
chrome_main_delegate.cc 164 static void AdjustLinuxOOMScore(const std::string& process_type) {
184 if (process_type == switches::kPluginProcess ||
185 process_type == switches::kPpapiPluginProcess) {
187 } else if (process_type == switches::kPpapiBrokerProcess) {
190 } else if (process_type == switches::kUtilityProcess ||
191 process_type == switches::kWorkerProcess ||
192 process_type == switches::kGpuProcess ||
193 process_type == switches::kServiceProcess) {
196 } else if (process_type == switches::kNaClLoaderProcess) {
199 } else if (process_type == switches::kZygoteProcess |
538 << switches::kUtilityProcess << ", saw " << process_type; local
542 << switches::kNaClLoaderProcess << ", saw " << process_type; local
548 << switches::kNaClLoaderProcess << ", saw " << process_type; local
564 std::string process_type = local
822 std::string process_type = local
    [all...]
chrome_main_delegate.h 23 virtual void SandboxInitialized(const std::string& process_type) OVERRIDE;
25 const std::string& process_type,
27 virtual void ProcessExiting(const std::string& process_type) OVERRIDE;
30 const std::string& process_type) OVERRIDE;
31 virtual bool ShouldSendMachPort(const std::string& process_type) OVERRIDE;
33 const std::string& process_type) OVERRIDE;
46 const std::string& process_type);
  /external/chromium_org/chrome/browser/metrics/
tracking_synchronizer_observer.h 17 // Received |profiler_data| from a single process of |process_type|.
22 int process_type) = 0;
tracking_synchronizer.h 78 int process_type) OVERRIDE;
97 int process_type);
  /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/shell/app/
shell_breakpad_client.cc 64 const std::string& process_type) {
65 return process_type == switches::kRendererProcess ||
66 process_type == switches::kPluginProcess ||
67 process_type == switches::kPpapiPluginProcess ||
68 process_type == switches::kZygoteProcess ||
69 process_type == switches::kGpuProcess;
  /external/chromium_org/remoting/host/
host_main.cc 134 MainRoutineFn SelectMainRoutine(const std::string& process_type) {
137 if (process_type == kProcessTypeHost) {
140 } else if (process_type == kProcessTypeDaemon) {
142 } else if (process_type == kProcessTypeDesktop) {
144 } else if (process_type == kProcessTypeController) {
146 } else if (process_type == kProcessTypeRdpDesktopSession) {
148 } else if (process_type == kProcessTypeNativeMessagingHost) {
210 std::string process_type = kProcessTypeHost; local
212 process_type = command_line->GetSwitchValueASCII(kProcessTypeSwitchName);
225 process_type = kProcessTypeNativeMessagingHost
    [all...]
  /external/chromium_org/chrome/browser/task_profiler/
task_profiler_data_serializer.h 27 // Writes the contents of |process_data| and |process_type| into |dictionary|.
29 int process_type,
  /external/chromium_org/chrome/browser/ui/webui/
profiler_ui.h 26 int process_type) OVERRIDE;
  /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)

Completed in 907 milliseconds

1 2 3 4 5