/hardware/intel/img/hwcomposer/moorefield_hdmi/ips/tangier/ |
TngDisplayContext.cpp | 116 void *config = pm->getZOrderConfig(); local 117 if (config) { 118 memcpy(&ctx->zorder, config, sizeof(ctx->zorder));
|
/hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/ |
perf_unittest.c | 235 printf("Could not create config file\n"); 267 /* no config file */ 269 test_PERF("no config file"); 331 PERF_Config config; local 333 PERF_Config_Init(&config); 347 PERF_Config_Read(&config, 0); 348 assert(config.mask == 0xFFFFFFFF); 349 assert(config.detailed_debug = 0x1234567A); 350 assert(config.debug = 0xFFFFFFFF); 351 assert(config.buffer_size = 0xFFFFFFFE) [all...] |
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/ |
SequentialOpTest.java | 73 UnaryOperator<Stream<Integer>> config = configs[j]; local 75 Stream<Integer> stream = config.apply(supp.get()); 86 stream = config.apply(supp.get());
|
/packages/apps/Camera2/src/com/android/camera/ |
CaptureModuleUtil.java | 37 Configuration config = context.getResources().getConfiguration(); local 41 config.orientation == Configuration.ORIENTATION_LANDSCAPE) || 43 config.orientation == Configuration.ORIENTATION_PORTRAIT)) {
|
/packages/apps/Camera2/src/com/android/camera/one/config/ |
OneCameraFeatureConfig.java | 17 package com.android.camera.one.config;
|
/packages/apps/CarrierConfig/src/com/android/carrierconfig/ |
DefaultCarrierConfigService.java | 48 * This returns a carrier config bundle appropriate for the given network by reading data from 51 * them. All the matching bundles are flattened to return one carrier config bundle. 55 Log.d(TAG, "Config being fetched"); 62 PersistableBundle config = null; local 73 config = readConfigFromXml(parser, id); 77 // We can return an empty config for unknown networks. 78 config = new PersistableBundle(); 81 // Treat vendor.xml as if it were appended to the carrier config file we read. 85 config.putAll(vendorConfig); 91 return config; 121 PersistableBundle config = new PersistableBundle(); local [all...] |
/packages/apps/Settings/src/com/android/settings/accessibility/ |
ToggleFontSizePreferenceFragment.java | 60 final Configuration config = new Configuration(origConfig); local 61 config.fontScale = mValues[index]; 62 return config;
|
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/ |
config.py | 1 """distutils.command.config 3 Implements the Distutils 'config' command, a (mostly) empty command class 5 applications. The idea is that while every "config" command is different, 6 at least they're all named the same, and users always see "config" in the 24 class config(Command): class in inherits:Command 51 # The three standard command methods: since the "config" command 89 # Utility methods for actual "config" commands. The interfaces are 170 # info. My inclination is to make it up to the real config command to 283 # when implementing a real-world config command!)
|
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/ |
config.py | 1 """distutils.command.config 3 Implements the Distutils 'config' command, a (mostly) empty command class 5 applications. The idea is that while every "config" command is different, 6 at least they're all named the same, and users always see "config" in the 24 class config(Command): class in inherits:Command 51 # The three standard command methods: since the "config" command 89 # Utility methods for actual "config" commands. The interfaces are 170 # info. My inclination is to make it up to the real config command to 283 # when implementing a real-world config command!)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
config.py | 1 """distutils.command.config 3 Implements the Distutils 'config' command, a (mostly) empty command class 5 applications. The idea is that while every "config" command is different, 6 at least they're all named the same, and users always see "config" in the 24 class config(Command): class in inherits:Command 51 # The three standard command methods: since the "config" command 89 # Utility methods for actual "config" commands. The interfaces are 170 # info. My inclination is to make it up to the real config command to 283 # when implementing a real-world config command!)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
config.py | 1 """distutils.command.config 3 Implements the Distutils 'config' command, a (mostly) empty command class 5 applications. The idea is that while every "config" command is different, 6 at least they're all named the same, and users always see "config" in the 24 class config(Command): class in inherits:Command 51 # The three standard command methods: since the "config" command 89 # Utility methods for actual "config" commands. The interfaces are 170 # info. My inclination is to make it up to the real config command to 283 # when implementing a real-world config command!)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/ |
NdkGdbLaunchShortcut.java | 87 // obtain existing native debug config for project 88 ILaunchConfiguration config = AndroidLaunchController.getLaunchConfig(project, local 90 if (config == null) { 94 // Set the ndk gdb specific launch attributes in the config (if necessary) 95 if (!hasNdkAttributes(config)) { 97 config = setNdkDefaults(config, project); 106 DebugUITools.launch(config, mode); 109 private boolean hasNdkAttributes(ILaunchConfiguration config) { 112 boolean isRemote = config.getAttribute(IGDBLaunchConfigurationConstants.ATTR_REMOTE_TCP [all...] |
/system/bt/main/ |
stack_config.c | 38 static config_t *config; variable 53 config = config_new(path); 54 if (!config) { 63 config_free(config); 64 config = NULL; 82 return config_get_string(config, CONFIG_DEFAULT_SECTION, BTSNOOP_LOG_PATH_KEY, "/data/misc/bluedroid/btsnoop_hci.log"); 86 return config_get_bool(config, CONFIG_DEFAULT_SECTION, BTSNOOP_TURNED_ON_KEY, false); 90 return config_get_bool(config, CONFIG_DEFAULT_SECTION, BTSNOOP_SHOULD_SAVE_LAST_KEY, false); 94 return config_get_bool(config, CONFIG_DEFAULT_SECTION, TRACE_CONFIG_ENABLED_KEY, false); 98 return config_get_bool(config, CONFIG_DEFAULT_SECTION, PTS_SECURE_ONLY_MODE, false) [all...] |
/system/connectivity/apmanager/ |
dhcp_server.cc | 79 // Generate dnsmasq config file. 130 string config; local 131 config += "port=0\n"; 132 config += "bind-interfaces\n"; 133 config += "log-dhcp\n"; 140 config += "keep-in-foreground\n"; 142 &config, "dhcp-range=%s,%s\n", address_low.c_str(), address_high.c_str()); 143 base::StringAppendF(&config, "interface=%s\n", interface_name_.c_str()); 146 base::StringAppendF(&config, "user=%s\n", Daemon::kAPManagerUserName); 147 base::StringAppendF(&config, "dhcp-leasefile=%s\n", lease_file_path.c_str()) [all...] |
service.h | 28 #include "apmanager/config.h" 56 Config* config() const { return config_.get(); } function in class:apmanager::Service 106 std::unique_ptr<Config> config_;
|
service_unittest.cc | 100 void SetConfig(Config* config) { 101 service_->config_.reset(config); 131 MockConfig* config = new MockConfig(&manager_); local 132 SetConfig(config); 135 EXPECT_CALL(*config, GenerateConfigFile(_, _)).WillOnce(Return(false)); 140 MockConfig* config = new MockConfig(&manager_); local 141 SetConfig(config); 150 EXPECT_CALL(*config, GenerateConfigFile(_, _)).WillOnce( 154 EXPECT_CALL(*config, ClaimDevice()).WillOnce(Return(true)) 176 MockConfig* config = new MockConfig(&manager_); local [all...] |
/system/connectivity/shill/dbus/ |
chromeos_dhcpcd_listener.cc | 156 DHCPConfigRefPtr config = provider_->GetConfig(pid); local 157 if (!config.get()) { 166 config->InitProxy(sender); 170 config->ProcessEventSignal(reason, configuration_store); 176 DHCPConfigRefPtr config = provider_->GetConfig(pid); local 177 if (!config.get()) { 186 config->InitProxy(sender); 187 config->ProcessStatusChangeSignal(status);
|
/system/sepolicy/tools/ |
insertkeys.py | 234 "chdirs' AFTER loading the config file") 245 parser.error("Must specify a config file (keys.conf) AND mac_permissions.xml file(s)!") 249 # Read the config file 250 config = ParseConfig() variable 251 config.read(args[0]) 259 key_map = config.generateKeyMap(options.target_build_variant.lower(), options.key_directory)
|
/cts/tests/tests/content/src/android/content/res/cts/ |
ConfigTest.java | 197 TotalConfig config = new TotalConfig(); local 198 config.setProperty(Properties.LANGUAGE, "en"); 199 config.setProperty(Properties.COUNTRY, "US"); 200 config.setProperty(Properties.MCC, 310); 201 config.setProperty(Properties.MNC, 001); // unused 202 config.setProperty(Properties.TOUCHSCREEN, Configuration.TOUCHSCREEN_FINGER); 203 config.setProperty(Properties.KEYBOARD, Configuration.KEYBOARD_QWERTY); 204 config.setProperty(Properties.KEYBOARDHIDDEN, Configuration.KEYBOARDHIDDEN_YES); 205 config.setProperty(Properties.NAVIGATION, Configuration.NAVIGATION_TRACKBALL); 206 config.setProperty(Properties.ORIENTATION, Configuration.ORIENTATION_PORTRAIT) 239 TotalConfig config = makeEmptyConfig(); local 443 TotalConfig config = makeClassicConfig(); local 651 TotalConfig config = makeClassicConfig(); local 719 TotalConfig config = makeClassicConfig(); local 760 TotalConfig config = makeClassicConfig(); local 899 TotalConfig config = makeEmptyConfig(); local 1003 TotalConfig config = makeClassicConfig(); local 1157 TotalConfig config = makeClassicConfig(); local 1222 TotalConfig config = makeClassicConfig(); local 1259 TotalConfig config = makeClassicConfig(); local [all...] |
Resources_ThemeTest.java | 117 Configuration config = res.getConfiguration(); local 118 config.setLocale(Locale.ENGLISH); 119 res.updateConfiguration(config, null); 121 assertEquals("Theme will be created in LTR config", 122 View.LAYOUT_DIRECTION_LTR, config.getLayoutDirection()); 128 assertEquals("Theme was created in LTR config", false, t.getBoolean(0, true)); 131 config.setLocale(new Locale("iw")); 132 res.updateConfiguration(config, null); 134 assertEquals("Theme will be rebased in RTL config", 135 View.LAYOUT_DIRECTION_RTL, config.getLayoutDirection()) [all...] |
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/ |
TestPackageRepo.java | 20 import com.android.tradefed.config.ConfigurationException; 21 import com.android.tradefed.config.ConfigurationFactory; 22 import com.android.tradefed.config.IConfiguration; 74 * Infer package preparer config from package XML definition file and return if exists 85 File preparer = new File(fullPath.substring(0, lastDot) + ".config"); 94 * variable. Parsed config objects will be associated with each applicable ABI type so multiple 96 * <module name>.config file naming convention, this method also looks for the optional 97 * module test config, and attaches defined configuration objects to the {@link TestPackageDef} 105 // based on test module XML file path, and the <module name>.config naming convention, 106 // infers the module test config file, and parses i 108 IConfiguration config = null; local [all...] |
/developers/build/prebuilts/gradle/WatchFace/Application/src/main/java/com/example/android/wearable/watchface/ |
DigitalWatchFaceCompanionConfigActivity.java | 43 * The phone-side config activity for {@code DigitalWatchFaceService}. Like the watch-side config 114 DataMap config = dataMapItem.getDataMap(); local 115 setUpAllPickers(config); 117 // If DataItem with the current config can't be retrieved, select the default items on 151 * Sets up selected items for all pickers according to given {@code config} and sets up their 154 * @param config the {@code DigitalWatchFaceService} config {@link DataMap}. If null, the 157 private void setUpAllPickers(DataMap config) { 158 setUpColorPickerSelection(R.id.background, KEY_BACKGROUND_COLOR, config, 206 DataMap config = new DataMap(); local [all...] |
/developers/samples/android/wearable/wear/WatchFace/Application/src/main/java/com/example/android/wearable/watchface/ |
DigitalWatchFaceCompanionConfigActivity.java | 43 * The phone-side config activity for {@code DigitalWatchFaceService}. Like the watch-side config 114 DataMap config = dataMapItem.getDataMap(); local 115 setUpAllPickers(config); 117 // If DataItem with the current config can't be retrieved, select the default items on 151 * Sets up selected items for all pickers according to given {@code config} and sets up their 154 * @param config the {@code DigitalWatchFaceService} config {@link DataMap}. If null, the 157 private void setUpAllPickers(DataMap config) { 158 setUpColorPickerSelection(R.id.background, KEY_BACKGROUND_COLOR, config, 206 DataMap config = new DataMap(); local [all...] |
/development/samples/browseable/WatchFace/Application/src/com.example.android.wearable.watchface/ |
DigitalWatchFaceCompanionConfigActivity.java | 43 * The phone-side config activity for {@code DigitalWatchFaceService}. Like the watch-side config 114 DataMap config = dataMapItem.getDataMap(); local 115 setUpAllPickers(config); 117 // If DataItem with the current config can't be retrieved, select the default items on 151 * Sets up selected items for all pickers according to given {@code config} and sets up their 154 * @param config the {@code DigitalWatchFaceService} config {@link DataMap}. If null, the 157 private void setUpAllPickers(DataMap config) { 158 setUpColorPickerSelection(R.id.background, KEY_BACKGROUND_COLOR, config, 206 DataMap config = new DataMap(); local [all...] |
/frameworks/base/tests/NetworkSecurityConfigTest/src/android/security/net/config/ |
NetworkSecurityConfigTests.java | 17 package android.security.net.config; 229 NetworkSecurityConfig config = new NetworkSecurityConfig.Builder() local 232 assert(!config.getTrustAnchors().isEmpty());
|