Searched defs:configure (Results 1 - 22 of 22) 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.
124 // 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 DNuPlayerDecoderBase.cpp63 void NuPlayer::DecoderBase::configure(const sp<AMessage> &format) { function in class:android::NuPlayer::DecoderBase
/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/java/android/appwidget/
H A DAppWidgetProviderInfo.java146 * The activity to launch that will configure the AppWidget.
148 * <p>This class name of field corresponds to the <code>android:configure</code> attribute in
152 public ComponentName configure; field in class:AppWidgetProviderInfo
232 this.configure = new ComponentName(in);
322 if (this.configure != null) {
324 this.configure.writeToParcel(out, flags);
349 that.configure = this.configure == null ? null : this.configure.clone();
/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
144 public boolean configure(int maxRetryCount, int retryTime, int randomizationTime) { method in class:RetryManager
147 if (VDBG) log("configure: " + maxRetryCount + ", " + retryTime + "," + randomizationTime);
178 public boolean configure(String configStr) { method in class:RetryManager
183 if (VDBG) log("configure: '" + configStr + "'");
189 if (VDBG) log("configure: not empty");
197 if (VDBG) log("configure: strArray[" + i + "]='" + strArray[i] + "'");
201 if (VDBG) log("configure
[all...]
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DRequestThreadManager.java334 Log.e(TAG, "Received device exception in configure call: ", e);
350 Log.e(TAG, "Received device exception in configure call: ", e);
666 Log.e(TAG, "Timed out while queueing configure request.");
1032 * @param outputs a {@link java.util.Collection} of outputs to configure.
1034 public void configure(Collection<Pair<Surface, Size>> outputs) { method in class:RequestThreadManager
/frameworks/base/services/core/java/com/android/server/display/
H A DAutomaticBrightnessController.java208 public void configure(boolean enable, float adjustment, boolean dozing) { method in class:AutomaticBrightnessController
/frameworks/av/media/libstagefright/
H A DMediaCodec.cpp252 status_t MediaCodec::configure( function in class:android::MediaCodec
280 // the configure failure is due to wrong state.
282 ALOGE("configure failed with err 0x%08x, resetting...", err);
1050 // part of the format in the call to configure and
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiScanningServiceImpl.java1135 mWifiChangeStateMachine.configure(settings);
1216 public void configure(WifiScanner.WifiChangeSettings settings) { method in class:WifiScanningServiceImpl.WifiChangeStateMachine
/frameworks/av/services/audioflinger/
H A DEffects.cpp66 // mConfig is set by configure() and not used before then
69 // mMaxDisableWaitCnt is set by configure() and not used before then
318 status_t AudioFlinger::EffectModule::configure() function in class:android::AudioFlinger::EffectModule
375 ALOGV("configure() %p thread %p buffer %p framecount %d",
1567 mEffects[idx_insert-1]->configure();
1578 effect->configure();
1603 mEffects[i - 1]->configure();
/frameworks/base/media/java/android/media/
H A DMediaCodec.java47 * codec.configure(format, ...);
111 * If a video surface has been provided in the call to {@link #configure},
129 * Codec specific data included in the format passed to {@link #configure}
147 * is only supported if you configure the codec to decode onto a {@link
165 * for this a full {@link #stop}, {@link #configure configure()}, {@link #start}
200 * the codec is in the Initialized state; {@link #configure} brings it to the
230 * then a {@link #stop}, {@link #configure}, and {@link #start} can be performed to recover.
537 * @param flags Specify {@link #CONFIGURE_FLAG_ENCODE} to configure the
545 public void configure( method in class:MediaCodec
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.cpp227 status_t JMediaCodec::configure( function in class:android::JMediaCodec
240 return mCodec->configure(format, mSurfaceTextureClient, crypto, flags);
860 err = codec->configure(format, bufferProducer, crypto, flags);
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp822 << "Expected configure() to have been called.";
870 virtual void configure(nsecs_t when, function in class:android::FakeInputMapper
1245 mDevice->configure(ARBITRARY_TIME, &config, 0);
1305 mDevice->configure(ARBITRARY_TIME, &config, 0);
1422 mDevice->configure(ARBITRARY_TIME, mFakePolicy->getReaderConfiguration(), 0);
1429 mDevice->configure(ARBITRARY_TIME, mFakePolicy->getReaderConfiguration(),
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/native/services/inputflinger/
H A DInputReader.cpp371 device->configure(when, &mConfig, 0);
518 device->configure(now, &mConfig, changes);
914 void InputDevice::configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) { function in class:android::InputDevice
945 mapper->configure(when, config, changes);
1229 void CursorScrollAccumulator::configure(InputDevice* device) { function in class:android::CursorScrollAccumulator
1268 void TouchButtonAccumulator::configure(InputDevice* device) { function in class:android::TouchButtonAccumulator
1561 void MultiTouchMotionAccumulator::configure(InputDevice* device, function in class:android::MultiTouchMotionAccumulator
1755 void InputMapper::configure(nsecs_t when, function in class:android::InputMapper
2018 void KeyboardInputMapper::configure(nsecs_t when, function in class:android::KeyboardInputMapper
2020 InputMapper::configure(whe
2314 void CursorInputMapper::configure(nsecs_t when, function in class:android::CursorInputMapper
2748 void TouchInputMapper::configure(nsecs_t when, function in class:android::TouchInputMapper
6292 void JoystickInputMapper::configure(nsecs_t when, function in class:android::JoystickInputMapper
[all...]
/frameworks/multidex/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/support/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...

Completed in 1687 milliseconds