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

1 2 3 4 5 6 7 8 910

  /external/v8/samples/
count-hosts.js 30 function Process(request) {
  /system/vold/
Process.h 22 class Process {
  /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
43 /// current executing process.
44 class Process {
48 /// \brief Return process memory usage.
50 /// by the process. This only counts the memory allocated via the malloc,
61 /// \param user_time Returns the current amount of user time for the process
    [all...]
  /external/v8/test/mjsunit/regress/
regress-arm64-spillslots.js 22 function Process(input) {
30 Process(input);
31 Process(input);
32 %OptimizeFunctionOnNextCall(Process);
33 var result = Process(input);
  /external/webrtc/webrtc/voice_engine/test/auto_test/fakes/
fake_media_process.h 18 virtual void Process(int channel,
  /external/google-breakpad/src/processor/
microdump_processor.cc 57 ProcessResult MicrodumpProcessor::Process(const string &microdump_contents,
  /external/libchrome/base/process/
process.h 10 #include "base/process/process_handle.h"
20 // Provides a move-only encapsulation of a process.
22 // This object is not tied to the lifetime of the underlying process: the
23 // process may be killed and this object may still around, and it will still
26 // Windows: The underlying ProcessHandle will be valid after the process dies
27 // and can be used to gather some information about that process, but most
31 // the process dies, and it may be reused by the system, which means that it may
32 // end up pointing to the wrong process.
33 class BASE_EXPORT Process {
34 MOVE_ONLY_TYPE_FOR_CPP_03(Process)
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/
typing_detection.cc 32 bool TypingDetection::Process(bool key_pressed, bool vad_activity) {
rms_level.cc 31 void RMSLevel::Process(const int16_t* data, size_t length) {
  /external/webrtc/webrtc/voice_engine/
transmit_mixer_unittest.cc 22 virtual void Process(int channel, ProcessingTypes type,
monitor_module.cc 64 MonitorModule::Process()
  /external/deqp/framework/delibs/decpp/
deProcess.cpp 31 Process::Process (void)
38 Process::~Process (void)
43 void Process::start (const char* commandLine, const char* workingDirectory)
49 void Process::waitForFinish (void)
55 void Process::terminate (void)
61 void Process::kill (void)
67 void Process::closeStdIn (void)
73 void Process::closeStdOut (void
    [all...]
deProcess.hpp 41 class Process
44 Process (void);
45 ~Process (void);
65 Process (const Process& other);
66 Process& operator= (const Process& other);
  /frameworks/base/services/core/java/com/android/server/
UiThread.java 20 import android.os.Process;
33 super("android.ui", Process.THREAD_PRIORITY_FOREGROUND, false /*allowIo*/);
35 Process.setThreadGroup(Process.myTid(), Process.THREAD_GROUP_TOP_APP);
  /frameworks/base/services/core/java/com/android/server/os/
SchedulingPolicyService.java 22 import android.os.Process;
50 prio > PRIORITY_MAX || Process.getThreadGroupLeader(tid) != pid) {
55 Process.setThreadGroup(tid, Binder.getCallingPid() == pid ?
56 Process.THREAD_GROUP_AUDIO_SYS : Process.THREAD_GROUP_AUDIO_APP);
58 Process.setThreadScheduler(tid, Process.SCHED_FIFO | Process.SCHED_RESET_ON_FORK,
69 case Process.AUDIOSERVER_UID: // fastcapture, fastmixer
70 case Process.CAMERASERVER_UID: // camera high frame rate recordin
    [all...]
  /external/dng_sdk/source/
dng_filter_task.cpp 92 void dng_filter_task::Process (uint32 threadIndex,
129 // Process area.
  /external/webrtc/webrtc/modules/audio_coding/neteq/
accelerate.cc 17 Accelerate::ReturnCodes Accelerate::Process(const int16_t* input,
31 return TimeStretch::Process(input, input_length, fast_accelerate, output,
68 assert(fs_mult_120 >= peak_index); // Should be handled in Process().
preemptive_expand.cc 19 PreemptiveExpand::ReturnCodes PreemptiveExpand::Process(
38 return TimeStretch::Process(input, input_length, kFastMode, output,
  /external/webrtc/webrtc/tools/agc/
fake_agc.h 25 virtual int Process(const AudioFrame& audio_frame) {
  /libcore/ojluni/src/main/java/java/lang/
Process.java 33 * methods create a native process and return an instance of a
34 * subclass of {@code Process} that can be used to control the process
35 * and obtain information about it. The class {@code Process}
36 * provides methods for performing input from the process, performing
37 * output to the process, waiting for the process to complete,
38 * checking the exit status of the process, and destroying (killing)
39 * the process.
48 * operations will be redirected to the parent process, where they ca
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
ProcessTest.java 24 import android.os.Process;
105 int myTid = Process.myTid();
107 int priority = Process.getThreadPriority(myTid);
109 && priority <= Process.THREAD_PRIORITY_LOWEST);
111 Process.setThreadPriority(Process.THREAD_PRIORITY_AUDIO);
112 assertEquals(Process.THREAD_PRIORITY_AUDIO, Process.getThreadPriority(myTid));
114 Process.setThreadPriority(myTid, Process.THREAD_PRIORITY_LOWEST)
    [all...]
  /external/robolectric/v1/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/webrtc/libjingle/xmpp/
xmppclient.h 117 int Process(int state) {
121 default: return Task::Process(state);
  /external/webrtc/webrtc/modules/audio_processing/agc/
agc.cc 52 int Agc::Process(const int16_t* audio, size_t length, int sample_rate_hz) {
  /external/webrtc/webrtc/system_wrappers/source/
data_log_no_op.cc 82 void DataLogImpl::Process() {

Completed in 964 milliseconds

1 2 3 4 5 6 7 8 910