HomeSort by relevance Sort by last modified time
    Searched defs:config (Results 226 - 250 of 3245) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/interfaces/radio/config/1.0/default/
RadioConfig.cpp 22 namespace config { namespace in namespace:android::hardware::radio
26 using namespace ::android::hardware::radio::config::V1_0;
28 // Methods from ::android::hardware::radio::config::V1_0::IRadioConfig follow.
53 } // namespace config
RadioConfig.h 20 #include <android/hardware/radio/config/1.0/IRadioConfig.h>
27 namespace config { namespace in namespace:android::hardware::radio
42 // Methods from ::android::hardware::radio::config::V1_0::IRadioConfig follow.
44 const sp<::android::hardware::radio::config::V1_0::IRadioConfigResponse>&
46 const sp<::android::hardware::radio::config::V1_0::IRadioConfigIndication>&
54 } // namespace config
  /hardware/qcom/gps/msm8909w_3100/android/
AGnss.cpp 113 GnssConfig config; local
114 memset(&config, 0, sizeof(GnssConfig));
115 config.size = sizeof(GnssConfig);
116 config.flags = GNSS_CONFIG_FLAGS_SET_ASSISTANCE_DATA_VALID_BIT;
117 config.assistanceServer.size = sizeof(GnssConfigSetAssistanceServer);
119 config.assistanceServer.type = GNSS_ASSISTANCE_TYPE_SUPL;
121 config.assistanceServer.type = GNSS_ASSISTANCE_TYPE_C2K;
126 config.assistanceServer.hostName = strdup(hostname.c_str());
127 config.assistanceServer.port = port;
128 return mGnss->updateConfiguration(config);
    [all...]
GnssConfiguration.cpp 43 GnssConfig config; local
44 memset(&config, 0, sizeof(GnssConfig));
45 config.size = sizeof(GnssConfig);
46 config.flags = GNSS_CONFIG_FLAGS_SUPL_EM_SERVICES_BIT;
47 config.suplEmergencyServices = (enabled ?
51 return mGnss->updateConfiguration(config);
60 GnssConfig config; local
61 memset(&config, 0, sizeof(GnssConfig));
62 config.size = sizeof(GnssConfig);
63 config.flags = GNSS_CONFIG_FLAGS_SUPL_VERSION_VALID_BIT
89 GnssConfig config; local
121 GnssConfig config; local
153 GnssConfig config; local
180 GnssConfig config; local
212 GnssConfig config; local
    [all...]
  /hardware/qcom/gps/msm8998/android/
AGnss.cpp 109 GnssConfig config; local
110 memset(&config, 0, sizeof(GnssConfig));
111 config.size = sizeof(GnssConfig);
112 config.flags = GNSS_CONFIG_FLAGS_SET_ASSISTANCE_DATA_VALID_BIT;
113 config.assistanceServer.size = sizeof(GnssConfigSetAssistanceServer);
115 config.assistanceServer.type = GNSS_ASSISTANCE_TYPE_SUPL;
117 config.assistanceServer.type = GNSS_ASSISTANCE_TYPE_C2K;
122 config.assistanceServer.hostName = strdup(hostname.c_str());
123 config.assistanceServer.port = port;
124 return mGnss->updateConfiguration(config);
    [all...]
GnssConfiguration.cpp 43 GnssConfig config; local
44 memset(&config, 0, sizeof(GnssConfig));
45 config.size = sizeof(GnssConfig);
46 config.flags = GNSS_CONFIG_FLAGS_SUPL_EM_SERVICES_BIT;
47 config.suplEmergencyServices = (enabled ?
51 return mGnss->updateConfiguration(config);
60 GnssConfig config; local
61 memset(&config, 0, sizeof(GnssConfig));
62 config.size = sizeof(GnssConfig);
63 config.flags = GNSS_CONFIG_FLAGS_SUPL_VERSION_VALID_BIT
89 GnssConfig config; local
121 GnssConfig config; local
153 GnssConfig config; local
180 GnssConfig config; local
212 GnssConfig config; local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/config/
OneCameraFeatureConfigCreator.java 17 package com.android.camera.one.config;
24 import com.android.camera.one.config.OneCameraFeatureConfig.CaptureSupportLevel;
25 import com.android.camera.one.config.OneCameraFeatureConfig.HdrPlusSupportLevel;
39 * Create the default camera feature config.
  /packages/apps/Launcher3/src/com/android/launcher3/config/
BaseFlags.java 17 package com.android.launcher3.config;
  /packages/apps/TV/common/src/com/android/tv/common/config/
DefaultConfigManager.java 17 package com.android.tv.common.config;
20 import com.android.tv.common.config.api.RemoteConfig;
22 /** Stub Remote Config. */
  /packages/apps/TV/common/src/com/android/tv/common/config/api/
RemoteConfig.java 17 package com.android.tv.common.config.api;
23 * href="https://firebase.google.com/docs/remote-config/"></a>Firebase Remote Config</a>
27 /** Used to inject a remote config */
  /packages/apps/TvSettings/Settings/tests/robotests/src/com/android/tv/settings/testutils/
ShadowWifiConfigHelper.java 34 WifiConfiguration config = new WifiConfiguration(); local
35 WifiConfigHelper.setConfigSsid(config, ssid);
36 WifiConfigHelper.setConfigKeyManagementBySecurity(config, security);
37 return config;
41 public static boolean saveConfiguration(Context context, WifiConfiguration config) {
42 sConfigForTest = config;
47 public static boolean isNetworkSaved(WifiConfiguration config) {
48 return (config != null && sConfigForTest.networkId > -1);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
FrontDoor.java 42 // The user clicked on the config based front door
43 Configuration config = getResources().getConfiguration(); local
44 int screenLayoutSize = config.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK;
ViewContact.java 30 Configuration config = getResources().getConfiguration(); local
31 int screenLayoutSize = config.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK;
  /packages/services/Car/evs/app/
evs_app.cpp 99 ConfigManager config; local
100 if (!config.initialize("/system/etc/automotive/evs/config.json")) {
156 EvsStateControl *pStateController = new EvsStateControl(pVnet, pEvs, pDisplay, config);
  /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...]
  /test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/
DynamicConfigFileReader.java 31 * Utility to read the data from a dynamic config file.
41 * @return the value associated to the key in the config file provided.
45 DynamicConfig config = new DynamicConfig(); local
46 config.initializeConfig(file);
47 return config.getValue(key);
56 * @return the values associated to the key in the config file provided.
60 DynamicConfig config = new DynamicConfig(); local
61 config.initializeConfig(file);
62 return config.getValues(key);
71 * @return the value associated to the key in the dynamic config associated with the module
    [all...]
  /test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/config/
ConfigurationFactoryTest.java 16 package com.android.compatibility.common.tradefed.config;
18 import com.android.tradefed.config.ConfigurationException;
19 import com.android.tradefed.config.ConfigurationFactory;
38 * Sanity test to ensure all config names on classpath are loadable.
49 // Printing the help involves more checks since it tries to resolve the config objects.
  /test/vts/harnesses/tradefed/src/com/android/compatibility/common/tradefed/testtype/
ModuleRepoMultiDevice.java 20 import com.android.tradefed.config.ConfigurationException;
21 import com.android.tradefed.config.IConfiguration;
64 // Invokes parser to process the test module config file
65 IConfiguration config = getConfigFactory().createConfigurationFromArgs(configPaths); local
70 preparers = config.getTargetPreparers();
74 config.getMultiTargetPreparers(), config.getConfigurationDescription()));
  /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/
ClassNotFoundConfigurationException.java 16 package com.android.tradefed.config;
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...]
Option.java 17 package com.android.tradefed.config;
OptionUpdateRule.java 17 package com.android.tradefed.config;
  /tools/tradefederation/core/src/com/android/tradefed/config/gcs/
GCSConfigurationFactory.java 17 package com.android.tradefed.config.gcs;
19 import com.android.tradefed.config.ConfigurationDef;
20 import com.android.tradefed.config.ConfigurationException;
21 import com.android.tradefed.config.ConfigurationFactory;
22 import com.android.tradefed.config.IConfigurationFactory;
23 import com.android.tradefed.config.IConfigurationServer;
48 * Loads an InputStream for given config name from Google Cloud Storage(GCS).
51 * @return a {@link BufferedInputStream} for reading config contents
52 * @throws ConfigurationException if config could not be found
65 // buffer input for performance - just in case config file is larg
    [all...]
  /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...]

Completed in 640 milliseconds

1 2 3 4 5 6 7 8 91011>>