Searched refs:process (Results 151 - 175 of 180) sorted by relevance

12345678

/frameworks/av/services/audioflinger/
H A DEffects.h34 // in the effect library. It prevents concurrent calls to process() and command() functions
62 void process();
140 mutable Mutex mLock; // mutex for process, commands and handles list protection
154 uint32_t mDisableWaitCnt; // current process() calls count during disable period.
241 // order corresponding in the effect process order. When attached to a track (session ID != 0),
253 // minimum duration during which we force calling effect process when last track on
H A DFastMixer.cpp233 // process removed tracks first to avoid running out of track names
252 // now process added tracks
284 // finally process (potentially) modified tracks; these use the same slot
410 // process() is CPU-bound
411 mMixer->process(pts);
H A DEffects.cpp70 // mDisableWaitCnt is set by process() and updateState() and not used before then
170 // Prevent calls to process() and other functions on effect interface from now on.
172 // this object is released which can happen after next process is called.
249 // mDisableWaitCnt is forced to 1 by process() when the engine indicates the end of the
261 void AudioFlinger::EffectModule::process() function in class:android::AudioFlinger::EffectModule
280 int ret = (*mEffectInterface)->process(mEffectInterface,
336 // TODO: handle configuration of effects replacing track process
1225 // particular client process: no risk to block the whole media server process or mixer
1440 // never process effect
[all...]
H A DBufferProviders.cpp168 // process() function is called directly (see DownmixerBufferProvider::getNextBuffer())
243 status_t res = (*mDownmixHandle)->process(mDownmixHandle,
/frameworks/av/services/audioflinger/tests/
H A Dtest-mixer.cpp299 // pump the mixer to process data.
310 mixer->process(AudioBufferProvider::kInvalidPTS);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DCameraStreamer.java223 copyShader.process(targetTex,
347 copyShader.process(clientTex,
385 getCopyShader().process(mPreviewTexture,
625 transferShader.process(clientTex,
H A DImageShader.java247 shader.process(texture, target, width, height);
250 public void process(FrameImage2D input, FrameImage2D output) { method in class:ImageShader
277 public void process(TextureSource texture, RenderTarget target, int width, int height) { method in class:ImageShader
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraMetadataNative.java248 private static String translateProcessToLocationProvider(final String process) { argument
249 if (process == null) {
252 switch(process) {
820 Log.w(TAG, "setGpsLocation - No process method, Location is not from a GPS or NETWORK" +
/frameworks/base/core/java/android/app/
H A DIActivityManager.java304 // Get memory information about the calling process.
310 // Turn on/off profiling in a particular process.
311 public boolean profileControl(String process, int userId, boolean start, argument
364 // Cause the specified process to dump the specified heap.
365 public boolean dumpHeap(String process, int userId, boolean managed, String path, argument
515 public boolean setProcessMemoryTrimLevel(String process, int uid, int level) argument
H A DActivityManagerNative.java1538 String process = data.readString();
1544 boolean res = profileControl(process, userId, start, profilerInfo, profileType);
1831 String process = data.readString();
1837 boolean res = dumpHeap(process, userId, managed, path, fd);
2578 String process = data.readString();
2581 boolean res = setProcessMemoryTrimLevel(process, userId, level);
4536 public boolean profileControl(String process, int userId, boolean start, argument
4542 data.writeString(process);
4904 public boolean dumpHeap(String process, int userId, boolean managed, argument
4909 data.writeString(process);
5960 setProcessMemoryTrimLevel(String process, int userId, int level) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP_s.s31 ; * The motion vector padding process is specified in subclause 7.6.1.6 of
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP_s.s31 ; * The motion vector padding process is specified in subclause 7.6.1.6 of
/frameworks/base/media/jni/soundpool/
H A DSoundPool.cpp823 channel->process(event, info, (unsigned long)user & 1);
826 void SoundChannel::process(int event, void *info, unsigned long toggle) function in class:android::SoundChannel
828 //ALOGV("process(%d)", mChannelID);
838 ALOGV("process wrong toggle %p channel %d", this, mChannelID);
847 // ALOGV("SoundChannel::process event %d", event);
887 ALOGV("process %p channel %d event %s",
894 ALOGV("process %p channel %d NEW_IAUDIOTRACK", this, mChannelID);
896 ALOGW("SoundChannel::process unexpected event %d", event);
1028 // callback thread to exit which may need to execute process() and acquire the mLock.
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java316 // How long we wait for a launched process to attach to the activity manager
320 // How long we wait for a launched process to attach to the activity manager
321 // before we decide it's never going to come up for real, when the process was
329 // The minimum amount of time between successive GC requests for a process.
332 // The minimum amount of time between successive PSS requests for a process.
335 // The minimum amount of time between successive PSS requests for a process
540 * Counter for assigning isolated process uids, to avoid frequently reusing the
546 * The currently running heavy-weight process, if any.
556 * Information about a process that is currently marked as bad.
610 * List of persistent applications that are in the process
3653 setProcessMemoryTrimLevel(String process, int userId, int level) argument
12125 logStrictModeViolationToDropBox( ProcessRecord process, StrictMode.ViolationInfo info) argument
12328 appendDropBoxProcessHeaders(ProcessRecord process, String processName, StringBuilder sb) argument
12367 processClass(ProcessRecord process) argument
12388 addErrorToDropBox(String eventType, ProcessRecord process, String processName, ActivityRecord activity, ActivityRecord parent, String subject, final String report, final File logFile, final ApplicationErrorReport.CrashInfo crashInfo) argument
19456 profileControl(String process, int userId, boolean start, ProfilerInfo profilerInfo, int profileType) argument
19521 findProcessLocked(String process, int userId, String callName) argument
19554 dumpHeap(String process, int userId, boolean managed, String path, ParcelFileDescriptor fd) argument
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DEffectEqualizer.cpp621 pContext->adapter.process(inBuffer->raw, outBuffer->raw, outBuffer->frameCount);
/frameworks/base/services/core/java/com/android/server/notification/
H A DRankingHelper.java113 RankingReconsideration recon = extractor.process(r);
H A DValidateNotificationPeople.java115 public RankingReconsideration process(NotificationRecord record) { method in class:ValidateNotificationPeople
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
H A DEffectReverb.cpp237 // force reloading preset at first call to process()
270 // Allocate memory for reverb process (*2 is for STEREO)
396 // process()
404 // frameCount: Frames to process
413 int process( LVM_INT16 *pIn, function in namespace:android::__anon237
427 ALOGV("\tLVREV_ERROR : process invalid PCM format");
435 ALOGV("\tLVREV_ERROR : process failed to allocate memory for temporary buffers ");
478 LVM_ERROR_CHECK(LvmStatus, "LVREV_Process", "process")
545 } /* end process */
757 InstParams.SourceFormat = LVM_STEREO; // Max format, could be mono during process
[all...]
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java728 // sRendererDisabled will be set. In addition, the system process
732 // can be used by code on the system process to escape that and enable
4281 mTrackball.process(event);
4284 mJoystick.process(event);
4288 mTouchNavigation.process(event);
4292 mKeyboard.process((KeyEvent)q.mEvent);
4328 public void process(MotionEvent event) { method in class:ViewRootImpl.SyntheticTrackballHandler
4646 public void process(MotionEvent event) { method in class:ViewRootImpl.SyntheticJoystickHandler
4832 public void process(MotionEvent event) { method in class:ViewRootImpl.SyntheticTouchNavigationHandler
5133 public void process(KeyEven method in class:ViewRootImpl.SyntheticKeyboardHandler
[all...]
/frameworks/base/docs/html/training/
H A Dtraining_toc.cs469 "How to load and process bitmaps while keeping your user interface
478 <li><a href="<?cs var:toroot ?>training/displaying-bitmaps/process-bitmap.html">
/frameworks/native/services/sensorservice/
H A DSensorService.cpp525 fusion.process(event[i]);
538 if (si->process(&out, event[i])) {
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c38 static list_elem_t *gCurLib; // current library in enumeration process
39 static list_elem_t *gCurEffect; // current effect in enumeration process
40 static uint32_t gCurEffectIdx; // current effect index in enumeration process
94 ret = (*fx->subItfe)->process(fx->subItfe, inBuffer, outBuffer);
/frameworks/native/libs/binder/
H A DIPCThreadState.cpp334 sp<ProcessState> IPCThreadState::process() function in class:android::IPCThreadState
453 // When we've cleared the incoming command queue, process any pending derefs
501 // needed and it is not the main process thread.
909 tr.target.ptr = 0; /* Don't pass uninitialized stack data to a remote process */
1054 // want to run in that state in this process. The driver set our
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecLocalDeviceTv.java128 // Message buffer used to buffer selected messages to process later. <Active Source>
136 // process any CEC commands that arrived before the input is added.
491 ActiveSourceHandler.create(this, null).process(activeSource, info.getDeviceType());
1474 * Launch routing control process.
1611 // HotplugDetectionAction will be reinstated during the wake up process.
/frameworks/base/tools/aapt2/
H A DMain.cpp276 // The phase to process.
495 if (!png.process(item.source, in, &outBuffer, {}, &err)) {

Completed in 592 milliseconds

12345678