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

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
unify_const_pass.cpp 105 Pass::Status UnifyConstantPass::Process(ir::Module* module) {
  /cts/tests/tests/security/src/android/security/cts/
IsolatedProcessTest.java 23 import android.os.Process;
40 // No service other than these should be visible to an isolated process
45 // Arbitrary set of services to test accessibility from an isolated process
81 Assert.assertTrue(serviceName + " should not be accessbible from an isolated process",
90 Assert.assertNull(serviceName + " should not be accessible from an isolated process",
96 Assert.assertFalse(Process.isIsolated());
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Pkcs7Sign/
Pkcs7Sign.py 87 parser.add_argument("--signature-size", dest='SignatureSizeStr', type=str, help="specify the signature size for decode process.")
112 Process = subprocess.Popen('%s version' % (OpenSslCommand), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
117 Version = Process.communicate()
118 if Process.returncode <> 0:
120 sys.exit(Process.returncode)
206 Process = subprocess.Popen('%s smime -sign -binary -signer "%s" -outform DER -md sha256 -certfile "%s"' % (OpenSslCommand, args.SignerPrivateCertFileName, args.OtherPublicCertFileName), stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
207 Signature = Process.communicate(input=FullInputFileBuffer)[0]
208 if Process.returncode <> 0:
209 sys.exit(Process.returncode)
275 Process = subprocess.Popen('%s smime -verify -inform DER -content %s -CAfile %s' % (OpenSslCommand, args.O (…)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Rsa2048Sha256Sign/
Rsa2048Sha256Sign.py 95 Process = subprocess.Popen('%s version' % (OpenSslCommand), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
100 Version = Process.communicate()
101 if Process.returncode <> 0:
103 sys.exit(Process.returncode)
151 Process = subprocess.Popen('%s rsa -in "%s" -modulus -noout' % (OpenSslCommand, args.PrivateKeyFileName), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
152 PublicKeyHexString = Process.communicate()[0].split('=')[1].strip()
157 if Process.returncode <> 0:
158 sys.exit(Process.returncode)
177 Process = subprocess.Popen('%s sha256 -sign "%s"' % (OpenSslCommand, args.PrivateKeyFileName), stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
178 Signature = Process.communicate(input=FullInputFileBuffer)[0]
    [all...]
  /external/autotest/client/site_tests/security_ASLR/
security_ASLR.py 30 class Process(object):
31 """Holds information about a process.
33 Stores basic information about a process. This class is a base for
37 _name: String name of process.
38 _service_name: Name of the service corresponding to the process.
39 _parent: String name of process's parent.
54 """Gets pid of process, waiting for it if not found.
57 error.TestFail: corresponding process is not found.
63 # PIDs that have the expected process name and any of the parent
77 # More than one candidate process found - rather than pic
    [all...]
  /external/dng_sdk/source/
dng_opcodes.cpp 472 virtual void Process (uint32 threadIndex,
487 // Process area.
  /external/libbrillo/brillo/
process.h 22 // Manages a process. Can create the process, attach to an existing
23 // process by pid or pid file, and kill the process. Upon destruction
24 // any managed process is killed with SIGKILL. Use Release() to
25 // release the process from management. A given system process may
26 // only be managed by one Process at a time.
27 class BRILLO_EXPORT Process {
29 Process();
    [all...]
  /external/lzma/CPP/7zip/Bundles/SFXSetup/
ExtractEngine.cpp 81 void Process()
95 ((CThreadExtracting *)param)->Process();
  /external/python/cpython2/Lib/multiprocessing/dummy/
__init__.py 36 'Process', 'current_process', 'active_children', 'freeze_support',
95 Process = DummyProcess
  /external/python/cpython2/Lib/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...]
  /external/python/cpython3/Lib/asyncio/
subprocess.py 107 class Process:
126 """Wait until the process exit and return the process return code.
211 return Process(transport, protocol, loop)
226 return Process(transport, protocol, loop)
  /external/python/cpython3/Lib/multiprocessing/dummy/
__init__.py 11 'Process', 'current_process', 'active_children', 'freeze_support',
61 Process = DummyProcess
  /external/v8/src/compiler/
liveness-analyzer.cc 75 block->Process(&working_area, nullptr);
86 block->Process(&working_area, replacer);
99 void LivenessAnalyzerBlock::Process(BitVector* result,
  /external/v8/src/crankshaft/
hydrogen-removable-simulates.cc 19 State* Process(HInstruction* instr, Zone* zone) {
177 void Process(HInstruction* instr, Zone* zone) { }
  /external/webrtc/webrtc/base/
task.cc 99 int new_state = Process(state_);
194 int Task::Process(int state) {
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
remote_estimator_proxy.cc 81 int32_t RemoteEstimatorProxy::Process() {
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/
send_side.cc 81 bitrate_controller_->Process();
114 int FullBweSender::Process() {
115 rbe_->Process();
116 return bitrate_controller_->Process();
  /external/webrtc/webrtc/modules/utility/source/
process_thread_impl.cc 23 // should be made, but Process() should be called directly.
155 // Wake the thread calling ProcessThreadImpl::Process() to update the
187 return static_cast<ProcessThreadImpl*>(obj)->Process();
190 bool ProcessThreadImpl::Process() {
208 m.module->Process();
  /external/webrtc/webrtc/modules/video_coding/test/
vcm_payload_sink_factory.cc 72 return Process() ? 0 : -1;
75 bool Process() {
77 if (vcm_->Process() < 0) {
178 if (!(*it)->Process()) {
  /external/webrtc/webrtc/system_wrappers/source/
event_timer_posix.cc 168 return static_cast<EventTimerPosix*>(obj)->Process();
171 bool EventTimerPosix::Process() {
  /external/webrtc/webrtc/video/
call_stats.cc 110 int32_t CallStats::Process() {
vie_sync_module.cc 104 int32_t ViESyncModule::Process() {
  /frameworks/av/media/libaudioprocessing/
AudioResamplerFirProcessSSE.h 34 // SSEx specializations are enabled for Process() and ProcessL() in AudioResamplerFirProcess.h
180 inline void Process<1, 16>(float* const out,
196 inline void Process<2, 16>(float* const out,
  /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());
  /frameworks/base/services/core/java/com/android/server/security/
KeyChainSystemService.java 25 import android.os.Process;
38 * this was OK because a system app has roughly the same privileges as the system process.
104 idleController.addPowerSaveTempWhitelistApp(Process.myUid(), packageName,

Completed in 1018 milliseconds

1 2 34 5 6 7 8 91011>>