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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
exit.c 41 # include <process.h>
mutex.c 38 # include <process.h>
  /external/stlport/test/unit/
cstdlib_header_test.cpp 12 # include <process.h>
  /ndk/tests/device/test-gnustl-full/unit/
cstdlib_header_test.cpp 12 # include <process.h>
  /ndk/tests/device/test-stlport/unit/
cstdlib_header_test.cpp 12 # include <process.h>
  /external/llvm/unittests/Support/
ProcessTest.cpp 10 #include "llvm/Support/Process.h"
23 EXPECT_TRUE(process::get_self());
24 EXPECT_EQ(process::get_self(), process::get_self());
27 EXPECT_EQ(getpid(), process::get_self()->get_id());
29 EXPECT_EQ(GetCurrentProcessId(), process::get_self()->get_id());
32 EXPECT_LT(1u, process::get_self()->page_size());
34 EXPECT_LT(TimeValue::MinTime, process::get_self()->get_user_time());
35 EXPECT_GT(TimeValue::MaxTime, process::get_self()->get_user_time());
36 EXPECT_LT(TimeValue::MinTime, process::get_self()->get_system_time())
    [all...]
  /external/chromium_org/base/process/
memory_stubs.cc 5 #include "base/process/memory.h"
15 bool AdjustOOMScore(ProcessId process, int score) {
process_handle_linux.cc 5 #include "base/process/process_handle.h"
8 #include "base/process/internal_linux.h"
12 ProcessId GetParentProcessId(ProcessHandle process) {
14 internal::ReadProcStatsAndGetFieldAsInt(process, internal::VM_PPID);
20 FilePath GetProcessExecutablePath(ProcessHandle process) {
21 FilePath stat_file = internal::GetProcPidDir(process).Append("exe");
24 // No such process. Happens frequently in e.g. TerminateAllChromeProcesses
process_handle_mac.cc 5 #include "base/process/process_handle.h"
14 ProcessId GetParentProcessId(ProcessHandle process) {
17 int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_PID, process };
  /external/chromium_org/chrome/browser/task_manager/
os_resource_win.h 8 #include "base/process/process_handle.h"
13 void GetWinGDIHandles(base::ProcessHandle process,
18 void GetWinUSERHandles(base::ProcessHandle process,
  /cts/tests/ProcessTest/NoShareUidApp/src/com/android/cts/process/activity/
NoSharePidActivity.java 16 package com.android.cts.process.activity;
  /cts/tests/ProcessTest/ShareUidApp/src/com/android/cts/process/activity/
SharePidActivity.java 16 package com.android.cts.process.activity;
SharePidSubActivity.java 16 package com.android.cts.process.activity;
  /external/chromium/chrome/browser/
desktop_notification_handler.cc 52 RenderProcessHost* process = render_view_host()->process(); local
54 DesktopNotificationServiceFactory::GetForProfile(process->profile());
58 process->id(),
64 RenderProcessHost* process = render_view_host()->process(); local
66 DesktopNotificationServiceFactory::GetForProfile(process->profile());
69 process->id(),
81 RenderProcessHost* process = render_view_host()->process(); local
    [all...]
  /external/chromium_org/chrome/service/
service_process_unittest.cc 19 ServiceProcess process; local
22 EXPECT_TRUE(process.Initialize(&main_message_loop, command_line, &state));
23 EXPECT_TRUE(process.Teardown());
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/process/
SystemProcessTest.java 18 package org.apache.harmony.luni.tests.internal.process;
29 Process process = null; local
35 process = (Process) execArgs[0];
36 OutputStream os = process.getOutputStream();
39 process.waitFor();
50 process.waitFor();
52 process.destroy();
  /external/chromium_org/sandbox/win/src/
service_resolver.h 17 // The service resolver needs a child process to write to.
18 ServiceResolverThunk(HANDLE process, bool relaxed)
19 : process_(process), ntdll_base_(NULL), win2k_(false),
53 // Handle of the child process.
90 // The service resolver needs a child process to write to.
91 Wow64ResolverThunk(HANDLE process, bool relaxed)
92 : ServiceResolverThunk(process, relaxed) {}
105 // The service resolver needs a child process to write to.
106 Wow64W8ResolverThunk(HANDLE process, bool relaxed)
107 : ServiceResolverThunk(process, relaxed) {
    [all...]
  /external/chromium_org/chrome/browser/resources/memory_internals/
snapshot_view.css 5 #snapshot-view .process-id {
10 #snapshot-view .process-info {
23 #snapshot-view .process-memory {
28 #snapshot-view .process-memory-private {
34 #snapshot-view .process-memory-v8 {
39 #process-template {
  /external/icu4c/layout/
SinglePositioningSubtables.h 26 le_uint32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const;
34 le_uint32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const;
43 le_uint32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const;
SingleSubstitutionSubtables.h 25 le_uint32 process(GlyphIterator *glyphIterator, const LEGlyphFilter *filter = NULL) const;
32 le_uint32 process(GlyphIterator *glyphIterator, const LEGlyphFilter *filter = NULL) const;
40 le_uint32 process(GlyphIterator *glyphIterator, const LEGlyphFilter *filter = NULL) const;
  /external/llvm/lib/Support/
Process.cpp 1 //===-- Process.cpp - Implement OS Process Concept --------------*- C++ -*-===//
10 // This header file implements the operating system Process concept.
16 #include "llvm/Support/Process.h"
26 // Empty virtual destructor to anchor the vtable for the process class.
27 process::~process() {}
29 self_process *process::get_self() {
47 // instance should live until the process terminates to avoid the potential for
58 /// startup of the process to get approximately correct results
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
Program.java 27 public abstract void process(Frame[] inputs, Frame output); method in class:Program
29 public void process(Frame input, Frame output) { method in class:Program
32 process(inputs, output); method
  /external/valgrind/main/gdbserver_tests/
mcclean_after_fork.stderrB.exp 1 relaying data between gdb and process ....
3 monitor command request to kill this process
  /external/chromium_org/chrome/common/extensions/docs/examples/api/processes/process_monitor/
popup.js 5 // Shows an updating list of process statistics.
10 "<tr><td><b>Process</b></td>" +
25 var div = document.getElementById("process-list");
30 var procId = parseInt(prompt("Enter process ID"));
35 function displayProcessInfo(process, table) {
37 var network = process.network;
47 "<tr><td>" + process.id + "</td>" +
48 "<td>" + process.osProcessId + "</td>" +
49 "<td>" + process.type + "</td>" +
50 "<td>" + process.tabs + "</td>"
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_process_host_unittest.cc 23 process(), browser_context(), test_url));
25 process(),

Completed in 436 milliseconds

1 2 3 4 5 6 7 8 91011>>