/hardware/qcom/audio/post_proc/ |
bundle.h | 76 effect_config_t config; member in struct:effect_context_s 85 int set_config(effect_context_t *context, effect_config_t *config);
|
/hardware/qcom/display/msm8084/liboverlay/ |
overlayMem.h | 211 struct msmfb_secure_config config; local 212 utils::memset0(config); 213 config.fd = mFd; 214 config.enable = enable; 215 if(!mdp_wrapper::setSecureBuffer(fbFd.getFD(), config)) {
|
/hardware/ti/omap3/omx/system/src/openmax_il/perf/reader/ |
perf_reader.c | 59 PERF_OBJHANDLE __PERF_common_Create(struct PERF_Config *config, 63 struct PERF_Config *config, 330 PERF_Config config; local 342 /* read config file */ 343 PERF_Config_Init(&config); 344 PERF_Config_Read(&config, "replay"); 345 config.mask = 0xFFFFFFFF; 347 /* note config gets modified during Replay */ 348 PERF_Replay(log, &config); 350 PERF_Config_Release(&config); [all...] |
/packages/apps/Contacts/tests/src/com/android/contacts/interactions/ |
ContactInteractionUtilTest.java | 134 Configuration config = res.getConfiguration(); local 135 config.locale = locale; 136 res.updateConfiguration(config, res.getDisplayMetrics());
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/ |
RecycleBitmapPool.java | 85 Bitmap.Config config = bitmap.getConfig(); local 86 if (config != Bitmap.Config.ARGB_8888) {
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/ |
ContactsListFragment.java | 159 Configuration config = getActivity().getResources().getConfiguration(); local 160 int screenLayoutSize = config.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK;
|
/packages/services/Car/libvehiclenetwork/native/ |
VehicleNetworkProtoUtil.cpp | 443 ALOGW("Zoned property 0x%x, config maxSize %d minSize %d", out.prop, maxSize, 459 ALOGW("Zoned property 0x%x, config maxSize %d num Zones %d", out.prop, maxSize, 504 ALOGW("Zoned property 0x%x, config maxSize %d minSize %d", out.prop, maxSize, 520 ALOGW("Zoned property 0x%x, config maxSize %d num Zones %d", out.prop, maxSize, 544 VehiclePropConfig* config = out.add_configs(); local 545 r = toVehiclePropConfig(*inEntry, *config);
|
/packages/services/Mms/src/com/android/mms/service/ |
MmsConfigManager.java | 121 * Find and return the MMS config for a particular subscription id. 123 * @param subId Subscription id of the desired MMS config bundle 124 * @return MMS config bundle for the particular subscription id. This function can return null 125 * if the MMS config cannot be found or if this function is called before the 134 LogUtil.i("mms config for sub " + subId + ": " + mmsConfig); 143 * This loads the MMS config for each active subscription. 145 * MMS config is fetched from CarrierConfigManager and filtered to only include MMS config 151 LogUtil.e(" Failed to load mms config: empty getActiveSubInfoList"); 154 // Load all the config bundles into a new map and then swap it with the real map to avoi 161 PersistableBundle config = configManager.getConfigForSubId(subId); local [all...] |
MmsRequest.java | 80 // MMS config 82 // MMS config overrides that will be applied to mMmsConfig when we eventually load it. 103 // Not yet retrieved from mms config manager. Try getting it. 104 final Bundle config = MmsConfigManager.getInstance().getMmsConfigBySubId(mSubId); local 105 if (config != null) { 106 mMmsConfig = config; 113 config.putString(SmsManager.MMS_CONFIG_USER_AGENT, userAgent); 117 config.putString(SmsManager.MMS_CONFIG_UA_PROF_URL, userAgentProfileUrl); 142 if (!ensureMmsConfigLoaded()) { // Check mms config 143 LogUtil.e(requestId, "mms config is not loaded yet") [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/ |
tkFont.py | 83 # if font config info supplied, apply it 131 return self._call("font", "config", self.name, "-"+option) 133 def config(self, **options): member in class:Font 136 self._call("font", "config", self.name, 140 self._split(self._call("font", "config", self.name)) 143 configure = config 192 print f.config() 212 fb.config(weight=BOLD) 214 w.config(font=fb)
|
/prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/ |
tkFont.py | 83 # if font config info supplied, apply it 131 return self._call("font", "config", self.name, "-"+option) 133 def config(self, **options): member in class:Font 136 self._call("font", "config", self.name, 140 self._split(self._call("font", "config", self.name)) 143 configure = config 192 print f.config() 212 fb.config(weight=BOLD) 214 w.config(font=fb)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
tkFont.py | 83 # if font config info supplied, apply it 131 return self._call("font", "config", self.name, "-"+option) 133 def config(self, **options): member in class:Font 136 self._call("font", "config", self.name, 140 self._split(self._call("font", "config", self.name)) 143 configure = config 192 print f.config() 212 fb.config(weight=BOLD) 214 w.config(font=fb)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
tkFont.py | 83 # if font config info supplied, apply it 131 return self._call("font", "config", self.name, "-"+option) 133 def config(self, **options): member in class:Font 136 self._call("font", "config", self.name, 140 self._split(self._call("font", "config", self.name)) 143 configure = config 192 print f.config() 212 fb.config(weight=BOLD) 214 w.config(font=fb)
|
/sdk/apps/DeviceConfig/src/com/example/android/deviceconfig/ |
MyActivity.java | 60 Configuration config = getResources().getConfiguration(); local 64 String separator = config.orientation == Configuration.ORIENTATION_PORTRAIT ? "\n" : ""; 66 if (config.keyboardHidden == Configuration.KEYBOARDHIDDEN_NO) { 68 } else if (config.keyboardHidden == Configuration.KEYBOARDHIDDEN_YES) { 70 } else if (config.keyboardHidden == Configuration.KEYBOARDHIDDEN_UNDEFINED) { 76 if (config.hardKeyboardHidden == Configuration.HARDKEYBOARDHIDDEN_NO) { 78 } else if (config.hardKeyboardHidden == Configuration.HARDKEYBOARDHIDDEN_YES) { 80 } else if (config.hardKeyboardHidden == Configuration.HARDKEYBOARDHIDDEN_UNDEFINED) { 91 if (config.navigationHidden == Configuration.NAVIGATIONHIDDEN_NO) { 93 } else if (config.navigationHidden == Configuration.NAVIGATIONHIDDEN_YES) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/ |
NdkHelper.java | 161 public static void setLaunchConfigDefaults(ILaunchConfigurationWorkingCopy config) { 162 config.setAttribute(IGDBLaunchConfigurationConstants.ATTR_REMOTE_TCP, true); 163 config.setAttribute(NdkLaunchConstants.ATTR_NDK_GDB, NdkLaunchConstants.DEFAULT_GDB); 164 config.setAttribute(IGDBLaunchConfigurationConstants.ATTR_GDB_INIT, 166 config.setAttribute(IGDBLaunchConfigurationConstants.ATTR_PORT, 168 config.setAttribute(IGDBLaunchConfigurationConstants.ATTR_HOST, "localhost"); //$NON-NLS-1$ 169 config.setAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_STOP_AT_MAIN, false); 170 config.setAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE, 172 config.setAttribute(ICDTLaunchConfigurationConstants.ATTR_PROGRAM_NAME, 175 config.setAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/ |
DebuggerConnector.java | 55 // get the config for the remote launch config. 61 // look for an existing launch config 62 ILaunchConfiguration config = findConfig(manager, configType, projectName, local 65 if (config == null) { 66 // Didn't find a matching config, so we make one. 89 // save the working copy to get the launch config object which we return. 90 config = wc.doSave(); 98 if (config != null) { 99 DebugUITools.launch(config, ILaunchManager.DEBUG_MODE) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
LocaleTest.java | 92 FolderConfiguration config = new FolderConfiguration(); local 93 assertEquals(Locale.ANY, Locale.create(config)); 94 config.setLocaleQualifier(LocaleQualifier.getQualifier("en")); 95 assertEquals(Locale.create("en"), Locale.create(config)); 96 config.setLocaleQualifier(LocaleQualifier.getQualifier("en-rUS")); 97 assertEquals(Locale.create("en-rUS"), Locale.create(config));
|
/system/connectivity/shill/dhcp/ |
dhcp_config_unittest.cc | 128 TestDHCPConfigRefPtr config(new TestDHCPConfig(&control_, 134 config->process_manager_ = &process_manager_; 136 return config; 174 TestDHCPConfigRefPtr config = CreateMockMinijailConfig(kDeviceName); local 179 EXPECT_FALSE(config->Start()); 201 // config ref pointer eases our work in setting up expectations. 225 // Stop the DHCP config while it is calling the failure callback. We 240 // Stop the DHCP config while it is calling the success callback. This
|
/system/connectivity/shill/ |
shill_main.cc | 249 shill::Config config; local 252 &config); local
|
/system/extras/f2fs_utils/ |
f2fs_ioutils.c | 86 struct f2fs_configuration config; variable in typeref:struct:f2fs_configuration 99 if (lseek64(config.fd, (off64_t)offset, SEEK_SET) < 0) 101 ssize_t written = write(config.fd, buf, len); 165 if (config.fd >= 0) { 176 if (config.fd >= 0) {
|
/system/update_engine/payload_generator/ |
payload_signer_unittest.cc | 125 void DoWriteAndLoadPayloadTest(const PayloadGenerationConfig& config) { 127 payload.Init(config); 144 EXPECT_EQ(config.version.major, load_major_version); 152 PayloadGenerationConfig config; local 153 config.version.major = kChromeOSMajorPayloadVersion; 154 DoWriteAndLoadPayloadTest(config); 158 PayloadGenerationConfig config; local 159 config.version.major = kBrilloMajorPayloadVersion; 160 DoWriteAndLoadPayloadTest(config); 213 PayloadGenerationConfig config; local 238 PayloadGenerationConfig config; local [all...] |
/build/core/ |
product.mk | 327 # whitespace placeholder when we record module's dex-preopt config. 329 # Set up dex-preopt config for a module. 331 # $(2) the modules' dex-preopt config 332 define add-product-dex-preopt-module-config 338 # whitespace placeholder when we record module's sanitizer config. 340 # Set up sanitizer config for a module. 342 # $(2) the modules' sanitizer config 343 define add-product-sanitizer-module-config
|
/frameworks/base/core/java/android/security/net/config/ |
XmlConfigSource.java | 1 package android.security.net.config; 77 return "base-config"; 79 return "domain-config"; 83 throw new IllegalArgumentException("Unknown config type: " + configType); 242 // Parse config attributes. Only set values that are present, config inheritence will 256 // Parse the config elements. 284 } else if ("domain-config".equals(tagName)) { 287 "Nested domain-config not allowed in " + getConfigString(configType)); 295 throw new ParserException(parser, "No domain elements in domain-config"); 384 NetworkSecurityConfig config = builder.build(); local [all...] |
/frameworks/base/packages/Osu/src/com/android/hotspot2/ |
WifiNetworkAdapter.java | 50 private PasspointConfig(WifiConfiguration config) throws IOException, SAXException { 51 mWifiConfiguration = config; 53 mMOTree = omaParser.parse(config.getMoTree(), OMAConstants.PPS_URN); 90 for (WifiConfiguration config : wifiManager.getPrivilegedConfiguredNetworks()) { 91 String moTree = config.getMoTree(); 94 mPasspointConfigs.put(config.FQDN, new PasspointConfig(config)); 104 for (PasspointConfig config : mPasspointConfigs.values()) { 105 homeSPs.add(config.getHomeSP()); 111 PasspointConfig config = mPasspointConfigs.get(homeSP.getFQDN()) local 226 WifiConfiguration config = ConfigBuilder.buildConfig(homeSP, local 251 WifiConfiguration config = getWifiConfig(homeSP); local 291 WifiConfiguration config = new WifiConfiguration(); local [all...] |
/packages/services/Car/service/src/com/android/car/hal/ |
PowerHalService.java | 232 VehiclePropConfig config = mProperties.get( local 234 return config != null; 238 VehiclePropConfig config = mProperties.get( local 240 if (config == null) { 243 return (config.getConfigArray(0) & 249 VehiclePropConfig config = mProperties.get( local 251 if (config == null) { 254 return (config.getConfigArray(0) & 261 for (VehiclePropConfig config : mProperties.values()) { 262 if (VehicleHal.isPropertySubscribable(config)) { 289 mProperties.put(config.getProp(), config); local [all...] |