/prebuilts/ndk/r11/platforms/android-9/arch-x86/usr/include/linux/netfilter/ |
xt_string.h | 26 struct ts_config __attribute__((aligned(8))) *config; member in struct:xt_string_info
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/lint/ |
ProjectLintConfigurationTest.java | 51 ProjectLintConfiguration config = local 57 assertTrue(config.isEnabled(usuallyEnabledIssue)); 58 assertFalse(config.isEnabled(usuallyDisabledIssue)); 60 config.setSeverity(usuallyEnabledIssue, Severity.IGNORE); 61 config.setSeverity(usuallyDisabledIssue, Severity.ERROR); 62 assertFalse(config.isEnabled(usuallyEnabledIssue)); 63 assertTrue(config.isEnabled(usuallyDisabledIssue)); 65 // Make a NEW config object to ensure the state is persisted properly, not just 66 // kept on the config object! 67 config = new ProjectLintConfiguration(client, project, parent, false /*fatalOnly*/) 87 ProjectLintConfiguration config = local 138 ProjectLintConfiguration config = local [all...] |
/system/bt/osi/test/ |
config_test.cc | 5 #include "osi/include/config.h" 60 config_t* config = config_new_empty(); local 61 EXPECT_TRUE(config != NULL); 62 config_free(config); 66 config_t* config = config_new("/meow"); local 67 EXPECT_TRUE(config == NULL); 68 config_free(config); 72 config_t* config = config_new(CONFIG_FILE); local 73 EXPECT_TRUE(config != NULL); 74 config_free(config); 80 config_t* config = config_new(CONFIG_FILE); local 94 config_t* config = config_new(CONFIG_FILE); local 100 config_t* config = config_new(CONFIG_FILE); local 109 config_t* config = config_new(CONFIG_FILE); local 118 config_t* config = config_new(CONFIG_FILE); local 126 config_t* config = config_new(CONFIG_FILE); local 132 config_t* config = config_new(CONFIG_FILE); local 138 config_t* config = config_new(CONFIG_FILE); local 146 config_t* config = config_new(CONFIG_FILE); local 152 config_t* config = config_new(CONFIG_FILE); local 160 config_t* config = config_new(CONFIG_FILE); local 168 config_t* config = config_new(CONFIG_FILE); local 178 config_t* config = config_new(CONFIG_FILE); local 190 config_t* config = config_new(CONFIG_FILE); local 199 config_t* config = config_new(CONFIG_FILE); local [all...] |
/system/connectivity/wificond/ |
ap_interface_impl.cpp | 118 string config = hostapd_manager_->CreateHostapdConfig( local 121 if (config.empty()) { 125 return hostapd_manager_->WriteHostapdConfig(config);
|
/system/extras/simpleperf/ |
event_type.h | 35 // (type, config) pair. EventType connects the two representations, and tells the user if 39 EventType(const std::string& name, uint32_t type, uint64_t config) 40 : name(name), type(type), config(config) { 43 EventType() : type(0), config(0) { 48 uint64_t config; member in struct:EventType
|
/system/extras/simpleperf/scripts/ |
binary_cache_builder.py | 38 def __init__(self, config): 42 if not config.has_key(name): 43 log_fatal('config for "%s" is missing' % name) 45 self.perf_data_path = config.get('perf_data_path') 48 self.symfs_dirs = config.get('symfs_dirs') 52 self.adb = AdbHelper(config['adb_path']) 53 self.readelf_path = config['readelf_path'] 54 self.binary_cache_dir = config['binary_cache_dir'] 231 parser.add_argument('--config', default='binary_cache_builder.config', 234 config = load_config(args.config) variable in class:BinaryCacheBuilder [all...] |
/tools/loganalysis/src/com/android/loganalysis/util/config/ |
OptionUpdateRule.java | 17 package com.android.loganalysis.util.config;
|
/tools/tradefederation/core/src/com/android/tradefed/config/ |
ConfigurationDescriptor.java | 16 package com.android.tradefed.config; 30 @OptionClass(alias = "config-descriptor")
|
IConfigurationFactory.java | 17 package com.android.tradefed.config; 41 * Expected format is "CONFIG [options]", where CONFIG is the built-in configuration name or 46 * consumed by the Objects associated with the specified config. If this 60 * Expected format is "CONFIG [options]", where CONFIG is the built-in configuration name or 65 * consumed by the Objects associated with the specified config. If this 81 * Expected format is "CONFIG [options]", where CONFIG is the built-in configuration name or 132 * Does not attempt to load any of the configs, so it is possible to have non working config [all...] |
IDeviceConfiguration.java | 16 package com.android.tradefed.config; 49 * @param config object from a type above. 52 public void addSpecificConfig(Object config) throws ConfigurationException; 57 * @param config the object we are tracking the frequency. 60 public void addFrequency(Object config, Integer frequency); 63 public Integer getFrequency(Object config);
|
Option.java | 17 package com.android.tradefed.config;
|
OptionUpdateRule.java | 17 package com.android.tradefed.config;
|
/tools/tradefederation/core/src/com/android/tradefed/targetprep/ |
KeyValueConfigPreparer.java | 20 import com.android.tradefed.config.Option; 21 import com.android.tradefed.config.OptionClass; 31 * A {@link ITargetPreparer} which creates and pushes a simple key/value config file to the device. 33 @OptionClass(alias = "key-value-config") 36 @Option(name = "path", description = "The path of the config file on the device", 40 @Option(name = "config", description = "The key/value pairs of the config") 61 StringBuilder config = new StringBuilder(); local 64 config.append(String.format("%s%s%s\n", entry.getKey(), mSep, entry.getValue())); 67 String content = config.toString() [all...] |
/frameworks/base/core/java/android/security/net/config/ |
ApplicationConfig.java | 17 package android.security.net.config; 91 NetworkSecurityConfig config = entry.second; local 94 return config; 152 // If the config is uninitialized then there is no work to be done to handle an update, 183 public static void setDefaultInstance(ApplicationConfig config) { 185 sInstance = config;
|
/frameworks/base/wifi/tests/src/android/net/wifi/ |
WifiConfigurationTest.java | 48 WifiConfiguration config = new WifiConfiguration(); local 49 config.setPasspointManagementObjectTree(cookie); 51 config.writeToParcel(parcelW, 0); 60 // lacking a useful config.equals, check one field near the end.
|
/prebuilts/tools/common/m2/repository/org/codehaus/gmaven/feature/gmaven-feature-support/1.5/ |
gmaven-feature-support-1.5.jar | |
/tools/tradefederation/core/tests/src/com/android/tradefed/config/ |
ConfigurationDefTest.java | 16 package com.android.tradefed.config; 33 private static final String CONFIG_DESCRIPTION = "config description"; 71 IConfiguration config = mConfigDef.createConfiguration(); local 72 OptionTest test = (OptionTest)config.getBuildProvider(); 85 IConfiguration config = mConfigDef.createConfiguration(); local 86 OptionTest test = (OptionTest)config.getBuildProvider(); 96 IConfiguration config = mConfigDef.createConfiguration(); local 97 OptionTest test = (OptionTest)config.getBuildProvider(); 111 IConfiguration config = mConfigDef.createConfiguration(); local 112 OptionTest test = (OptionTest)config.getDeviceConfigByName("device1" [all...] |
/bionic/libc/kernel/uapi/linux/netfilter/ |
xt_string.h | 47 struct ts_config __attribute__((aligned(8))) * config; member in struct:xt_string_info
|
/bionic/libc/kernel/uapi/linux/netfilter_ipv4/ |
ipt_CLUSTERIP.h | 45 struct clusterip_config * config; member in struct:ipt_clusterip_tgt_info
|
/build/soong/cc/config/ |
global.go | 15 package config package 75 var pctx = android.NewPackageContext("android/soong/cc/config") 125 pctx.VariableFunc("ClangBase", func(config interface{}) (string, error) { 126 if override := config.(android.Config).Getenv("LLVM_PREBUILTS_BASE"); override != "" { 131 pctx.VariableFunc("ClangVersion", func(config interface{}) (string, error) { 132 if override := config.(android.Config).Getenv("LLVM_PREBUILTS_VERSION"); override != "" { 140 pctx.VariableFunc("ClangShortVersion", func(config interface{}) (string, error) { 141 if override := config.(android.Config).Getenv("LLVM_RELEASE_VERSION"); override != "" [all...] |
/cts/tests/tests/app/src/android/app/cts/ |
ApplyOverrideConfigurationTest.java | 49 final Configuration config = getActivity().getResources().getConfiguration(); local 50 final int originalOrientation = config.orientation; 52 config.smallestScreenWidthDp);
|
/cts/tests/tests/telephony/src/android/telephony/cts/ |
CarrierConfigManagerTest.java | 57 private void checkConfig(PersistableBundle config) { 58 if (config == null) { 59 assertFalse("Config should only be null when telephony is not running.", hasTelephony()); 62 assertNotNull("CarrierConfigManager should not return null config", config); 65 assertEquals("Config doesn't match static default.", 66 config.getBoolean(CarrierConfigManager.KEY_ADDITIONAL_CALL_SETTING_BOOL), true); 69 config.getString(CarrierConfigManager.KEY_VVM_DESTINATION_NUMBER_STRING), ""); 71 config.getInt(CarrierConfigManager.KEY_VVM_PORT_NUMBER_INT), 0); 73 config.getString(CarrierConfigManager.KEY_VVM_TYPE_STRING), "") 85 PersistableBundle config = mConfigManager.getConfig(); local 90 PersistableBundle config = local [all...] |
/developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/config/ |
AnalogComplicationConfigActivity.java | 16 package com.example.android.wearable.watchface.config; 31 * The watch-side config activity for {@link AnalogComplicationWatchFaceService}, which
|
/developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/config/ |
AnalogComplicationConfigActivity.java | 16 package com.example.android.wearable.watchface.config; 31 * The watch-side config activity for {@link AnalogComplicationWatchFaceService}, which
|
/development/ndk/platforms/android-21/include/linux/netfilter/ |
xt_string.h | 47 struct ts_config __attribute__((aligned(8))) *config; member in struct:xt_string_info
|