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

1 2 3 45 6 7 8 910

  /cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptorPeer.java 25 import android.os.Process;
42 * Sits around in a remote process doing whatever the CTS test says.
178 Process.killProcess(Process.myPid());
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ServiceStartArguments.java 31 import android.os.Process;
42 * in the same process as the application. The {@link Controller}
114 // separate thread because the service normally runs in the process's
118 Process.THREAD_PRIORITY_BACKGROUND);
136 // For the start fail button, we will simulate the process dying
142 // Since the process hasn't finished handling the command,
145 Process.killProcess(Process.myPid());
151 // how they impact the behavior. Try killing the process while it
268 Process.killProcess(Process.myPid())
    [all...]
  /external/autotest/server/cros/faft/utils/
mode_switcher.py 9 from multiprocessing import Process
559 For Process creation
570 process = Process(
573 process.start()
578 process.join()
600 process = Process(
603 process.start()
608 process.join(
    [all...]
  /external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
ecmametadatapass.py 294 """Process the end of a statement."""
301 """Process the context at the current token.
462 def Process(self, first_token):
480 """Process the given token."""
  /external/chromium-trace/catapult/tracing/bin/
symbolize_trace 185 class Process(object):
186 """Holds various bits of information about a process in a trace file."""
196 """Parses trace dictionary and returns pid->Process map of all processes
211 process = process_map.get(pid)
212 if process is None:
213 process = Process(pid)
214 process_map[pid] = process
219 process.name = event['args']['name']
221 process.stack_frames = StackFrames(event['args']['stackFrames']
    [all...]
  /external/clang/lib/Frontend/Rewrite/
InclusionRewriter.cpp 55 bool Process(FileID FileId, SrcMgr::CharacteristicKind FileType);
403 bool InclusionRewriter::Process(FileID FileId,
408 assert(!Invalid && "Attempting to process invalid inclusion");
456 // include and recursively process the file
457 if (Process(Inc->Id, Inc->FileType)) {
586 // First let the preprocessor process the entire file and call callbacks.
600 Rewrite->Process(PP.getPredefinesFileID(), SrcMgr::C_User);
601 Rewrite->Process(SM.getMainFileID(), SrcMgr::C_User);
  /external/deqp/execserver/
xsWin32TestProcess.hpp 132 // incompatible with deFile. Thus separate Process implementation is used for now.
133 class Process
136 Process (void);
137 ~Process (void);
153 Process (const Process& other);
154 Process& operator= (const Process& other);
199 win32::Process* m_process;
  /external/dng_sdk/source/
dng_fingerprint.cpp 257 void dng_md5_printer::Process (const void *data,
339 Process (PADDING, padLen);
343 Process (bits, 8);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionDispatch/
btCompoundCollisionAlgorithm.cpp 189 void Process(const btDbvtNode* leaf)
276 //process all children, that overlap with the given AABB bounds
btCompoundCompoundCollisionAlgorithm.cpp 125 void Process(const btDbvtNode* leaf0,const btDbvtNode* leaf1)
273 callback->Process(p.a,p.b);
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
ICollide.java 76 public void Process(btDbvtNode arg0, btDbvtNode arg1) {
80 public void Process(btDbvtNode arg0) {
84 public void Process(btDbvtNode n, float arg1) {
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
OcclusionCuller.java 31 * Occlusion culling is a process that determines which objects are visible or hidden from the viewpoint of a camera. This is
35 * k-DOP culling determines which objects are inside a camera frustum. The process is accelerated by the dynamic bounding volume
61 * tree is completely occluded by an occluder node previously rendered by {@link #Process(btDbvtNode, float)}.
84 public void Process (btDbvtNode leaf, float depth) {
130 * {@link #onObjectVisible(btCollisionObject)}. The process of finding objects in frustum is accelerated by the broadphase
  /external/sl4a/Common/src/com/googlecode/android_scripting/
Process.java 36 public class Process {
56 public Process() {
111 throw new RuntimeException("Attempted to start process that is already running.");
135 Log.v("Process " + pid + " exited with result code " + result + ".");
164 android.os.Process.killProcess(mPid.get());
165 Log.v("Killed process " + mPid);
  /external/v8/src/crankshaft/
hydrogen-load-elimination.cc 47 HLoadEliminationTable* Process(HInstruction* instr, Zone* zone) {
51 TRACE((" process L%d field %d (o%d)\n",
65 TRACE((" process S%d field %d (o%d) = v%d\n",
199 // Process a load instruction, updating internal table state. If a previous
226 // Process a store instruction, updating internal table state. If a previous
444 // Process a possibly side-effecting instruction.
445 void Process(HInstruction* instr, Zone* zone) {
  /external/v8/src/parsing/
rewriter.cc 42 void Process(ZoneList<Statement*>* statements);
108 void Processor::Process(ZoneList<Statement*>* statements) {
125 if (!node->ignore_completion_value()) Process(node->statements());
263 Process(clause->statements());
354 processor.Process(body);
381 processor.Process(body);
  /external/webrtc/webrtc/modules/audio_coding/neteq/
merge.cc 41 size_t Merge::Process(int16_t* input, size_t input_length,
183 expand_->Process(&expanded_temp);
  /external/webrtc/webrtc/modules/audio_processing/agc/
agc_manager_direct.cc 232 void AgcManagerDirect::Process(const int16_t* audio,
241 // We have to wait until the first process call to check the volume,
246 if (agc_->Process(audio, length, sample_rate_hz) != 0) {
247 LOG(LS_ERROR) << "Agc::Process failed";
  /external/webrtc/webrtc/modules/audio_processing/test/
debug_dump_test.cc 79 void Process(size_t num_blocks);
187 void DebugDumpGenerator::Process(size_t num_blocks) {
475 generator.Process(100);
484 generator.Process(100);
492 generator.Process(100);
501 generator.Process(100);
504 generator.Process(100);
513 generator.Process(100);
516 generator.Process(100);
525 generator.Process(100)
    [all...]
  /external/webrtc/webrtc/modules/media_file/
media_file_impl.cc 98 int32_t MediaFileImpl::Process()
101 "Process: This method is not used by MediaFile class.");
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/
nada.cc 240 int NadaBweSender::Process() {
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
receive_statistics_impl.cc 309 incoming_bitrate_.Process();
457 int32_t ReceiveStatisticsImpl::Process() {
533 int32_t NullReceiveStatistics::Process() { return 0; }
  /external/webrtc/webrtc/modules/video_capture/
video_capture_impl.cc 86 // returns the number of milliseconds until the module want a worker thread to call Process
95 // Process any pending tasks such as timeouts
96 int32_t VideoCaptureImpl::Process()
  /external/webrtc/webrtc/modules/video_coding/
video_receiver.cc 65 int32_t VideoReceiver::Process() {
119 // TODO(holmer): Add API for changing Process interval and make sure it's
156 // We need a Process call more often if we are relying on
  /external/webrtc/webrtc/modules/video_render/
video_render_impl.cc 122 int32_t ModuleVideoRenderImpl::Process()
video_render_internal_impl.cc 302 int32_t ModuleVideoRenderImpl::Process()

Completed in 818 milliseconds

1 2 3 45 6 7 8 910