Searched refs:configure (Results 1 - 25 of 34) sorted by relevance

12

/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/av/media/libeffects/testlibs/
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 DAudioShelvingFilter.h57 void configure(int nChannels, int sampleRate);
H A DAudioBiquadFilter.h50 void configure(int nChannels, int sampleRate);
H A DAudioEqualizer.h89 void configure(int nChannels, int sampleRate);
H A DAudioPeakingFilter.h50 void configure(int nChannels, int sampleRate);
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);
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 DAudioBiquadFilter.cpp29 configure(nChannels, sampleRate);
33 void AudioBiquadFilter::configure(int nChannels, int sampleRate) { function in class:android::AudioBiquadFilter
H A DEffectEqualizer.cpp267 pContext->pEqualizer->configure(channelCount,
270 pContext->adapter.configure(*pContext->pEqualizer, channelCount,
/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/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.h33 void configure(const sp<AMessage> &format);
H A DNuPlayerDecoder.cpp41 void NuPlayer::Decoder::configure(const sp<AMessage> &format) { function in class:android::NuPlayer::Decoder
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DTelephonyUtilsTest.java71 assertTrue(rm.configure(1, 500, 10));
96 assertTrue(rm.configure(3, 1000, 0));
118 assertTrue(rm.configure("101"));
132 assertTrue(rm.configure("1000,2000,3000,max_retries=infinite"));
156 assertTrue(rm.configure(
189 assertTrue(rm.configure("1000, 2000, 3000"));
/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/media/jni/
H A Dandroid_media_MediaCodec.h44 status_t configure(
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/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/services/input/
H A DInputReader.h528 void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes);
644 void configure(InputDevice* device);
675 void configure(InputDevice* device);
876 void configure(InputDevice* device, size_t slotCount, bool usingSlotsProtocol);
902 * - configure with 0 changes
924 virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes);
1010 virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes);
1078 virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes);
1143 virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes);
1716 virtual void configure(nsecs_
[all...]
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/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/include/media/stagefright/
H A DMediaCodec.h53 status_t configure(
/frameworks/base/packages/VpnDialogs/src/com/android/vpndialogs/
H A DManageDialog.java92 mAlertParams.mPositiveButtonText = getText(R.string.configure);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaDataConnectionTracker.java720 if (!rm.configure(retryConfig)) {
721 if (!rm.configure(DEFAULT_DATA_RETRY_CONFIG)) {
723 log("Could not configure using DEFAULT_DATA_RETRY_CONFIG="
725 rm.configure(20, 2000, 1000);

Completed in 658 milliseconds

12