| /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/ |
| remb.cc | 49 bitrate_controller_->Process(); 56 int RembBweSender::Process() { 57 return bitrate_controller_->Process(); 94 estimator_->Process();
|
| /external/webrtc/webrtc/modules/video_coding/ |
| video_sender.cc | 55 int32_t VideoSender::Process() {
|
| /external/webrtc/webrtc/test/channel_transport/ |
| udp_socket_manager_posix.cc | 237 bool UdpSocketManagerPosixImpl::Process() 293 return mgr->Process();
|
| /external/webrtc/webrtc/test/ |
| fake_network_pipe.cc | 153 void FakeNetworkPipe::Process() {
|
| /external/webrtc/webrtc/voice_engine/test/auto_test/ |
| voe_output_test.cc | 56 void Process(int channel, 148 void OutputTest::VoEOutputCheckMediaProcess::Process(int channel,
|
| /frameworks/av/media/libaudioprocessing/ |
| AudioResamplerFirProcess.h | 165 * The Process*() functions compute both the positive half FIR dot product and 174 * Process() calls ProcessBase() with TFUNC = InterpCompute, for interpolated phase. 247 * See Process() for parameter details. 297 void Process(TO* const out, 315 * This sets up the params for the accelerated Process() and ProcessL() 425 Process<CHANNELS, STRIDE>(out, 431 Process<CHANNELS, STRIDE>(out,
|
| AudioResamplerFirProcessNeon.h | 45 // NEON specializations are enabled for Process() and ProcessL() in AudioResamplerFirProcess.h 646 inline void Process<1, 16>(int32_t* const out, 722 inline void Process<2, 16>(int32_t* const out, [all...] |
| /frameworks/base/core/java/android/os/ |
| Vibrator.java | 33 * If your process exits, any vibration you started will stop. 251 vibrate(Process.myUid(), mPackageName, vibe, attributes);
|
| /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
| LocalOnlyHotspotRequestInfoTest.java | 28 import android.os.Process; 136 assertEquals(Process.myPid(), mLOHSRequestInfo.getPid());
|
| /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
| BaseVoicemailProviderTest.java | 25 import android.os.Process; 50 mPackageManager.addPackage(Process.myUid(), mActor.packageName);
|
| /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/ |
| aggressive_dead_code_elim_pass.cpp | 107 // Only process locals 258 // Process all entry point functions 268 Pass::Status AggressiveDCEPass::Process(ir::Module* module) {
|
| local_single_store_elim_pass.cpp | 282 // Do not process if module contains OpGroupDecorate. Additional 288 // Do not process if any disallowed extensions are enabled 293 // Process all entry point functions 309 Pass::Status LocalSingleStoreElimPass::Process(ir::Module* module) {
|
| set_spec_constant_default_value_pass.cpp | 190 Pass::Status SetSpecConstantDefaultValuePass::Process(ir::Module* module) { 216 // Only process 'OpDecorate SpecId' instructions
|
| /test/framework/harnesses/host_controller/ |
| console.py | 73 class NonDaemonizedProcess(multiprocessing.Process): 74 """Process class which is not daemonized.""" 88 Process = NonDaemonizedProcess 92 """Main() for a child process that executes a leased job. 108 """Signal handler for exiting pool process explicitly. 110 Added to resolve orphaned pool process issue. 190 _device_status: SharedDict, shared with process pool. 192 _job_pool: bool, True if Console is created from job pool process 518 p = multiprocessing.Process(
|
| /test/vts/drivers/hal/common/component_loader/ |
| HalDriverLoader.cpp | 244 bool HalDriverLoader::Process(const char* dll_file_name, 269 LOG(ERROR) << "No more job to process; stopping after epoch " << i;
|
| /external/deqp/execserver/ |
| xsWin32TestProcess.cpp | 390 // Process 392 Process::Process (void) 402 Process::~Process (void) 419 void Process::cleanupHandles (void) 492 void Process::start (const char* commandLine, const char* workingDirectory) 503 throw std::runtime_error("Process already running"); 506 // Process finished, clean up old cruft. 534 // Startup info for process [all...] |
| 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;
|
| /cts/tests/tests/externalservice/src/android/externalservice/cts/ |
| ExternalServiceTest.java | 30 import android.os.Process; 146 assertNotEquals(Process.myUid(), id.uid); 147 assertNotEquals(Process.myPid(), id.pid); 203 // Create an external service from this (the test) process. 216 int myUid = Process.myUid(); 217 int myPid = Process.myPid(); 276 assertNotEquals(Process.myUid(), idOne.uid); 277 assertNotEquals(Process.myPid(), idOne.pid);
|
| /cts/tests/tests/os/src/android/os/cts/ |
| BinderTest.java | 33 import android.os.Process; 318 assertEquals(Process.myPid(), Binder.getCallingPid()); 319 assertEquals(Process.myUid(), Binder.getCallingUid());
|
| 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());
|
| /cts/hostsidetests/appsecurity/test-apps/UsePermissionApp23/src/com/android/cts/usepermission/ |
| UsePermissionTest23.java | 59 android.os.Process.killProcess(android.os.Process.myPid());
|
| /cts/tests/tests/content/lib/accountaccess/src/com.android.cts.content/ |
| Utils.java | 16 import android.os.Process; 73 "cmd netpolicy add restrict-background-whitelist " + Process.myUid()); 82 "cmd netpolicy remove restrict-background-whitelist " + Process.myUid());
|
| /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/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"); 458 // include and recursively process the file 459 if (Process(Inc->Id, Inc->FileType)) { 588 // First let the preprocessor process the entire file and call callbacks. 602 Rewrite->Process(PP.getPredefinesFileID(), SrcMgr::C_User); 603 Rewrite->Process(SM.getMainFileID(), SrcMgr::C_User);
|
| /external/dng_sdk/source/ |
| dng_fingerprint.cpp | 257 void dng_md5_printer::Process (const void *data, 339 Process (PADDING, padLen); 343 Process (bits, 8);
|