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

123

/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DGLThreadManager.java87 ConfigureHolder configure = (ConfigureHolder) msg.obj;
89 mTextureRenderer.configureSurfaces(configure.surfaces);
90 mCaptureCollector = checkNotNull(configure.collector);
91 configure.condition.open();
208 * corresponding sizes to configure.
217 ConfigureHolder configure = new ConfigureHolder(condition, surfaces, collector);
219 Message m = handler.obtainMessage(MSG_NEW_CONFIGURATION, /*arg1*/0, /*arg2*/0, configure);
/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.
124 // 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
/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/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/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/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoderBase.h34 void configure(const sp<AMessage> &format);
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/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
H A DAudioTrackDecoder.java71 mediaCodec.configure(format, null, null, 0);
H A DGpuVideoTrackDecoder.java100 mediaCodec.configure(format, surface, null, 0);
/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/media/jni/
H A Dandroid_media_MediaCodec.h50 status_t configure(
/frameworks/native/services/inputflinger/
H A DInputReader.h562 void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes);
679 void configure(InputDevice* device);
710 void configure(InputDevice* device);
915 void configure(InputDevice* device, size_t slotCount, bool usingSlotsProtocol);
941 * - configure with 0 changes
963 virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes);
1050 virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes);
1119 virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes);
1184 virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes);
1778 virtual void configure(nsecs_
[all...]
/frameworks/av/include/media/stagefright/
H A DMediaCodec.h63 status_t configure(
/frameworks/base/packages/VpnDialogs/src/com/android/vpndialogs/
H A DManageDialog.java89 mAlertParams.mPositiveButtonText = getText(R.string.configure);
/frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
H A DDisplaySinkService.java160 mCodec.configure(format, mSurface, null, 0);
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
H A DDisplaySourceService.java202 codec.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE);

Completed in 2297 milliseconds

123