HomeSort by relevance Sort by last modified time
    Searched defs:config (Results 1076 - 1100 of 3008) sorted by null

<<41424344454647484950>>

  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-archiver/2.4.1/
maven-archiver-2.4.1.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationDescription.java 60 private static final String ATTR_CONFIG = "config"; //$NON-NLS-1$
184 String config = element.getAttribute(ATTR_CONFIG); local
185 Iterable<String> segments = Splitter.on('-').split(config);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
LaunchConfigDelegate.java 221 // make a config class
222 AndroidLaunchConfiguration config = new AndroidLaunchConfiguration(); local
224 // fill it with the config coming from the ILaunchConfiguration object
225 config.set(configuration);
246 doLaunch(configuration, mode, monitor, project, androidLaunch, config, controller,
252 AndroidLaunchConfiguration config, AndroidLaunchController controller,
257 if (config.mLaunchAction == ACTION_ACTIVITY) {
258 // Get the activity name defined in the config
271 config.mLaunchAction = ACTION_DO_NOTHING;
283 revertToNoActionLaunch(project, config);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
NdkDebuggerTab.java 257 public void setDefaults(ILaunchConfigurationWorkingCopy config) {
258 NdkHelper.setLaunchConfigDefaults(config);
262 public void initializeFrom(ILaunchConfiguration config) {
263 mGdbPathText.setText(getAttribute(config, NdkLaunchConstants.ATTR_NDK_GDB,
265 mGdbInitPathText.setText(getAttribute(config,
268 mGdbRemotePortText.setText(getAttribute(config, IGDBLaunchConfigurationConstants.ATTR_PORT,
271 List<String> solibs = getAttribute(config, NdkLaunchConstants.ATTR_NDK_SOLIB,
279 private String getAttribute(ILaunchConfiguration config, String key, String defaultValue) {
281 return config.getAttribute(key, defaultValue);
287 private List<String> getAttribute(ILaunchConfiguration config, String key
    [all...]
  /system/bt/btif/src/
btif_config.cc 43 #include "osi/include/config.h"
73 static void btif_config_remove_unpaired(config_t* config);
74 static void btif_config_remove_restricted(config_t* config);
124 static std::mutex config_lock; // protects operations on |config|.
125 static config_t* config; variable
137 config = btif_config_open(CONFIG_FILE_PATH);
139 if (!config) {
140 LOG_WARN(LOG_TAG, "%s unable to load config file: %s; using backup.",
142 config = btif_config_open(CONFIG_BACKUP_PATH);
146 if (!config) {
213 config_t* config = config_new(filename); local
    [all...]
  /system/core/adb/client/
usb_linux.cpp 143 struct usb_config_descriptor* config; local
183 // should have config descriptor next
184 config = (struct usb_config_descriptor *)bufptr;
186 if (config->bLength != USB_DT_CONFIG_SIZE || config->bDescriptorType != USB_DT_CONFIG) {
  /system/media/alsa_utils/
alsa_device_profile.c 221 struct pcm_config config = profile->default_config; local
222 config.rate = rate;
226 profile->direction, &config);
321 static int read_alsa_device_config(alsa_device_profile * profile, struct pcm_config * config)
351 config->channels = pcm_params_get_min(alsa_hw_params, PCM_PARAM_CHANNELS);
355 config->channels < 2 && pcm_params_get_max(alsa_hw_params, PCM_PARAM_CHANNELS) >= 2) {
356 config->channels = 2;
358 config->rate = pcm_params_get_min(alsa_hw_params, PCM_PARAM_RATE);
360 if (config->rate < 48000 &&
362 config->rate = 48000
    [all...]
  /system/update_engine/payload_consumer/
delta_performer_unittest.cc 189 PayloadGenerationConfig config; local
190 config.version.major = major_version;
191 config.version.minor = minor_version;
194 EXPECT_TRUE(payload.Init(config));
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
ZenModeHelper.java 103 private final ConditionProviders.Config mServiceConfig;
220 ZenModeConfig config = mConfigs.get(user); local
221 if (config == null) {
222 if (DEBUG) Log.d(TAG, reason + " generating default config for user " + user);
223 config = mDefaultConfig.copy();
224 config.user = user;
227 setConfigLocked(config, reason);
530 private static void dump(PrintWriter pw, String prefix, String var, ZenModeConfig config) {
532 if (config == null) {
533 pw.println(config);
554 final ZenModeConfig config = ZenModeConfig.readXml(parser); local
836 final ZenModeConfig config = ZenModeConfig.readXml(parser); local
1076 public final ZenModeConfig config; field in class:ZenModeHelper.H.ConfigMessageData
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
DockedStackDividerController.java 220 final Configuration config = new Configuration(); local
230 config.unset();
231 config.orientation = (dw <= dh) ? ORIENTATION_PORTRAIT : ORIENTATION_LANDSCAPE;
242 config.setAppBounds(leftInset /*left*/, topInset /*top*/, leftInset + appWidth /*right*/,
245 config.screenWidthDp = (int)
248 config.screenHeightDp = (int)
251 final Context rotationContext = mService.mContext.createConfigurationContext(config);
254 config.orientation == ORIENTATION_PORTRAIT, mTmpRect);
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigController.java 240 WifiConfiguration config = mAccessPoint.getConfig(); local
241 if (config.getIpAssignment() == IpAssignment.STATIC) {
245 StaticIpConfiguration staticConfig = config.getStaticIpConfiguration();
254 mSharedCheckBox.setEnabled(config.shared);
255 if (!config.shared) {
259 if (config.getProxySettings() == ProxySettings.STATIC) {
262 } else if (config.getProxySettings() == ProxySettings.PAC) {
268 if (config != null && config.isPasspoint()) {
271 config.providerFriendlyName))
303 WifiConfiguration config = mAccessPoint.getConfig(); local
486 WifiConfiguration config = new WifiConfiguration(); local
1073 WifiConfiguration config = null; local
1125 WifiConfiguration config = null; local
    [all...]
  /prebuilts/sdk/tools/
jack-jar-tools.jar 
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-cloudwatchmetrics/1.11.18/
aws-java-sdk-cloudwatchmetrics-1.11.18.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8-dom.jar 
  /frameworks/base/services/tests/servicestests/src/com/android/server/
NetworkPolicyManagerServiceTest.java 1224 PersistableBundle config = CarrierConfigManager.getDefaultConfig(); local
1258 PersistableBundle config = CarrierConfigManager.getDefaultConfig(); local
1283 PersistableBundle config = CarrierConfigManager.getDefaultConfig(); local
    [all...]
  /art/test/913-heaps/
heaps.cc 78 IterationConfig* config = reinterpret_cast<IterationConfig*>(user_data); local
79 return config->Handle(reference_kind,
94 IterationConfig* config) {
103 config);
500 PrintIterationConfig config(stop_after, follow_set);
501 if (!Run(env, heap_filter, klass_filter, initial_object, &config)) {
505 std::vector<std::string> lines = config.GetLines();
    [all...]
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/command/
CompatibilityConsole.java 27 import com.android.tradefed.config.ArgsOptionParser;
28 import com.android.tradefed.config.ConfigurationException;
29 import com.android.tradefed.config.ConfigurationFactory;
30 import com.android.tradefed.config.IConfiguration;
31 import com.android.tradefed.config.IConfigurationFactory;
251 // parse through all config files to get runtime hints
255 // parse through all config files to calculate module execution time
257 IConfiguration config = null; local
263 config = configFactory.createConfigurationFromArgs(new String[]{
267 printLine("Error loading config file: " + file.getAbsolutePath())
    [all...]
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/suite/
ModuleRepoSuite.java 19 import com.android.tradefed.config.ConfigurationException;
20 import com.android.tradefed.config.ConfigurationFactory;
21 import com.android.tradefed.config.IConfiguration;
22 import com.android.tradefed.config.IConfigurationFactory;
52 private static final String CONFIG_EXT = ".config";
84 String.format("No config files found in %s", testsDir.getAbsolutePath()));
90 // Invokes parser to process the test module config file
91 // Need to generate a different config for each ABI as we cannot guarantee the
100 IConfiguration config = mConfigFactory.createConfigurationFromArgs(pathArg); local
111 config.injectOptionValue(entry.getKey(), value)
    [all...]
  /cts/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/presubmit/
IntegrationTest.java 30 import com.android.tradefed.config.ConfigurationFactory;
31 import com.android.tradefed.config.OptionSetter;
71 private static final String CONFIG =
73 "<option name=\"config-descriptor:metadata\" key=\"component\" value=\"%s\" />\n" +
81 private static final String FILENAME = "%s.config";
184 File config = new File(testsDir, String.format(FILENAME, name)); local
185 FileUtil.deleteFile(config);
186 if (!config.createNewFile()) {
187 throw new IOException(String.format("Failed to create '%s'", config.getAbsolutePath()));
190 FileUtil.writeToFile(String.format(CONFIG, component, moduleClass, reportTest, runComplete
191 doesOneTestFail, internalRetry), config); local
    [all...]
  /cts/tests/tests/drm/src/android/drm/cts/
DRMTest.java 63 private ArrayList<Config> mConfigs = new ArrayList<Config>();
75 Config config = ConfigFactory.getConfig(plugInName); local
76 if (null != config) {
77 mConfigs.add(config);
82 private void register(Config config) throws Exception {
84 config.getInfoOfRegistration(),
85 config.getMimeType())
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
AudioPlaybackConfigurationTest.java 88 for (AudioPlaybackConfiguration config : configs) {
89 if (config.getAudioAttributes().equals(aa)) {
90 configToMarshall = config;
142 final AudioPlaybackConfiguration config = configs.get(0); local
143 final Class<?> confClass = config.getClass();
148 Integer uid = (Integer) getClientUidMethod.invoke(config, null);
150 Integer pid = (Integer) getClientPidMethod.invoke(config, null);
152 Integer type = (Integer) getPlayerTypeMethod.invoke(config, null);
155 fail("Exception thrown during reflection on config privileged fields"+ e);
  /cts/tests/vr/src/android/vr/cts/
OpenGLESActivity.java 230 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig config) {
236 EGLContext context = egl.eglCreateContext(display, config, EGL10.EGL_NO_CONTEXT,
256 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig config) {
262 EGLContext context = egl.eglCreateContext(display, config, EGL10.EGL_NO_CONTEXT,
281 EGLConfig config, Object nativeWindow) {
287 result = egl.eglCreateWindowSurface(display, config, nativeWindow, attrib_list);
329 EGLConfig config = chooseConfig(egl, display, configs); local
330 if (config == null) {
331 throw new IllegalArgumentException("No config chosen");
333 return config;
    [all...]
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoInstrument.java 209 Configuration config = getContext().getResources().getConfiguration(); local
210 int screenLayout = config.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK;
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/config/
DigitalWatchFaceWearableConfigActivity.java 17 package com.example.android.wearable.watchface.config;
46 * The watch-side config activity for {@link DigitalWatchFaceService}, which allows for setting the
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/config/
DigitalWatchFaceWearableConfigActivity.java 17 package com.example.android.wearable.watchface.config;
46 * The watch-side config activity for {@link DigitalWatchFaceService}, which allows for setting the

Completed in 1076 milliseconds

<<41424344454647484950>>