Searched refs:process (Results 26 - 50 of 1129) sorted by relevance

1234567891011>>

/external/chromium_org/tools/android/memdump/
H A Dmemreport.py85 for process in processes_stats:
90 if not v in process:
95 total_map[v]['resident'] += (process[v]['private'] +
96 process[v]['shared_app'])
97 total_map[v]['unevictable'] += process[v]['private_unevictable']
100 _ConvertMemoryField(process[v]['private']) + ',' +
101 _ConvertMemoryField(process[v]['private_unevictable']) + ',' +
102 _ConvertMemoryField(process[v]['shared_app']) + ',' +
103 _ConvertMemoryField(process[v]['shared_other']) + ',' +
104 _ConvertMemoryField(process[
[all...]
/external/chromium_org/components/visitedlink/browser/
H A Dvisitedlink_event_listener.cc48 content::RenderProcessHost* process = local
50 if (!process)
53 table_memory->ShareToProcess(process->GetHandle(), &handle_for_process);
55 process->Send(new ChromeViewMsg_VisitedLink_NewTable(
84 content::RenderProcessHost* process = local
86 if (!process)
89 if (!process->VisibleWidgetCount())
93 process->Send(new ChromeViewMsg_VisitedLink_Reset());
101 process->Send(new ChromeViewMsg_VisitedLink_Add(pending_));
137 content::RenderProcessHost* process local
182 content::RenderProcessHost* process = local
198 content::RenderProcessHost* process = local
[all...]
/external/chromium/chrome/browser/service/
H A Dservice_process_control_browsertest.cc30 // ForceServiceProcessShutdown removes the process from launchd on Mac.
37 ServiceProcessControl* process = local
40 process_ = process;
42 // Launch the process asynchronously.
43 process->Launch(
57 process()->GetCloudPrintProxyStatus(NewCallback(
100 ServiceProcessControl* process() { return process_; } function in class:ServiceProcessControlBrowserTest
114 // Make sure we are connected to the service process.
115 EXPECT_TRUE(process()->is_connected());
118 // And then shutdown the service process
163 ServiceProcessControl* process = local
188 ServiceProcessControl* process = local
[all...]
H A Dservice_process_control_manager.cc24 // TODO(hclam): We will have different service process for different types of
25 // service, but now we only create a new process for a different profile.
33 ServiceProcessControl* process = new ServiceProcessControl(profile); local
34 process_control_list_.push_back(process);
35 return process;
40 // shutdown the service process.
/external/chromium_org/base/process/
H A Dkill_win.cc5 #include "base/process/kill.h"
14 #include "base/process/process_iterator.h"
28 // process. It's value is obviously not that unique, and it's
32 // process goes away.
35 // Maximum amount of time (in milliseconds) to wait for the process to exit.
40 explicit TimerExpiredTask(ProcessHandle process);
51 // The process that we are watching.
59 TimerExpiredTask::TimerExpiredTask(ProcessHandle process) : process_(process) { argument
79 // Stop watching the process handl
94 KillProcess(ProcessHandle process, int exit_code, bool wait) argument
110 HANDLE process = OpenProcess(PROCESS_TERMINATE | SYNCHRONIZE, local
211 HANDLE process = OpenProcess(SYNCHRONIZE, local
239 EnsureProcessTerminated(ProcessHandle process) argument
[all...]
H A Dprocess_handle_posix.cc5 #include "base/process/process_handle.h"
20 // On Posix platforms, process handles are the same as PIDs, so we
27 // On POSIX permissions are checked for each operation on process,
35 // On POSIX permissions are checked for each operation on process,
40 void CloseProcessHandle(ProcessHandle process) { argument
45 ProcessId GetProcId(ProcessHandle process) { argument
46 return process;
H A Dprocess_handle_freebsd.cc5 #include "base/process/process_handle.h"
13 ProcessId GetParentProcessId(ProcessHandle process) { argument
16 int mib[] = { CTL_KERN, KERN_PROC, KERN_PROC_PID, process };
24 FilePath GetProcessExecutablePath(ProcessHandle process) { argument
27 int mib[] = { CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, process };
/external/icu4c/layout/
H A DGlyphPosnLookupProc.cpp82 delta = subtable->process(glyphIterator, fontInstance);
90 delta = subtable->process(glyphIterator, fontInstance);
98 delta = subtable->process(glyphIterator, fontInstance);
106 delta = subtable->process(glyphIterator, fontInstance);
114 delta = subtable->process(glyphIterator, fontInstance);
122 delta = subtable->process(glyphIterator, fontInstance);
130 delta = subtable->process(this, glyphIterator, fontInstance, success);
138 delta = subtable->process(this, glyphIterator, fontInstance, success);
146 delta = subtable->process(this, lookupType, glyphIterator, fontInstance, success);
H A DGlyphSubstLookupProc.cpp69 delta = subtable->process(glyphIterator, fFilter);
77 delta = subtable->process(glyphIterator, success, fFilter);
85 delta = subtable->process(glyphIterator, fFilter);
93 delta = subtable->process(glyphIterator, fFilter);
101 delta = subtable->process(this, glyphIterator, fontInstance, success);
109 delta = subtable->process(this, glyphIterator, fontInstance, success);
117 delta = subtable->process(this, lookupType, glyphIterator, fontInstance, success);
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Daddr2line-pdb.c53 HANDLE process; local
85 process = GetCurrentProcess();
87 if (!SymInitialize(process, NULL, FALSE)) {
94 if (SymGetSearchPath(process, search, SEARCH_CAP)) {
97 SymCleanup(process);
107 if (!SymSetSearchPath(process, search)) {
114 module_base = SymLoadModuleEx(process, NULL, filename, NULL, 0, 0, NULL, 0);
120 SymCleanup(process);
140 if (SymFromAddr(process, (DWORD64)addr, NULL, pSymbol)) {
147 if (SymGetLineFromAddr64(process, (DWORD6
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Daddr2line-pdb.c59 HANDLE process; local
92 process = GetCurrentProcess();
94 if (!SymInitialize(process, NULL, FALSE)) {
101 if (SymGetSearchPath(process, search, SEARCH_CAP)) {
104 SymCleanup(process);
114 if (!SymSetSearchPath(process, search)) {
121 module_base = SymLoadModuleEx(process, NULL, filename, NULL, 0, 0, NULL, 0);
127 SymCleanup(process);
147 if (SymFromAddr(process, (DWORD64)addr, NULL, pSymbol)) {
154 if (SymGetLineFromAddr64(process, (DWORD6
[all...]
/external/apache-http/src/org/apache/http/
H A DHttpRequestInterceptor.java41 * Provides the ability to process a request before it is sent
66 void process(HttpRequest request, HttpContext context) method in interface:HttpRequestInterceptor
H A DHttpResponseInterceptor.java40 * Provides the ability to process a response before it is sent
65 void process(HttpResponse response, HttpContext context) method in interface:HttpResponseInterceptor
/external/bison/lib/
H A Dwaitpid.c1 /* Wait for process state change.
24 #include <process.h> /* for _cwait, WAIT_CHILD */
/external/chromium/chrome/browser/extensions/
H A Dapp_process_apitest.cc41 EXPECT_EQ(opener_host->process(), newtab->render_view_host()->process());
43 EXPECT_NE(opener_host->process(), newtab->render_view_host()->process());
93 // grouped in the same process.
97 EXPECT_EQ(host->process(),
98 browser()->GetTabContentsAt(2)->render_view_host()->process());
99 EXPECT_NE(host->process(),
100 browser()->GetTabContentsAt(3)->render_view_host()->process());
108 // TODO(creis): This should open in a new process (
[all...]
/external/chromium_org/chrome/browser/task_manager/
H A Dos_resource_win.cc9 void GetWinGDIHandles(base::ProcessHandle process, argument
14 // Get a handle to |process| that has PROCESS_QUERY_INFORMATION rights.
17 if (DuplicateHandle(current_process, process, current_process,
26 void GetWinUSERHandles(base::ProcessHandle process, argument
31 // Get a handle to |process| that has PROCESS_QUERY_INFORMATION rights.
34 if (DuplicateHandle(current_process, process, current_process,
/external/chromium_org/sandbox/linux/suid/
H A Dprocess_util.h16 // This adjusts /proc/process/oom_score_adj so the Linux OOM killer
17 // will prefer certain process types over others. The range for the
24 BASE_EXPORT bool AdjustOOMScore(pid_t process, int score);
/external/valgrind/main/gdbserver_tests/
H A Dnlsigvgdb.stderrB.exp1 relaying data between gdb and process ....
5 monitor command request to kill this process
/external/chromium_org/chrome/browser/resources/memory_internals/
H A Dmemory_internals.js41 * Update process information table.
46 var size = $('snapshot-view').getElementsByClassName('process').length;
51 var template = $('process-template').childNodes;
54 var process = processes[p];
61 case 'process-id':
62 value = process['pid'];
64 case 'process-info':
65 value = process['type'];
66 if (process['type'].match(/^Tab/)) {
68 for (var j = 0; j < process['histor
[all...]
/external/chromium_org/sandbox/win/src/
H A Dtarget_interceptions.h15 // Interception of NtMapViewOfSection on the child process.
20 HANDLE process, PVOID *base, ULONG_PTR zero_bits, SIZE_T commit_size,
24 // Interception of NtUnmapViewOfSection on the child process.
28 NtUnmapViewOfSectionFunction orig_UnmapViewOfSection, HANDLE process,
H A Dtarget_interceptions.cc20 HANDLE process, PVOID *base, ULONG_PTR zero_bits, SIZE_T commit_size,
23 NTSTATUS ret = orig_MapViewOfSection(section, process, base, zero_bits,
40 if (!IsSameProcess(process))
62 g_nt.UnmapViewOfSection(process, *base);
82 NtUnmapViewOfSectionFunction orig_UnmapViewOfSection, HANDLE process,
84 NTSTATUS ret = orig_UnmapViewOfSection(process, base);
89 if (!IsSameProcess(process))
18 TargetNtMapViewOfSection( NtMapViewOfSectionFunction orig_MapViewOfSection, HANDLE section, HANDLE process, PVOID *base, ULONG_PTR zero_bits, SIZE_T commit_size, PLARGE_INTEGER offset, PSIZE_T view_size, SECTION_INHERIT inherit, ULONG allocation_type, ULONG protect) argument
81 TargetNtUnmapViewOfSection( NtUnmapViewOfSectionFunction orig_UnmapViewOfSection, HANDLE process, PVOID base) argument
/external/chromium_org/third_party/WebKit/Source/core/platform/audio/
H A DSincResampler.h47 void process(const float* source, float* destination, unsigned numberOfSourceFrames);
50 void process(AudioSourceProvider*, float* destination, size_t framesToProcess);
/external/chromium-trace/trace-viewer/src/tracing/importer/linux_perf/
H A Dkfunc_parser_test.js28 var process = m.processes[127];
29 assertNotNull(process);
31 var thread = process.threads[127];
/external/chromium-trace/trace-viewer/src/tracing/trace_model/
H A Dprocess_test.js9 base.require('tracing.trace_model.process');
11 base.unittest.testSuite('tracing.trace_model.process', function() {
14 var process = new tracing.trace_model.Process(model, 7);
15 var ctrBar = process.getOrCreateCounter('foo', 'bar');
16 var ctrBar2 = process.getOrCreateCounter('foo', 'bar');
22 var process = new tracing.trace_model.Process(model, 7);
23 var ctr = process.getOrCreateCounter('foo', 'bar');
24 var thread = process.getOrCreateThread(1);
35 process.shiftTimestampsForward(0.32);
/external/chromium_org/build/android/
H A Dadb_logcat_monitor.py28 # Map from device_id -> (process, logcat_num)
43 """Spawns a adb logcat process if one is not currently running."""
44 process, logcat_num = devices[device_id]
45 if process:
46 if process.poll() is None:
47 # Logcat process is still happily running
52 for line in process.stderr:
60 process = subprocess.Popen([adb_cmd, '-s', device_id,
64 devices[device_id] = (process, logcat_num + 1)
110 # our script doesn't get stuck waiting for a process respons
[all...]

Completed in 471 milliseconds

1234567891011>>