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

/frameworks/base/core/java/android/appwidget/
H A DAppWidgetProviderInfo.java76 * The activity to launch that will configure the AppWidget.
78 * <p>This class name of field corresponds to the <code>android:configure</code> attribute in
82 public ComponentName configure; field in class:AppWidgetProviderInfo
129 this.configure = new ComponentName(in);
147 if (this.configure != null) {
149 this.configure.writeToParcel(out, flags);
/frameworks/base/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.cpp48 configure(nChannels, sampleRate);
52 void AudioPeakingFilter::configure(int nChannels, int sampleRate) { function in class:android::AudioPeakingFilter
55 mBiquad.configure(nChannels, sampleRate);
H A DAudioShelvingFilter.cpp55 configure(nChannels, sampleRate);
58 void AudioShelvingFilter::configure(int nChannels, int sampleRate) { function in class:android::AudioShelvingFilter
61 mBiquad.configure(nChannels, sampleRate);
H A DAudioBiquadFilter.cpp31 configure(nChannels, sampleRate);
35 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 LOGV("AudioEqualizer::configure(nChannels=%d, sampleRate=%d)", nChannels,
61 mpLowShelf->configure(nChannels, sampleRate);
63 mpPeakingFilters[i].configure(nChannels, sampleRate);
65 mpHighShelf->configure(nChannels, sampleRate);
/frameworks/base/telephony/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
127 public boolean configure(int maxRetryCount, int retryTime, int randomizationTime) { method in class:RetryManager
130 if (DBG) log("configure: " + maxRetryCount + ", " + retryTime + "," + randomizationTime);
159 public boolean configure(String configStr) { method in class:RetryManager
164 if (DBG) log("configure: '" + configStr + "'");
169 if (DBG) log("configure: not empty");
177 if (DBG) log("configure: strArray[" + i + "]='" + strArray[i] + "'");
181 if (DBG) log("configure
[all...]
/frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
H A DAppWidgetHostActivity.java81 void configureAppWidget(int requestCode, int appWidgetId, ComponentName configure) { argument
83 intent.setComponent(configure);
99 if (appWidget.configure != null) {
100 // configure the AppWidget if we should
101 configureAppWidget(CONFIGURE_APPWIDGET_REQUEST, appWidgetId, appWidget.configure);
/frameworks/base/libs/ui/
H A DInputReader.cpp251 device->configure();
681 void InputDevice::configure() { function in class:android::InputDevice
691 mapper->configure();
789 void InputMapper::configure() { function in class:android::InputMapper
1341 void TouchInputMapper::configure() { function in class:android::TouchInputMapper
1342 InputMapper::configure();
/frameworks/base/libs/ui/tests/
H A DInputReader_test.cpp685 << "Expected configure() to have been called.";
733 virtual void configure() { function in class:android::FakeInputMapper
1151 mDevice->configure();
1207 mDevice->configure();
1315 mDevice->configure();
/frameworks/base/services/audioflinger/
H A DAudioFlinger.cpp5463 status_t AudioFlinger::EffectModule::configure() function in class:android::AudioFlinger::EffectModule
5518 LOGV("configure() %p thread %p buffer %p framecount %d",
6302 mEffects[idx_insert-1]->configure();
6312 effect->configure();
6331 mEffects[i - 1]->configure();

Completed in 640 milliseconds