HomeSort by relevance Sort by last modified time
    Searched full:process (Results 676 - 700 of 18366) sorted by null

<<21222324252627282930>>

  /external/libchrome/base/process/
process_metrics.h 19 #include "base/process/process_handle.h"
26 #include "base/process/port_provider_mac.h"
48 // priv (private): These pages (kbytes) cannot be shared with any other process.
52 // other process.
55 // priv: Pages mapped only by this process.
60 // priv: Pages mapped only by this process.
81 // private: These pages cannot be shared with any other process.
96 // Provides performance metrics for a specified process (CPU usage, memory and
98 // current process, or CreateProcessMetrics() to get an instance for an
99 // arbitrary process. Then, access the information with the different ge
    [all...]
  /external/llvm/lib/Support/Windows/
Process.inc 1 //===- Win32/Process.cpp - Win32 Process Implementation ------- -*- C++ -*-===//
10 // This file provides the Win32 specific implementation of the Process class.
77 unsigned Process::getPageSize() {
83 Process::GetMallocUsage()
96 void Process::GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
112 void Process::PreventCoreFiles() {
130 Optional<std::string> Process::GetEnv(StringRef Name) {
227 Process::GetArgumentVector(SmallVectorImpl<const char *> &Args,
249 std::error_code Process::FixupStandardFileDescriptors()
    [all...]
  /frameworks/base/core/java/android/os/
IBinder.java 24 * performing in-process and cross-process calls. This
37 * process, and the underlying inter-process communication (IPC) mechanism
45 * another process, if that other process sends a reference to that same IBinder
46 * back to the original process, then the original process will receive the
51 * <p>The system maintains a pool of transaction threads in each process that
54 * process A to process B, the calling thread in A blocks in transact() a
    [all...]
UserHandle.java 48 * user, but if this is calling from a user process then we will send it
53 * user, but if this is calling from a user process then we will send it
116 return appId >= Process.FIRST_ISOLATED_UID && appId <= Process.LAST_ISOLATED_UID;
126 return appId >= Process.FIRST_APPLICATION_UID && appId <= Process.LAST_APPLICATION_UID;
190 return getUid(userId, Process.SHARED_USER_GID);
198 return Process.FIRST_SHARED_APPLICATION_GID + (id % PER_USER_RANGE)
199 - Process.FIRST_APPLICATION_UID;
207 final int appId = getAppId(gid) + Process.FIRST_APPLICATION_UI
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
forking.py 2 # Module for starting a process object using os.fork() or CreateProcess()
40 from multiprocessing import util, process
45 # Check that the current thread is spawning a child process
111 # whose constructor takes a process object as its argument.
139 # Child process not yet created. See #1731717
240 # whose constructor takes a process object as its argument.
245 Start a subprocess to run the code of a process object
257 # start process
334 Run code for process object if this in not the main process
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
forking.py 2 # Module for starting a process object using os.fork() or CreateProcess()
40 from multiprocessing import util, process
45 # Check that the current thread is spawning a child process
111 # whose constructor takes a process object as its argument.
139 # Child process not yet created. See #1731717
240 # whose constructor takes a process object as its argument.
245 Start a subprocess to run the code of a process object
257 # start process
334 Run code for process object if this in not the main process
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
forking.py 2 # Module for starting a process object using os.fork() or CreateProcess()
40 from multiprocessing import util, process
45 # Check that the current thread is spawning a child process
111 # whose constructor takes a process object as its argument.
139 # Child process not yet created. See #1731717
240 # whose constructor takes a process object as its argument.
245 Start a subprocess to run the code of a process object
257 # start process
334 Run code for process object if this in not the main process
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
forking.py 2 # Module for starting a process object using os.fork() or CreateProcess()
40 from multiprocessing import util, process
45 # Check that the current thread is spawning a child process
111 # whose constructor takes a process object as its argument.
139 # Child process not yet created. See #1731717
240 # whose constructor takes a process object as its argument.
245 Start a subprocess to run the code of a process object
257 # start process
334 Run code for process object if this in not the main process
    [all...]
  /external/valgrind/coregrind/
vgdb-invoker-solaris.c 35 - A valgrind process (referred to also as an inferior process)
37 - All threads of the inferior process are stuck in blocking
39 - Therefore no thread can process packets received from gdb.
47 process and stops all threads.
51 3. Then it creates an agent thread within the inferior process
54 4. Meanwhile in the inferior process function
60 7. vgdb then detaches from the inferior process and thus resumes
80 /* Process control file /proc/<pid>/ctl.
82 inferior process resumes automatically. *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
thread_db.h 39 TD_NOLWP, /* No matching light-weighted process found. */
40 TD_BADPH, /* Invalid process handle. */
89 /* Handle for a process. This type is opaque. */
161 TD_SWITCHTO, /* Now assigned to a process. */
162 TD_SWITCHFROM, /* Not anymore assigned to a process. */
165 TD_IDLE, /* Process getting idle. */
221 /* Gathered statistics about the process. */
262 td_thragent_t *ti_ta_p; /* Process handle. */
304 /* Generate new thread debug library handle for process PS. */
310 /* Get number of currently running threads in process associated with TA. *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
thread_db.h 39 TD_NOLWP, /* No matching light-weighted process found. */
40 TD_BADPH, /* Invalid process handle. */
89 /* Handle for a process. This type is opaque. */
161 TD_SWITCHTO, /* Now assigned to a process. */
162 TD_SWITCHFROM, /* Not anymore assigned to a process. */
165 TD_IDLE, /* Process getting idle. */
221 /* Gathered statistics about the process. */
262 td_thragent_t *ti_ta_p; /* Process handle. */
304 /* Generate new thread debug library handle for process PS. */
310 /* Get number of currently running threads in process associated with TA. *
    [all...]
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
ScriptingLayerService.java 128 // This is a way around. Alternatively, we can display process name and port.
287 private void addProcess(InterpreterProcess process) {
288 mProcessMap.put(process.getPort(), process);
291 updateNotification(process.getName() + " started.");
296 InterpreterProcess process = mProcessMap.remove(port);
297 if (process == null) {
302 updateNotification(process.getName() + " exited.");
304 return process;
309 InterpreterProcess process = removeProcess(processId)
    [all...]
  /external/webrtc/webrtc/test/
fake_network_pipe_unittest.cc 93 pipe->Process();
98 pipe->Process();
103 pipe->Process();
108 pipe->Process();
132 pipe->Process();
137 pipe->Process();
142 pipe->Process();
166 pipe->Process();
189 pipe->Process();
220 pipe->Process();
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
sad_mb_offset.h 49 /****** process 8 pixels ******/
62 /* process x11 & x14 */
65 /* process x12 & x10 */
75 /****** process 8 pixels ******/
88 /* process x11 & x14 */
91 /* process x12 & x10 */
150 /****** process 8 pixels ******/
165 /* process x11 & x14 */
168 /* process x12 & x10 */
174 /****** process 8 pixels ******
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
sad_mb_offset.h 52 /****** process 8 pixels ******/
65 /* process x11 & x14 */
68 /* process x12 & x10 */
78 /****** process 8 pixels ******/
91 /* process x11 & x14 */
94 /* process x12 & x10 */
154 /****** process 8 pixels ******/
169 /* process x11 & x14 */
172 /* process x12 & x10 */
178 /****** process 8 pixels ******
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/25.2.0-beta2/
sdk-common-25.2.0-beta2-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/25.2.0-beta3/
sdk-common-25.2.0-beta3-sources.jar 
  /external/autotest/client/site_tests/desktopui_FlashSanityCheck/
desktopui_FlashSanityCheck.py 79 logging.info('Waiting for Pepper process.')
80 # Verify that we see a ppapi process and assume it is Flash.
85 logging.info('ppapi process list at start: %s', ', '.join(ppapi))
90 'Flash did not start (logs) and no ppapi process found.')
101 # We have a ppapi process. Let it run for a little and see if it is
105 logging.info('Verifying the Pepper process is still around.')
111 logging.info('PPapi process list found: <%s>', ', '.join(ppapi))
119 raise error.TestFail('Pepper process disappeared during test.')
121 # At a minimum Flash identifies itself during process start.
124 raise error.TestFail('Saw ppapi process but no Flash output.'
    [all...]
  /external/autotest/site_utils/
log_socket_server.py 61 """Process log record.
112 process = None variable in class:LogSocketServer
117 """Start Log Record Socket Receiver in a new process.
123 if LogSocketServer.process:
127 LogSocketServer.process = multiprocessing.Process(
131 LogSocketServer.process.start()
165 if LogSocketServer.process:
166 LogSocketServer.process.terminate()
167 LogSocketServer.process = Non
    [all...]
  /external/chromium-trace/catapult/tracing/tracing/model/
process.html 15 * @fileoverview Provides the Process class.
24 * The Process represents a single userland process in the
28 function Process(model, pid) {
46 Process.compare = function(x, y) {
65 Process.prototype = {
73 return Process.compare(this, that);
104 res = 'Process ' + this.pid;
164 Process: Process
    [all...]
  /external/libchrome/sandbox/linux/services/
namespace_sandbox.cc 24 #include "base/process/launch.h"
25 #include "base/process/process.h"
68 // An empty string causes the env var to be unset in the child process.
77 // Return a special exit code so that the process is detected as terminated by
97 base::Process NamespaceSandbox::LaunchProcess(
104 base::Process NamespaceSandbox::LaunchProcess(
111 base::Process NamespaceSandbox::LaunchProcessWithOptions(
120 base::Process NamespaceSandbox::LaunchProcessWithOptions(
138 return base::Process();
    [all...]
  /external/llvm/tools/lli/
RemoteTarget.h 1 //===- RemoteTarget.h - LLVM Remote process JIT execution ----------------===//
65 /// @param Address Destination address in the target process.
66 /// @param Data Source address in the host process.
77 /// @param Address Destination address in the target process.
78 /// @param Data Source address in the host process.
87 /// Execute code in the target process. The called function is required
91 /// process.
106 /// Start the remote process.
109 /// Terminate the remote process.
115 // Main processing function for the remote target process. Command message
    [all...]
RemoteTargetExternal.h 1 //===----- RemoteTargetExternal.h - LLVM out-of-process JIT execution -----===//
11 // separate process from where it was built.
54 /// @param Address Destination address in the target process.
55 /// @param Data Source address in the host process.
64 /// @param Address Destination address in the target process.
65 /// @param Data Source address in the host process.
72 /// Execute code in the target process. The called function is required
76 /// process.
97 ErrorMsg += ", (RPCChannel::create) - Stopping process!";
105 /// Terminate the remote process
    [all...]
  /external/minijail/
minijail0.1 3 minijail0 \- sandbox a process
22 that these capabilities are not inherited by subprocesses of the process given
35 Write the pid of the jailed process to \fIfile\fR.
74 \fB-v\fR and \fB-r\fR, since otherwise the process can see outside its namespace
83 that even if the process has write access to a system config knob in /proc
87 Enable seccomp(2) in mode 1, which restricts the child process to a very small
91 Enable seccomp(2) in mode 13 which restricts the child process to a set of
108 the process to which they will actually apply - specifically capability use
109 (since capabilities are not inherited to an exec'd process unless the exec'd
110 process has POSIX file capabilities), seccomp (since we can't exec() once we'r
    [all...]
  /external/chromium-trace/catapult/tracing/tracing/model/helpers/
android_app.html 203 function getInputSamples(process) {
205 for (var counterName in process.counters) {
207 process.counters[counterName].numSeries == 1) {
208 samples = process.counters[counterName].series[0].samples;
244 function AndroidApp(process, uiThread, renderThread, surfaceFlinger,
246 this.process = process;
256 AndroidApp.createForProcessIfPossible = function(process, surfaceFlinger) {
257 var uiThread = process.getThread(process.pid)
    [all...]

Completed in 368 milliseconds

<<21222324252627282930>>