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

1 2 3 45 6 7 8 91011>>

  /frameworks/base/services/tests/servicestests/src/com/android/server/appops/
AppOpsActiveWatcherTest.java 33 import android.os.Process;
68 eq(Process.myUid()), eq(getContext().getPackageName()), eq(true));
78 Process.myUid(), getContext().getPackageName())).isTrue();
86 eq(Process.myUid()), eq(getContext().getPackageName()), eq(false));
90 Process.myUid(), getContext().getPackageName())).isFalse();
  /packages/apps/Settings/tests/unit/src/com/android/settings/notification/
ChannelNotificationSettingsTest.java 36 import android.os.Process;
88 mTargetContext.getPackageName(), Process.myUid(), blocked);
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/dummy/
__init__.py 36 'Process', 'current_process', 'active_children', 'freeze_support',
95 Process = DummyProcess
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/lib/python2.7/multiprocessing/dummy/
__init__.py 36 'Process', 'current_process', 'active_children', 'freeze_support',
95 Process = DummyProcess
  /prebuilts/gdb/linux-x86/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/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
block_merge_pass.cpp 128 // Do not process if any disallowed extensions are enabled
131 // Process all entry point functions.
142 Pass::Status BlockMergePass::Process(ir::Module* module) {
insert_extract_elim.cpp 115 // Do not process if any disallowed extensions are enabled
118 // Process all entry point functions.
129 Pass::Status InsertExtractElimPass::Process(ir::Module* module) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 36 'Process', 'current_process', 'active_children', 'freeze_support',
95 Process = DummyProcess
  /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/dummy/
__init__.py 36 'Process', 'current_process', 'active_children', 'freeze_support',
95 Process = DummyProcess
  /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...]
  /cts/tests/tests/util/src/android/util/cts/
EventLogTest.java 24 import android.os.Process;
246 assertEquals(Process.myPid(), event.getProcessId());
247 assertEquals(Process.myTid(), event.getThreadId());
  /external/libbrillo/brillo/
process.cc 5 #include "brillo/process.h"
22 #include <base/process/process_metrics.h>
38 Process::Process() {
41 Process::~Process() {
44 bool Process::ProcessExists(pid_t pid) {
198 // by this process later on.
236 // Executing inside the child process.
291 // Reset signal mask for the child process if not inheriting signal mas
    [all...]
  /external/libchrome/base/process/
process_posix.cc 5 #include "base/process/process.h"
16 #include "base/process/kill.h"
32 // than |wait| for the process to exit. The child process may
38 // When a child process terminates a SIGCHLD signal is sent to the parent.
42 // Our strategy is to call waitpid() once up front to check if the process
64 // If the process hasn't exited yet, then sleep and try again.
72 // Sleep for a bit while we wait for the process to finish.
110 // If the process wasn't found, it must be dead
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/
LocationListenerActivity.java 27 import android.os.Process;
59 + Process.myUid());
  /cts/tests/tests/os/src/android/os/cts/
CrossProcessExceptionTest.java 110 assertEquals(android.os.Process.myUid(), are.getUserAction().getCreatorUid());
  /external/dng_sdk/source/
dng_fingerprint.h 170 void Process (const void *data,
176 void Process (const char *text)
179 Process (text, (uint32) strlen (text));
376 Process (data, count2);
dng_jpeg_image.cpp 92 void Process (uint32 /* threadIndex */,
277 void Process (uint32 /* threadIndex */,
304 printer.Process (fJPEGImage.fJPEGData [tileIndex]->Buffer (),
357 printer.Process (fJPEGTables->Buffer (),
373 printer.Process (digests [k].data,
  /external/libchrome/base/
sha1.cc 53 void Process();
115 Process();
126 Process();
139 Process();
155 void SecureHashAlgorithm::Process() {
  /external/libmojo/base/android/java/src/org/chromium/base/
ThreadUtils.java 9 import android.os.Process;
218 Process.setThreadPriority(tid, Process.THREAD_PRIORITY_AUDIO);
228 return Process.getThreadPriority(tid) == Process.THREAD_PRIORITY_AUDIO;
  /external/v8/src/crankshaft/
hydrogen-flow-engine.h 27 inline void Process(HInstruction* value, Zone* zone) {
42 inline NoState* Process(HInstruction* value, Zone* zone) {
85 state = state->Process(it.Current(), zone_);
116 state = state->Process(it.Current(), zone_);
152 // Process the blocks between the header and the end.
163 // Process all the effects of the block.
167 effects->Process(it.Current(), zone_);
  /external/webrtc/webrtc/modules/audio_coding/neteq/
time_stretch.cc 23 TimeStretch::ReturnCodes TimeStretch::Process(const int16_t* input,
  /external/webrtc/webrtc/modules/bitrate_controller/
bitrate_controller_impl.cc 155 int32_t BitrateControllerImpl::Process() {
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
remote_bitrate_estimator_single_stream.cc 121 int32_t RemoteBitrateEstimatorSingleStream::Process() {

Completed in 959 milliseconds

1 2 3 45 6 7 8 91011>>