Searched refs:process (Results 1 - 25 of 131) sorted by path

123456

/frameworks/av/include/media/
H A DSoundPool.h145 void process(int event, void *info, unsigned long toggle);
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c33 static list_elem_t *gCurLib; // current library in enumeration process
34 static list_elem_t *gCurEffect; // current effect in enumeration process
35 static uint32_t gCurEffectIdx; // current effect index in enumeration process
83 ret = (*fx->subItfe)->process(fx->subItfe, inBuffer, outBuffer);
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
H A DEffectReverb.cpp259 // force reloading preset at first call to process()
292 // Allocate memory for reverb process (*2 is for STEREO)
418 // process()
426 // frameCount: Frames to process
435 int process( LVM_INT16 *pIn, function in namespace:android::__anon464
449 ALOGV("\tLVREV_ERROR : process invalid PCM format");
457 ALOGV("\tLVREV_ERROR : process failed to allocate memory for temporary buffers ");
500 LVM_ERROR_CHECK(LvmStatus, "LVREV_Process", "process")
567 } /* end process */
780 InstParams.SourceFormat = LVM_STEREO; // Max format, could be mono during process
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DAudioBiquadFilter.cpp65 void AudioBiquadFilter::process(const audio_sample_t in[], audio_sample_t out[], function in class:android::AudioBiquadFilter
H A DAudioBiquadFilter.h77 // frameCount Number of multi-channel samples to process.
78 void process(const audio_sample_t in[], audio_sample_t out[],
95 // the process() method.
111 // In the process of smooth transition to bypass state.
113 // In the process of smooth transition to normal (enabled) state.
H A DAudioEqualizer.cpp225 void AudioEqualizer::process(const audio_sample_t * pIn, function in class:android::AudioEqualizer
228 // ALOGV("AudioEqualizer::process(frameCount=%d)", frameCount);
229 mpLowShelf->process(pIn, pOut, frameCount);
231 mpPeakingFilters[i].process(pIn, pOut, frameCount);
233 mpHighShelf->process(pIn, pOut, frameCount);
H A DAudioEqualizer.h184 // frameCount Number of frames to produce on each call to process().
185 void process(const audio_sample_t * pIn, audio_sample_t * pOut,
H A DAudioFormatAdapter.h32 // void process(const audio_sample_t * pIn,
39 // calling its process() function directly, work with the process() function of
44 // bufSize The maximum number of samples (single channel) to process on a
47 // overhead, resulting from multiple calls to the underlying process()
48 // per a single call to this class's process().
73 // numSamples The number of multi-channel samples to process.
74 void process(const void * pIn, void * pOut, uint32_t numSamples) { function in class:android::AudioFormatAdapter
80 mpProcessor->process(
85 mpProcessor->process(
[all...]
H A DAudioPeakingFilter.h104 void process(const audio_sample_t in[], audio_sample_t out[], function in class:android::AudioPeakingFilter
105 int frameCount) { mBiquad.process(in, out, frameCount); }
H A DAudioShelvingFilter.h98 void process(const audio_sample_t in[], audio_sample_t out[], function in class:android::AudioShelvingFilter
99 int frameCount) { mBiquad.process(in, out, frameCount); }
H A DEffectEqualizer.cpp639 pContext->adapter.process(inBuffer->raw, outBuffer->raw, outBuffer->frameCount);
/frameworks/av/media/libmedia/
H A DSoundPool.cpp689 channel->process(event, info, (unsigned long)user & 1);
692 void SoundChannel::process(int event, void *info, unsigned long toggle) function in class:android::SoundChannel
694 //ALOGV("process(%d)", mChannelID);
704 ALOGV("process wrong toggle %p channel %d", this, mChannelID);
713 // ALOGV("SoundChannel::process event %d", event);
752 ALOGV("process %p channel %d EVENT_UNDERRUN", this, mChannelID);
886 // callback thread to exit which may need to execute process() and acquire the mLock.
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP_s.s17 ; * 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.s17 ; * The motion vector padding process is specified in subclause 7.6.1.6 of
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp2636 // during mixing and effect process as the audio buffers could be deleted
2652 // only process effects if we're going to write
2858 mAudioMixer->process(pts);
2945 // process fast tracks
3015 // indicate to client process that the track was disabled because of underrun;
3294 // indicate to client process that the track was disabled because of underrun;
4002 mAudioMixer->process(AudioBufferProvider::kInvalidPTS);
4690 // do not reset the track if it is still in the process of being stopped or paused.
6754 // stereo to mono post process as the resampler always outputs stereo.
7497 // that can only be created by audio policy manager (running in same process)
8345 void AudioFlinger::EffectModule::process() function in class:android::AudioFlinger::EffectModule
[all...]
H A DAudioFlinger.h615 // integrity of the chains during the process.
618 // unlock effect chains after process
1513 // return true if the caller should then do it's part of the stopping process
1602 // in the effect library. It prevents concurrent calls to process() and command() functions
1630 void process();
1702 mutable Mutex mLock; // mutex for process, commands and handles list protection
1716 uint32_t mDisableWaitCnt; // current process() calls count during disable period.
1799 // in the effect process order. When attached to a track (session ID != 0), it also provide it's own
1811 // minimum duration during which we force calling effect process when last track on
H A DAudioMixer.cpp70 res = (*mDownmixHandle)->process(mDownmixHandle,
290 // process() function is called directly (see DownmixerBufferProvider::getNextBuffer())
619 void AudioMixer::process(int64_t pts) function in class:android::AudioMixer
736 // track hooks for subsequent mixer process
1052 // process by group of tracks with same output buffer to
1118 // process by group of tracks with same output buffer to
1202 // process by group of tracks with same output buffer
1290 ALOGE_IF(((unsigned long)in & 3), "process stereo track: input buffer alignment pb: buffer %p track %d, channels %d, needs %08x",
1298 // we process only one track.
H A DAudioMixer.h106 void process(int64_t pts);
H A DFastMixer.cpp256 // process removed tracks first to avoid running out of track names
275 // now process added tracks
304 // finally process modified tracks; these use the same slot
346 // only process state change once
408 // process() is CPU-bound
409 mixer->process(pts);
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java706 String process = null;
723 process = nextArgRequired();
734 process = nextArg();
736 // Compatibility with old syntax: process is specified first.
737 process = cmd;
742 throw new IllegalArgumentException("Profile command " + process + " not valid");
778 if (!mAm.profileControl(process, userId, start, profileFile, fd, profileType)) {
780 throw new AndroidException("PROFILE FAILED on process " + process);
808 String process
[all...]
/frameworks/base/core/java/android/app/
H A DActivityManager.java586 * given task actually has a process it is actively running in; it simply
588 * the system may have killed its process and is only holding on to its
773 * If set, the process of the root activity of the task will be killed
938 * If non-zero, this is the process the service is running in.
948 * The name of the process this service runs in.
950 public String process; field in class:ActivityManager.RunningServiceInfo
953 * Set to true if the service has asked to run as a foreground process.
975 * Number of times the service's process has crashed while the service
1001 * run as a foreground process.
1007 * core system process
[all...]
H A DActivityManagerNative.java1283 String process = data.readString();
1290 boolean res = profileControl(process, userId, start, path, fd, profileType);
1511 String process = data.readString();
1517 boolean res = dumpHeap(process, userId, managed, path, fd);
3451 public boolean profileControl(String process, int userId, boolean start, argument
3457 data.writeString(process);
3731 public boolean dumpHeap(String process, int userId, boolean managed, argument
3736 data.writeString(process);
H A DIActivityManager.java262 // Get memory information about the calling process.
268 // Turn on/off profiling in a particular process.
269 public boolean profileControl(String process, int userId, boolean start, argument
309 // Cause the specified process to dump the specified heap.
310 public boolean dumpHeap(String process, int userId, boolean managed, String path, argument
/frameworks/base/core/java/android/net/http/
H A DAndroidHttpClient.java97 public void process(HttpRequest request, HttpContext context) {
387 public void process(HttpRequest request, HttpContext context) method in class:AndroidHttpClient.CurlLogger
H A DRequest.java223 requestContentProcessor.process(mHttpRequest,
279 // process gzip content encoding

Completed in 2535 milliseconds

123456