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

/frameworks/av/media/libstagefright/codecs/mp3dec/
H A DSoftMP3.cpp45 mConfig(new tPVMP3DecoderExternal),
63 delete mConfig;
64 mConfig = NULL;
111 mConfig->equalizerType = flat;
112 mConfig->crcEnabled = false;
117 pvmp3_InitDecoder(mConfig, mDecoderBuf);
235 mConfig->pInputBuffer =
238 mConfig->inputBufferCurrentLength = inHeader->nFilledLen;
239 mConfig->inputBufferMaxLength = 0;
240 mConfig
[all...]
H A DSoftMP3.h54 tPVMP3DecoderExternal *mConfig; member in struct:android::SoftMP3
/frameworks/base/core/java/android/net/
H A DVpnService.java255 private final VpnConfig mConfig = new VpnConfig(); field in class:VpnService.Builder
260 mConfig.user = VpnService.this.getClass().getName();
269 mConfig.session = session;
279 mConfig.configureIntent = intent;
294 mConfig.mtu = mtu;
394 if (mConfig.dnsServers == null) {
395 mConfig.dnsServers = new ArrayList<String>();
397 mConfig.dnsServers.add(address.getHostAddress());
417 if (mConfig.searchDomains == null) {
418 mConfig
[all...]
/frameworks/base/packages/VpnDialogs/src/com/android/vpndialogs/
H A DManageDialog.java46 private VpnConfig mConfig; field in class:ManageDialog
68 mConfig = getIntent().getParcelableExtra("config");
74 if (mConfig.session != null) {
75 ((TextView) view.findViewById(R.id.session)).setText(mConfig.session);
82 if (mConfig.legacy) {
87 ApplicationInfo app = pm.getApplicationInfo(mConfig.user, 0);
91 if (mConfig.configureIntent != null) {
124 mConfig.configureIntent.send();
126 if (mConfig.legacy) {
129 mService.prepareVpn(mConfig
[all...]
/frameworks/av/media/libeffects/visualizer/
H A DEffectVisualizer.cpp59 effect_config_t mConfig; member in struct:VisualizerContext
109 pContext->mConfig = *pConfig;
133 *pConfig = pContext->mConfig;
151 pContext->mConfig.inputCfg.accessMode = EFFECT_BUFFER_ACCESS_READ;
152 pContext->mConfig.inputCfg.channels = AUDIO_CHANNEL_OUT_STEREO;
153 pContext->mConfig.inputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
154 pContext->mConfig.inputCfg.samplingRate = 44100;
155 pContext->mConfig.inputCfg.bufferProvider.getBuffer = NULL;
156 pContext->mConfig.inputCfg.bufferProvider.releaseBuffer = NULL;
157 pContext->mConfig
[all...]
/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiObject.java69 private final Configurator mConfig = Configurator.getInstance(); field in class:UiObject
148 AccessibilityNodeInfo node = findAccessibilityNodeInfo(mConfig.getWaitForSelectorTimeout());
390 AccessibilityNodeInfo node = findAccessibilityNodeInfo(mConfig.getWaitForSelectorTimeout());
396 mConfig.getActionAcknowledgmentTimeout());
430 AccessibilityNodeInfo node = findAccessibilityNodeInfo(mConfig.getWaitForSelectorTimeout());
436 mConfig.getActionAcknowledgmentTimeout());
448 AccessibilityNodeInfo node = findAccessibilityNodeInfo(mConfig.getWaitForSelectorTimeout());
465 AccessibilityNodeInfo node = findAccessibilityNodeInfo(mConfig.getWaitForSelectorTimeout());
482 AccessibilityNodeInfo node = findAccessibilityNodeInfo(mConfig.getWaitForSelectorTimeout());
499 AccessibilityNodeInfo node = findAccessibilityNodeInfo(mConfig
[all...]
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSCompilerDriver.cpp64 mConfig(NULL), mCompiler(), mCompilerRuntime(NULL), mDebugContext(false) {
76 delete mConfig;
157 if (mConfig != NULL) {
160 if (mConfig->getOptimizationLevel() != script_opt_level) {
161 mConfig->setOptimizationLevel(script_opt_level);
166 mConfig = new (std::nothrow) DefaultCompilerConfig();
167 if (mConfig == NULL) {
168 // Return false since mConfig remains NULL and out-of-memory.
171 mConfig->setOptimizationLevel(script_opt_level);
180 ARMCompilerConfig *arm_config = static_cast<ARMCompilerConfig *>(mConfig);
[all...]
/frameworks/compile/libbcc/include/bcc/Renderscript/
H A DRSCompilerDriver.h35 CompilerConfig *mConfig; member in class:bcc::RSCompilerDriver
48 // Setup the compiler config for the given script. Return true if mConfig has
74 mConfig = config;
/frameworks/av/services/audioflinger/
H A DEffects.cpp63 // mConfig is set by configure() and not used before then
224 memset(mConfig.inputCfg.buffer.raw,
226 mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
260 mConfig.inputCfg.buffer.raw == NULL ||
261 mConfig.outputCfg.buffer.raw == NULL) {
268 ditherAndClamp(mConfig.inputCfg.buffer.s32,
269 mConfig.inputCfg.buffer.s32,
270 mConfig.inputCfg.buffer.frameCount/2);
275 &mConfig.inputCfg.buffer,
276 &mConfig
[all...]
H A DEffects.h83 void setInBuffer(int16_t *buffer) { mConfig.inputCfg.buffer.s16 = buffer; }
84 int16_t *inBuffer() { return mConfig.inputCfg.buffer.s16; }
85 void setOutBuffer(int16_t *buffer) { mConfig.outputCfg.buffer.s16 = buffer; }
86 int16_t *outBuffer() { return mConfig.outputCfg.buffer.s16; }
136 effect_config_t mConfig; // input and output audio configuration member in class:EffectModule
/frameworks/base/services/java/com/android/server/connectivity/
H A DVpn.java622 info.key = mLegacyVpnRunner.mConfig.user;
632 return mLegacyVpnRunner.mConfig;
648 private final VpnConfig mConfig; field in class:Vpn.LegacyVpnRunner
683 mConfig = config;
690 // mConfig.interfaze will change to point to OUR
695 mOuterInterface = mConfig.interfaze;
868 mConfig.interfaze = parameters[0].trim();
869 mConfig.addresses = parameters[1].trim();
872 if (mConfig.routes == null || mConfig
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmap_Delegate.java61 private final Config mConfig; field in class:Bitmap_Delegate
178 return mConfig;
186 return mHasAlpha && mConfig != Config.RGB_565;
329 return delegate.mConfig.nativeInt;
512 if (delegate1.mConfig != delegate2.mConfig ||
528 if (delegate1.mConfig == Config.ALPHA_8) {
546 mConfig = config;
/frameworks/native/cmds/flatland/
H A DGLHelper.cpp29 mConfig(0),
64 result = eglChooseConfig(mDisplay, configAttribs, &mConfig, 1,
75 mContext = eglCreateContext(mDisplay, mConfig, EGL_NO_CONTEXT,
129 mConfig = 0;
209 EGLSurface s = eglCreateWindowSurface(mDisplay, mConfig, anw.get(), NULL);
288 EGLSurface s = eglCreateWindowSurface(mDisplay, mConfig, anw.get(), NULL);
H A DGLHelper.h84 EGLConfig mConfig; member in class:android::GLHelper
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRetryManager.java113 private String mConfig; field in class:RetryManager
124 + " config={" + mConfig + "} retryArray={";
184 mConfig = configStr;
/frameworks/base/services/input/
H A DInputReader.cpp359 device->configure(when, &mConfig, 0);
494 mPolicy->getReaderConfiguration(&mConfig);
495 mEventHub->setExcludedDevices(mConfig.excludedDeviceNames);
506 device->configure(now, &mConfig, changes);
710 for (size_t i = 0; i < mConfig.excludedDeviceNames.size(); i++) {
714 dump.append(mConfig.excludedDeviceNames.itemAt(i).string());
718 mConfig.virtualKeyQuietTime * 0.000001f);
722 mConfig.pointerVelocityControlParameters.scale,
723 mConfig.pointerVelocityControlParameters.lowThreshold,
724 mConfig
[all...]
H A DInputReader.h445 InputReaderConfiguration mConfig; member in class:android::InputReader
1193 InputReaderConfiguration mConfig; member in class:android::TouchInputMapper
H A DInputDispatcher.cpp204 policy->getDispatcherConfiguration(&mConfig);
665 mKeyRepeatState.nextRepeatTime = currentTime + mConfig.keyRepeatDelay;
718 mKeyRepeatState.nextRepeatTime = entry->eventTime + mConfig.keyRepeatTimeout;
3231 mConfig.keyRepeatDelay * 0.000001f);
3233 mConfig.keyRepeatTimeout * 0.000001f);
H A DInputDispatcher.h839 InputDispatcherConfiguration mConfig; member in class:android::InputDispatcher
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp146 mResources(NULL), mConfig(new ResTable_config),
151 memset(mConfig, 0, sizeof(ResTable_config));
159 delete mConfig;
460 *mConfig = config;
484 *outConfig = *mConfig;
736 mConfig->language[0] = 0;
737 mConfig->language[1] = 0;
738 mConfig->country[0] = 0;
739 mConfig->country[1] = 0;
741 mConfig
[all...]
/frameworks/base/services/input/tests/
H A DInputDispatcher_test.cpp38 InputDispatcherConfiguration mConfig; member in class:android::FakeInputDispatcherPolicy
61 *outConfig = mConfig;
H A DInputReader_test.cpp128 InputReaderConfiguration mConfig; member in class:android::FakeInputReaderPolicy
156 mConfig.setDisplayInfo(false /*external*/, v);
157 mConfig.setDisplayInfo(true /*external*/, v);
161 mConfig.excludedDeviceNames.push(deviceName);
169 return &mConfig;
178 *outConfig = mConfig;
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DIWindowManagerImpl.java49 private final Configuration mConfig; field in class:IWindowManagerImpl
57 mConfig = config;
/frameworks/base/include/androidfw/
H A DAssetManager.h356 ResTable_config* mConfig; member in class:android::AssetManager
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContext.java99 private final Configuration mConfig; field in class:BridgeContext
141 mConfig = config;
162 mConfig,
207 return mConfig;

Completed in 742 milliseconds