HomeSort by relevance Sort by last modified time
    Searched full:process (Results 301 - 325 of 17637) sorted by null

<<11121314151617181920>>

  /external/oprofile/pp/
oparchive_options.h 32 * handle_options - process command line
35 * Process the spec, fatally complaining on error.
opgprof_options.h 29 * handle_options - process command line
32 * Process the spec, fatally complaining on error.
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ProcessTest.java 17 int pid = android.os.Process.myPid();
26 assertThat(android.os.Process.myPid(), equalTo(47));
  /external/valgrind/main/gdbserver_tests/
mcbreak.stderrB.exp 1 relaying data between gdb and process ....
10 monitor command request to kill this process
nlsigvgdb.stdinB.gdb 3 echo vgdb launched process attached\n
14 # kill the process now
  /frameworks/base/services/core/java/com/android/server/os/
SchedulingPolicyService.java 22 import android.os.Process;
48 if (Binder.getCallingUid() != Process.MEDIA_UID || prio < PRIORITY_MIN ||
49 prio > PRIORITY_MAX || Process.getThreadGroupLeader(tid) != pid) {
54 Process.setThreadGroup(tid, Binder.getCallingPid() == pid ?
55 Process.THREAD_GROUP_AUDIO_SYS : Process.THREAD_GROUP_AUDIO_APP);
57 Process.setThreadScheduler(tid, Process.SCHED_FIFO, prio);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
process.py 2 # Module providing the `Process` class which emulates `threading.Thread`
4 # multiprocessing/process.py
35 __all__ = ['Process', 'current_process', 'active_children']
61 Return process object representing the current process
67 Return list of process objects corresponding to live child processes
83 # The `Process` class
86 class Process(object):
88 Process objects represent activity that is run in a separate process
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
process.py 2 # Module providing the `Process` class which emulates `threading.Thread`
4 # multiprocessing/process.py
35 __all__ = ['Process', 'current_process', 'active_children']
61 Return process object representing the current process
67 Return list of process objects corresponding to live child processes
83 # The `Process` class
86 class Process(object):
88 Process objects represent activity that is run in a separate process
    [all...]
  /external/lldb/source/Commands/
CommandObjectProcess.cpp 29 #include "lldb/Target/Process.h"
52 StopProcessIfNecessary (Process *&process, StateType &state, CommandReturnObject &result)
55 if (process)
57 state = process->GetState();
59 if (process->IsAlive() && state != eStateConnected)
62 if (process->GetState() == eStateAttaching)
64 else if (process->GetShouldDetach())
65 ::snprintf (message, sizeof(message), "There is a running process, detach from it and %s?", m_new_process_action.c_str());
67 ::snprintf (message, sizeof(message), "There is a running process, kill it and %s?", m_new_process_action.c_str())
203 Process *process = m_exe_ctx.GetProcessPtr(); local
555 Process *process = m_exe_ctx.GetProcessPtr(); local
800 Process *process = m_exe_ctx.GetProcessPtr(); local
997 Process *process = m_exe_ctx.GetProcessPtr(); local
1131 Process *process = m_exe_ctx.GetProcessPtr(); local
1235 Process *process = m_interpreter.GetExecutionContext().GetProcessPtr(); local
1273 Process *process = m_exe_ctx.GetProcessPtr(); local
1330 Process *process = m_exe_ctx.GetProcessPtr(); local
1403 Process *process = m_exe_ctx.GetProcessPtr(); local
1475 Process *process = m_exe_ctx.GetProcessPtr(); local
1537 Process *process = m_exe_ctx.GetProcessPtr(); local
1597 Process *process = m_exe_ctx.GetProcessPtr(); local
    [all...]
  /external/chromium_org/base/process/
kill_mac.cc 5 #include "base/process/kill.h"
23 // Reap |child| process. This call blocks until completion.
35 // observe when the process exits. kevent can monitor a kqueue with a
37 // time. Once the kqueue indicates the process has exited, waitpid will reap
40 // process will be mercilessly killed and reaped.
42 // A child process passed to this function may be in one of several states:
44 // terminated and already reaped. Normally, a process will at least have been
46 // If a process is terminating and unreaped, there may be a window between the
49 // detected when kqueue indicates that the process is not running and a
50 // non-blocking waitpid fails to reap the process but indicates that it i
    [all...]
  /external/chromium_org/components/nacl/browser/
nacl_process_host.h 15 #include "base/process/process.h"
36 void* AllocateAddressSpaceASLR(base::ProcessHandle process, size_t size);
39 // channel. There will be one NaClProcessHost per NaCl process
40 // The browser is responsible for starting the NaCl process
51 // uses_irt: whether the launched process should use the IRT.
53 // enable_dyncode_syscalls: whether the launched process should allow dyncode
55 // enable_exception_handling: whether the launched process should allow
57 // enable_crash_throttling: whether a crash of this process contributes
59 // whether this process should not start when to
99 content::BrowserChildProcessHost* process() { return process_.get(); } function in class:nacl::NaClProcessHost
    [all...]
  /cts/tests/ProcessTest/src/com/android/cts/process/
ProcessTest.java 17 package com.android.cts.process;
28 import com.android.cts.process.activity.NoSharePidActivity;
29 import com.android.cts.process.activity.SharePidActivity;
30 import com.android.cts.process.activity.SharePidSubActivity;
36 String enableApp = "com.android.cts.process.shareuidapp";
37 String disableApp = "com.android.cts.process.noshareuidapp";
55 // share pid will use same process
73 // no share pid will create a new process
83 // kill the process after test
84 android.os.Process.killProcess(noSharePid)
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
safe_iapps_library_parser.h 27 // a utility process. The SafeIAppsLibraryParser object is ref-counted and
30 // utility process replies or when it dies.
32 // the file handle to the utility process.
64 // Posts a task to start the XML parsing in the utility process.
67 // Launches the utility process. Must run on the IO thread.
70 // Notification that the utility process is running, and we can now get its
71 // process handle.
75 // Notification from the utility process when it finishes parsing the
81 // Notification from the utility process when it finishes parsing the
100 // once the utility process has launched
    [all...]
  /external/chromium_org/components/nacl/common/
nacl_host_messages.h 10 #include "base/process/process.h"
53 // A renderer sends this to the browser process when it wants to start
54 // a new instance of the Native Client process. The browser will launch
55 // the process and return an IPC channel handle. This handle will only
62 // A renderer sends this to the browser process when it wants to
68 // A renderer sends this to the browser process when it wants to
94 // A renderer sends this to the browser process to report when the client
99 // A renderer sends this to the browser process when it wants to
108 // A renderer sends this to the browser process to determine how man
    [all...]
  /external/chromium_org/content/browser/service_worker/
service_worker_process_manager.h 40 // Returns a reference to a running process suitable for starting the Service
42 // for existence, and if none exist, then a new process will be created. Posts
44 // process ID that has a new reference.
55 // Drops a reference to a process that was running a Service Worker, and its
59 // Sets a single process ID that will be used for all embedded workers. This
60 // bypasses the work of creating a process and managing its worker refcount so
69 // Information about the process for an EmbeddedWorkerInstance.
80 // In case the process was allocated without using a SiteInstance, we need
81 // to store a process ID to decrement a worker reference on shutdown.
91 // process it's running inside. Since the Instances themselves live on the I
    [all...]
  /external/chromium_org/sandbox/linux/services/
credentials.h 22 // This class should be used to manipulate the current process' credentials.
30 // Returns the number of file descriptors in the current process's FD
35 // Checks whether the current process has any directory file descriptor open.
36 // Directory file descriptors are "capabilities" that would let a process use
50 // the current process.
53 // of the current process.
55 // Returns the capabilities of the current process in textual form, as
67 // Move the current process to a new "user namespace" as supported by Linux
71 // If this call succeeds, the current process will be granted a full set of
75 // Remove the ability of the process to access the file system. Fil
    [all...]
  /external/lldb/test/lang/c/stepping/
TestThreadStepping.py 49 # The process should be stopped at this point.
50 self.expect("process status", PROCESS_STOPPED,
51 patterns = ['Process .* stopped'])
69 self.runCmd("process continue")
71 # The process should be stopped at this point.
72 self.expect("process status", PROCESS_STOPPED,
73 patterns = ['Process .* stopped'])
80 self.runCmd("process continue")
82 # The process should be stopped at this point.
83 self.expect("process status", PROCESS_STOPPED
    [all...]
  /frameworks/base/tools/preload/
Proc.java 25 * A Dalvik process.
31 /** Parent process. */
34 /** Process ID. */
38 * Name of this process. We may not have the correct name at first, i.e.
39 * some classes could have been loaded before the process name was set.
53 /** Sequential list of operations that happened in this process. */
56 /** List of past process names. */
59 /** Constructs a new process. */
65 /** Sets name of this process. */
76 * Returns true if this process comes from the zygote
    [all...]
  /external/chromium_org/chrome/browser/mac/
relauncher.h 10 // process and exec a new browser from within. That leaves open a window
17 // process (the "relauncher") in between the original browser ("parent") and
19 // relauncher process; because it's an LSUIElement, it doesn't get a Dock
21 // start a relauncher process, giving it the "writer" side of a pipe that it
26 // proceeds, launching the relaunched process. The handshake to synchronize
28 // needs to be sure that it's monitoring the parent and not some other process
41 // The relauncher process can unmount and eject a mounted disk image and move
48 // currently running instance of Chrome in the parent browser process as the
49 // executable for the relauncher process. |args| is an argv-style vector of
51 // also the path to the relaunched process. Because the relauncher proces
    [all...]
  /external/chromium_org/chrome/service/
service_utility_process_host.h 17 #include "base/process/process.h"
39 // Acts as the service-side host to a utility child process. A
40 // utility process is a short-lived sandboxed process that is created to run
51 // Called when the child process died before a reply was receieved.
96 // Starts a process to render the specified pages in the given PDF file into
104 // Starts a process to get capabilities and defaults for the specified
105 // printer. Used on Windows to isolate the service process from printer driver
106 // crashes by executing this in a separate process. The process does not ru
    [all...]
  /external/chromium_org/ui/base/accelerators/
accelerator_manager_unittest.cc 70 EXPECT_TRUE(manager_.Process(accelerator_a));
85 EXPECT_TRUE(manager_.Process(accelerator_a));
102 EXPECT_TRUE(manager_.Process(accelerator_a));
108 EXPECT_FALSE(manager_.Process(accelerator_a));
127 EXPECT_FALSE(manager_.Process(accelerator_a));
128 EXPECT_FALSE(manager_.Process(accelerator_b));
132 EXPECT_TRUE(manager_.Process(accelerator_c));
136 TEST_F(AcceleratorManagerTest, Process) {
148 EXPECT_TRUE(manager_.Process(accelerator)) << text;
153 EXPECT_FALSE(manager_.Process(accelerator)) << text; // different typ
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/sys/
ptrace.h 30 /* Indicate that the process making this request should be traced.
31 All signals received by this process can be intercepted by its
36 /* Return the word in the process's text space at address ADDR. */
40 /* Return the word in the process's data space at address ADDR. */
44 /* Return the word in the process's user area at offset ADDR. */
48 /* Write the word DATA into the process's text space at address ADDR. */
52 /* Write the word DATA into the process's data space at address ADDR. */
56 /* Write the word DATA into the process's user area at offset ADDR. */
60 /* Continue the process. */
64 /* Kill the process. *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
ptrace.h 30 /* Indicate that the process making this request should be traced.
31 All signals received by this process can be intercepted by its
36 /* Return the word in the process's text space at address ADDR. */
40 /* Return the word in the process's data space at address ADDR. */
44 /* Return the word in the process's user area at offset ADDR. */
48 /* Write the word DATA into the process's text space at address ADDR. */
52 /* Write the word DATA into the process's data space at address ADDR. */
56 /* Write the word DATA into the process's user area at offset ADDR. */
60 /* Continue the process. */
64 /* Kill the process. *
    [all...]
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCRuntimeV2.cpp 39 #include "lldb/Target/Process.h"
288 ExtractRuntimeGlobalSymbol (Process* process,
297 if (!process)
299 error.SetErrorString("no process");
308 byte_size = process->GetAddressByteSize();
312 lldb::addr_t symbol_load_addr = symbol->GetAddress().GetLoadAddress(&process->GetTarget());
316 return process->ReadUnsignedIntegerFromMemory(symbol_load_addr, byte_size, default_value, error);
334 AppleObjCRuntimeV2::AppleObjCRuntimeV2 (Process *process,
868 lldb_private::Process *process = m_runtime.GetProcess(); local
890 lldb_private::Process *process = m_runtime.GetProcess(); local
921 lldb_private::Process *process = m_runtime.GetProcess(); local
952 lldb_private::Process *process = m_runtime.GetProcess(); local
1629 Process *process = exe_ctx.GetProcessPtr(); local
1657 Process *process = GetProcess(); local
1684 Process *process = GetProcess(); local
1930 Process *process = GetProcess(); local
2145 Process *process = GetProcess(); local
2178 Process *process = GetProcess(); local
2218 Process *process = GetProcess(); local
    [all...]
  /external/chromium_org/content/browser/gpu/
gpu_process_host.h 78 // launching of a GPU process if required. Returns null on failure. It
85 // Retrieves a list of process handles for all gpu processes.
89 // Helper function to send the given message to the GPU process on the IO
99 // Get the GPU process host for the GPU process with the given ID. Returns
100 // null if the process no longer exists.
110 // Tells the GPU process to create a new channel for communication with a
111 // client. Once the GPU process responds asynchronously with the IPC handle
117 // Tells the GPU process to create a new command buffer that draws into the
127 // Tells the GPU process to create a new image using the given window
    [all...]

Completed in 1268 milliseconds

<<11121314151617181920>>