| /libcore/ojluni/src/main/java/java/lang/ |
| Process.java | 34 * methods create a native process and return an instance of a 35 * subclass of {@code Process} that can be used to control the process 36 * and obtain information about it. The class {@code Process} 37 * provides methods for performing input from the process, performing 38 * output to the process, waiting for the process to complete, 39 * checking the exit status of the process, and destroying (killing) 40 * the process. 49 * operations will be redirected to the parent process, where they ca [all...] |
| /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/ |
| eliminate_dead_constant_pass.cpp | 28 Pass::Status EliminateDeadConstantPass::Process(ir::Module* module) {
|
| inline_exhaustive_pass.cpp | 68 Pass::Status InlineExhaustivePass::Process(ir::Module* module) {
|
| flatten_decoration_pass.cpp | 31 Pass::Status FlattenDecorationPass::Process(ir::Module* module) {
|
| inline_opaque_pass.cpp | 116 Pass::Status InlineOpaquePass::Process(ir::Module* module) {
|
| local_single_block_elim_pass.cpp | 176 // Do not process if module contains OpGroupDecorate. Additional 188 // Process all entry point functions 200 Pass::Status LocalSingleBlockLoadStoreElimPass::Process(ir::Module* module) {
|
| /system/extras/simpleperf/scripts/inferno/ |
| data_types.py | 51 class Process:
|
| /frameworks/base/services/tests/uiservicestests/src/com/android/server/slice/ |
| SliceManagerServiceTest.java | 40 import android.os.Process; 118 when(mContextSpy.checkPermission("perm1", Process.myPid(), Process.myUid())) 120 when(mContextSpy.checkPermission("perm2", Process.myPid(), Process.myUid())) 122 mService.checkSlicePermission(TEST_URI, mContext.getPackageName(), Process.myPid(), 123 Process.myUid(), testPerms); 125 verify(mContextSpy).checkPermission(eq("perm1"), eq(Process.myPid()), eq(Process.myUid())); 126 verify(mContextSpy).checkPermission(eq("perm2"), eq(Process.myPid()), eq(Process.myUid())) [all...] |
| /art/tools/ |
| stream-trace-converter.py | 144 def Process(self, input, body): 193 self.Process(input, body)
|
| /cts/tests/tests/media/src/android/media/cts/ |
| SessionToken2Test.java | 23 import android.os.Process; 55 assertEquals(Process.myUid(), token.getUid()); 65 assertEquals(Process.myUid(), token.getUid());
|
| /cts/tests/tests/tv/src/android/media/tv/cts/ |
| FaultyTvInputService.java | 21 import android.os.Process; 48 Process.killProcess(Process.myPid()); 71 Process.killProcess(Process.myPid());
|
| /development/tools/logblame/ |
| ps.py | 11 class Process(object): 26 return "Process(uid=%s, pid=%s, name=%s)" % (self.uid, self.pid, self.name) 60 self._processes[line[1]] = Process(uid, line[1], line[2], line[3]) 76 """Try to find the Process object for the given pid. 78 create a syntheitc Process object, add that to the list, and return that. 79 That can only happen after the process has died, and we just missed our 89 result = Process(uid, pid, None, None) 107 for process in self._processes: 108 print process
|
| /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/ |
| IpSec.h | 58 The EFI_IPSEC_PROCESS process routine handles each inbound or outbound packet.
104 EFI_IPSEC_PROCESS Process; ///< Handle the IPsec message.
111 Process() in EFI_IPSEC_PROTOCOL, this interface has the capability to process
114 The EFI_IPSEC2_PROCESS process routine handles each inbound or outbound packet.
|
| /external/google-breakpad/src/common/ |
| stabs_reader.cc | 93 bool StabsReader::Process() { 174 // Process the body of the compilation unit, up to the next N_SO.
|
| /external/v8/src/heap/ |
| array-buffer-tracker.cc | 39 void LocalArrayBufferTracker::Process(Callback callback) { 113 tracker->Process(
|
| /external/webrtc/webrtc/modules/audio_coding/neteq/ |
| normal.cc | 27 int Normal::Process(const int16_t* input, 33 // Nothing to process. 64 expand_->Process(&expanded);
|
| /external/webrtc/webrtc/modules/audio_processing/ |
| high_pass_filter_impl.cc | 37 void Process(int16_t* data, size_t length) { 114 filters_[i]->Process(audio->split_bands(i)[kBand0To8kHz],
|
| /external/webrtc/webrtc/modules/remote_bitrate_estimator/ |
| remote_estimator_proxy_unittest.cc | 43 void Process() { 46 proxy_.Process(); 82 Process(); 115 Process(); 165 Process(); 186 Process(); 205 Process(); 226 Process(); 243 Process(); 269 Process(); [all...] |
| /external/webrtc/webrtc/modules/rtp_rtcp/source/ |
| bitrate.cc | 75 void Bitrate::Process() {
|
| /frameworks/base/tests/permission/src/com/android/framework/permission/tests/ |
| VibratorServicePermissionTest.java | 24 import android.os.Process; 54 mVibratorService.vibrate(Process.myUid(), null, effect, AudioManager.STREAM_ALARM,
|
| /frameworks/base/tools/aapt2/link/ |
| XmlCompatVersioner.cpp | 130 std::vector<std::unique_ptr<xml::XmlResource>> XmlCompatVersioner::Process(
|
| /frameworks/support/media/src/androidTest/java/androidx/media/ |
| SessionToken2Test.java | 24 import android.os.Process; 55 assertEquals(Process.myUid(), token.getUid()); 66 assertEquals(Process.myUid(), token.getUid());
|
| /packages/apps/Launcher3/src/com/android/launcher3/util/ |
| ConfigMonitor.java | 28 * restarts the process in case changes which affect the device profile occur. 50 android.os.Process.killProcess(android.os.Process.myPid());
|
| /prebuilts/go/darwin-x86/src/os/ |
| exec.go | 16 // Process stores the information about a process created by StartProcess. 17 type Process struct { 20 isdone uint32 // process has been successfully waited on, non zero if true 24 func newProcess(pid int, handle uintptr) *Process { 25 p := &Process{Pid: pid, handle: handle} 26 runtime.SetFinalizer(p, (*Process).Release) 30 func (p *Process) setDone() { 34 func (p *Process) done() bool { 38 // ProcAttr holds the attributes that will be applied to a new process [all...] |
| /prebuilts/go/linux-x86/src/os/ |
| exec.go | 16 // Process stores the information about a process created by StartProcess. 17 type Process struct { 20 isdone uint32 // process has been successfully waited on, non zero if true 24 func newProcess(pid int, handle uintptr) *Process { 25 p := &Process{Pid: pid, handle: handle} 26 runtime.SetFinalizer(p, (*Process).Release) 30 func (p *Process) setDone() { 34 func (p *Process) done() bool { 38 // ProcAttr holds the attributes that will be applied to a new process [all...] |