Searched defs:configure (Results 1 - 16 of 16) sorted by relevance

/frameworks/av/media/libeffects/testlibs/
H A DAudioFormatAdapter.h59 void configure(T & processor, int nChannels, uint8_t pcmFormat, function in class:android::AudioFormatAdapter
70 // configure().
72 // configure(). May be the same as pIn.
123 // pIn The input buffer with the format designated in configure().
H A DAudioPeakingFilter.cpp46 configure(nChannels, sampleRate);
50 void AudioPeakingFilter::configure(int nChannels, int sampleRate) { function in class:android::AudioPeakingFilter
53 mBiquad.configure(nChannels, sampleRate);
H A DAudioShelvingFilter.cpp53 configure(nChannels, sampleRate);
56 void AudioShelvingFilter::configure(int nChannels, int sampleRate) { function in class:android::AudioShelvingFilter
59 mBiquad.configure(nChannels, sampleRate);
H A DAudioBiquadFilter.cpp29 configure(nChannels, sampleRate);
33 void AudioBiquadFilter::configure(int nChannels, int sampleRate) { function in class:android::AudioBiquadFilter
H A DAudioEqualizer.cpp58 void AudioEqualizer::configure(int nChannels, int sampleRate) { function in class:android::AudioEqualizer
59 ALOGV("AudioEqualizer::configure(nChannels=%d, sampleRate=%d)", nChannels,
61 mpLowShelf->configure(nChannels, sampleRate);
63 mpPeakingFilters[i].configure(nChannels, sampleRate);
65 mpHighShelf->configure(nChannels, sampleRate);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.cpp41 void NuPlayer::Decoder::configure(const sp<AMessage> &format) { function in class:android::NuPlayer::Decoder
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetProviderInfo.java134 * The activity to launch that will configure the AppWidget.
136 * <p>This class name of field corresponds to the <code>android:configure</code> attribute in
140 public ComponentName configure; field in class:AppWidgetProviderInfo
216 this.configure = new ComponentName(in);
240 if (this.configure != null) {
242 this.configure.writeToParcel(out, flags);
265 that.configure = this.configure == null ? null : this.configure.clone();
/frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
H A DAppWidgetHostActivity.java89 void configureAppWidget(int requestCode, int appWidgetId, ComponentName configure) { argument
91 intent.setComponent(configure);
107 if (appWidget.configure != null) {
108 // configure the AppWidget if we should
109 configureAppWidget(CONFIGURE_APPWIDGET_REQUEST, appWidgetId, appWidget.configure);
/frameworks/base/core/tests/coretests/src/android/net/http/
H A DAbstractProxyTest.java122 proxyConfig.configure(server, httpProxyClient, request);
167 proxyConfig.configure(server, httpProxyClient, request);
198 proxyConfig.configure(server, client, request);
230 ProxyConfig.REQUEST_PARAMETER.configure(server, httpProxyClient, request);
241 @Override void configure(MockWebServer server, HttpClient client, HttpRequest request) {
247 @Override void configure(MockWebServer server, HttpClient client, HttpRequest request) {
253 @Override void configure(MockWebServer server, HttpClient client, HttpRequest request) {
259 @Override void configure(MockWebServer server, HttpClient client, HttpRequest request) {
265 @Override void configure(MockWebServer server, HttpClient client, HttpRequest request) {
271 abstract void configure(MockWebServe method in class:AbstractProxyTest.ProxyConfig
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRetryManager.java28 * retry timeouts. After creating a RetryManager the configure
30 * may be initialized using configure with three integer parameters
31 * The other configure method allows a series to be declared using
139 public boolean configure(int maxRetryCount, int retryTime, int randomizationTime) { method in class:RetryManager
142 if (VDBG) log("configure: " + maxRetryCount + ", " + retryTime + "," + randomizationTime);
171 public boolean configure(String configStr) { method in class:RetryManager
176 if (VDBG) log("configure: '" + configStr + "'");
182 if (VDBG) log("configure: not empty");
190 if (VDBG) log("configure: strArray[" + i + "]='" + strArray[i] + "'");
194 if (VDBG) log("configure
[all...]
/frameworks/base/media/java/android/media/
H A DMediaCodec.java32 * codec.configure(format, ...);
78 * If a video surface has been provided in the call to {@link #configure},
96 * Codec specific data included in the format passed to {@link #configure}
115 * for this a full stop(), configure(), start() cycle is necessary.
233 * @param flags Specify {@link #CONFIGURE_FLAG_ENCODE} to configure the
236 public void configure( method in class:MediaCodec
323 * {@link #configure}
496 * If a surface has been specified in a previous call to {@link #configure}
/frameworks/av/media/libstagefright/
H A DMediaCodec.cpp133 status_t MediaCodec::configure( function in class:android::MediaCodec
670 // part of the format in the call to configure and
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.cpp112 status_t JMediaCodec::configure( function in class:android::JMediaCodec
124 return mCodec->configure(format, mSurfaceTextureClient, crypto, flags);
390 err = codec->configure(format, surfaceTexture, crypto, flags);
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp808 << "Expected configure() to have been called.";
856 virtual void configure(nsecs_t when, function in class:android::FakeInputMapper
1227 mDevice->configure(ARBITRARY_TIME, &config, 0);
1287 mDevice->configure(ARBITRARY_TIME, &config, 0);
1403 mDevice->configure(ARBITRARY_TIME, mFakePolicy->getReaderConfiguration(), 0);
1410 mDevice->configure(ARBITRARY_TIME, mFakePolicy->getReaderConfiguration(),
/frameworks/base/services/input/
H A DInputReader.cpp359 device->configure(when, &mConfig, 0);
506 device->configure(now, &mConfig, changes);
901 void InputDevice::configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) { function in class:android::InputDevice
932 mapper->configure(when, config, changes);
1215 void CursorScrollAccumulator::configure(InputDevice* device) { function in class:android::CursorScrollAccumulator
1254 void TouchButtonAccumulator::configure(InputDevice* device) { function in class:android::TouchButtonAccumulator
1547 void MultiTouchMotionAccumulator::configure(InputDevice* device, function in class:android::MultiTouchMotionAccumulator
1741 void InputMapper::configure(nsecs_t when, function in class:android::InputMapper
1998 void KeyboardInputMapper::configure(nsecs_t when, function in class:android::KeyboardInputMapper
2000 InputMapper::configure(whe
2286 void CursorInputMapper::configure(nsecs_t when, function in class:android::CursorInputMapper
2704 void TouchInputMapper::configure(nsecs_t when, function in class:android::TouchInputMapper
6085 void JoystickInputMapper::configure(nsecs_t when, function in class:android::JoystickInputMapper
[all...]
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp2328 // create fast mixer and configure it initially with just one fast track for our submix
8165 // mConfig is set by configure() and not used before then
8168 // mMaxDisableWaitCnt is set by configure() and not used before then
8402 status_t AudioFlinger::EffectModule::configure() function in class:android::AudioFlinger::EffectModule
8452 ALOGV("configure() %p thread %p buffer %p framecount %d",
9407 mEffects[idx_insert-1]->configure();
9417 effect->configure();
9442 mEffects[i - 1]->configure();

Completed in 596 milliseconds