HomeSort by relevance Sort by last modified time
    Searched defs:Process (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/v8/samples/
count-hosts.js 30 function Process(request) {
  /system/vold/
Process.h 20 class Process {
  /frameworks/base/services/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);
  /external/llvm/include/llvm/Support/
Process.h 1 //===- llvm/Support/Process.h -----------------------------------*- C++ -*-===//
11 /// Provides a library for accessing information about this process and other
14 /// proposed design of the Boost.Process library, and is design specifically to
18 /// This file declares the llvm::sys::Process class which contains a collection
20 /// current process. The goal is to migrate users of this API over to the new
38 /// system process.
40 /// This base class is the core interface behind any OS process. It exposes
41 /// methods to query for generic information about a particular process.
44 /// can optionally expose more interfaces unique to certain process kinds.
45 class process { class in namespace:llvm::sys
    [all...]
  /libcore/luni/src/main/java/java/lang/
Process.java 24 * Represents an external process. Enables writing to, reading from, destroying,
25 * and waiting for the external process, as well as querying its exit value. Use
28 * <p>The child process writes its output to two streams, {@code out} and
29 * {@code err}. These streams should be read by the parent process using {@link
31 * streams are not read, the target process may block while it awaits buffer
37 * to avoid blocking the target process.
39 * <p>Running processes hold resources. When a process is no longer used, the
40 * process should be closed by calling {@link #destroy}. This will kill the
41 * process and release the resources that it holds.
45 * Process process = new ProcessBuilder(
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
ProcessTest.java 25 import android.os.Process;
102 int myTid = Process.myTid();
104 int priority = Process.getThreadPriority(myTid);
106 && priority <= Process.THREAD_PRIORITY_LOWEST);
108 Process.setThreadPriority(Process.THREAD_PRIORITY_AUDIO);
109 assertEquals(Process.THREAD_PRIORITY_AUDIO, Process.getThreadPriority(myTid));
111 Process.setThreadPriority(myTid, Process.THREAD_PRIORITY_LOWEST)
    [all...]
  /external/chromium/base/
process.h 21 // handle to a process.
22 // ProcessId is a number which identifies the process in the OS.
39 // a valid value. -20 to 19 are valid process priorities.
43 class BASE_API Process {
45 Process() : process_(kNullProcessHandle) {
51 explicit Process(ProcessHandle handle) : process_(handle) {
57 // A handle to the current process.
58 static Process Current();
60 // Get/Set the handle for this process. The handle will be 0 if the process
    [all...]
sha1_portable.cc 51 void Process();
120 Process();
131 Process();
144 Process();
156 void SecureHashAlgorithm::Process() {
  /external/chromium/third_party/libjingle/source/talk/examples/call/
voicemailjidrequester.cc 65 // Process the XML and fire the appropriate signals. If the xml was valid,
107 int VoicemailJidRequester::Process(int state) {
111 return talk_base::Task::Process(state);
  /external/chromium/third_party/libjingle/source/talk/xmpp/
xmppclient.h 133 int Process(int state) {
137 default: return Task::Process(state);
  /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/webrtc/src/system_wrappers/source/
data_log_no_op.cc 82 void DataLogImpl::Process() {
event_posix.cc 242 return static_cast<EventPosix*>(obj)->Process();
245 bool EventPosix::Process()
cpu_win.cc 95 CpuWindows::Process,
158 // possible that cpu_polling_thread is in the process of initializing.
180 bool CpuWindows::Process(void* thread_object)
275 // CoInitializeSecurity is process-wide (which is too intrusive).
  /frameworks/base/core/tests/benchmarks/src/android/net/
TrafficStatsBenchmark.java 24 TrafficStats.getUidRxBytes(android.os.Process.myUid());
  /external/icu4c/test/depstest/
depstest.py 136 def Process(root_path):
181 Process(sys.argv[1])
  /frameworks/base/tests/permission/src/com/android/framework/permission/tests/
VibratorServicePermissionTest.java 23 import android.os.Process;
50 mVibratorService.vibrate(Process.myUid(), null, 2000, new Binder());
66 mVibratorService.vibratePattern(Process.myUid(), null, new long[] {0}, 0, new Binder());
  /external/chromium/third_party/libjingle/source/talk/base/
task.cc 116 int new_state = Process(state_);
218 int Task::Process(int state) {
  /frameworks/base/core/java/android/os/
SystemVibrator.java 62 vibrate(Process.myUid(), mPackageName, milliseconds);
67 vibrate(Process.myUid(), mPackageName, pattern, repeat);
  /frameworks/base/core/tests/coretests/src/android/os/
HandlerThreadTest.java 23 import android.os.Process;
41 mLooperTid = Process.myTid();
68 // Make sure that the process was set.
71 assertNotSame(Process.myTid(), mLooperTid);
77 assertEquals(mLooperTid, Process.myTid());
  /cts/tests/tests/util/src/android/util/cts/
EventLogTest.java 19 import android.os.Process;
176 assertEquals(Process.myPid(), event.getProcessId());
177 assertEquals(Process.myTid(), event.getThreadId());
  /external/webrtc/src/modules/audio_processing/
level_estimator_impl.cc 40 void Process(int16_t* data, int length) {
110 level->Process(mixed_data, audio->samples_per_channel());
  /frameworks/base/core/java/com/android/internal/os/
WrapperInit.java 19 import android.os.Process;
33 * Startup class for the wrapper process.
47 * wrapper process instead of by forking Zygote.
50 * the pid of this process, or 0 if none.
70 os.writeInt(Process.myPid());
74 Slog.d(TAG, "Could not write pid of wrapped process to Zygote pipe.", ex);
  /frameworks/ex/variablespeed/jni/
sola_time_scaler.cc 193 Process();
221 // Copy samples to the input buffer and then process whatever can be consumed.
223 Process();
245 bool SolaTimeScaler::Process() {
249 // We can only process data if there is sufficient input available
262 // The input reader always points to the next window to process.
362 } // while (more to process)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DebugSettings.java 24 import android.os.Process;
94 if (mServiceNeedsRestart) Process.killProcess(Process.myPid());

Completed in 1657 milliseconds

1 2 3