Searched refs:mConfig (Results 1 - 22 of 22) 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);
220 mConfig->pInputBuffer =
223 mConfig->inputBufferCurrentLength = inHeader->nFilledLen;
224 mConfig->inputBufferMaxLength = 0;
225 mConfig
[all...]
H A DSoftMP3.h53 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/compile/libbcc/lib/Renderscript/
H A DRSCompilerDriver.cpp63 RSCompilerDriver::RSCompilerDriver() : mConfig(NULL), mCompiler() {
71 delete mConfig;
152 if (mConfig != NULL) {
155 if (mConfig->getOptimizationLevel() != script_opt_level) {
156 mConfig->setOptimizationLevel(script_opt_level);
161 mConfig = new (std::nothrow) DefaultCompilerConfig();
162 if (mConfig == NULL) {
163 // Return false since mConfig remains NULL and out-of-memory.
166 mConfig->setOptimizationLevel(script_opt_level);
175 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
45 // Setup the compiler config for the given script. Return true if mConfig has
/frameworks/base/services/java/com/android/server/connectivity/
H A DVpn.java601 info.key = mLegacyVpnRunner.mConfig.user;
611 return mLegacyVpnRunner.mConfig;
627 private final VpnConfig mConfig; field in class:Vpn.LegacyVpnRunner
637 mConfig = config;
644 // mConfig.interfaze will change to point to OUR
646 mOuterInterface = mConfig.interfaze;
805 mConfig.interfaze = parameters[0].trim();
806 mConfig.addresses = parameters[1].trim();
809 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
177 return mConfig;
185 return mHasAlpha && mConfig != Config.RGB_565;
324 return delegate.mConfig.nativeInt;
485 if (delegate1.mConfig != delegate2.mConfig ||
501 if (delegate1.mConfig == Config.ALPHA_8) {
519 mConfig = config;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRetryManager.java111 private String mConfig; field in class:RetryManager
120 ", retry=" + mRetryCount + ",\n " + mConfig;
177 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
1188 InputReaderConfiguration mConfig; member in class:android::TouchInputMapper
H A DInputDispatcher.cpp204 policy->getDispatcherConfiguration(&mConfig);
663 mKeyRepeatState.nextRepeatTime = currentTime + mConfig.keyRepeatDelay;
716 mKeyRepeatState.nextRepeatTime = entry->eventTime + mConfig.keyRepeatTimeout;
3229 mConfig.keyRepeatDelay * 0.000001f);
3231 mConfig.keyRepeatTimeout * 0.000001f);
H A DInputDispatcher.h837 InputDispatcherConfiguration mConfig; member in class:android::InputDispatcher
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp134 mResources(NULL), mConfig(new ResTable_config),
139 memset(mConfig, 0, sizeof(ResTable_config));
147 delete mConfig;
448 *mConfig = config;
472 *outConfig = *mConfig;
722 mConfig->language[0] = 0;
723 mConfig->language[1] = 0;
724 mConfig->country[0] = 0;
725 mConfig->country[1] = 0;
727 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/av/services/audioflinger/
H A DAudioFlinger.cpp8165 // mConfig is set by configure() and not used before then
8320 memset(mConfig.inputCfg.buffer.raw,
8322 mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
8350 mConfig.inputCfg.buffer.raw == NULL ||
8351 mConfig.outputCfg.buffer.raw == NULL) {
8358 ditherAndClamp(mConfig.inputCfg.buffer.s32,
8359 mConfig.inputCfg.buffer.s32,
8360 mConfig.inputCfg.buffer.frameCount/2);
8365 &mConfig.inputCfg.buffer,
8366 &mConfig
[all...]
H A DAudioFlinger.h1655 void setInBuffer(int16_t *buffer) { mConfig.inputCfg.buffer.s16 = buffer; }
1656 int16_t *inBuffer() { return mConfig.inputCfg.buffer.s16; }
1657 void setOutBuffer(int16_t *buffer) { mConfig.outputCfg.buffer.s16 = buffer; }
1658 int16_t *outBuffer() { return mConfig.outputCfg.buffer.s16; }
1708 effect_config_t mConfig; // input and output audio configuration
/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 704 milliseconds