HomeSort by relevance Sort by last modified time
    Searched defs:avd (Results 1 - 15 of 15) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DeviceChoiceCache.java 22 import com.android.sdklib.internal.avd.AvdInfo;
60 AvdInfo avd = response.getAvdToLaunch(); local
62 if (avd != null) {
63 device = avd.getName();
EmulatorConfigTab.java 31 import com.android.sdklib.internal.avd.AvdInfo;
32 import com.android.sdklib.internal.avd.AvdManager;
111 private static final String DEVICES_AND_EMULATORS = "Active devices and AVD's";
112 private static final String EMULATORS_ONLY = "Active AVD's";
165 // this happens if the AVD Manager failed to find the folder in which the AVDs are
194 mAllDevicesTargetButton.setText("Launch on all compatible devices/AVD's");
216 + "Always uses preferred AVD if set below, "
217 + "launches on compatible device/AVD otherwise.");
246 null /* avd manager */,
270 l.setText("If no compatible and active devices or AVD's are found, then an AVD
555 AvdInfo avd = mPreferredAvdSelector.getSelected(); local
    [all...]
  /external/ipsec-tools/src/racoon/
security.c 220 struct av_decision avd; local
254 rtn = avc_has_perm(slsid, rangesid, tclass, av, NULL, &avd);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/avd/
AvdInfo.java 17 package com.android.sdklib.internal.avd;
34 * Status for an {@link AvdInfo}. Indicates whether or not this AVD is valid.
41 /** Missing config.ini file in the AVD data folder */
51 /** The {@link Device} this AVD is based on has changed from its original configuration*/
53 /** The {@link Device} this AVD is based on is no longer available */
67 * Creates a new valid AVD info. Values are immutable.
69 * Such an AVD is available and can be used.
72 * @param name The name of the AVD (for display or reference)
91 * Creates a new <em>invalid</em> AVD info. Values are immutable.
93 * Such an AVD is not complete and cannot be used
    [all...]
HardwareProperties.java 17 package com.android.sdklib.internal.avd;
33 /** AVD/config.ini key for whether hardware buttons are present. */
36 /** AVD/config.ini key indicating whether trackball is present. */
39 /** AVD/config.ini key indicating whether qwerty keyboard is present. */
42 /** AVD/config.ini key indicating whether dpad is present. */
45 /** AVD/config.ini key indicating whether gps is present. */
48 /** AVD/config.ini key indicating whether the device is running on battery. */
51 /** AVD/config.ini key indicating whether accelerometer is present. */
54 /** AVD/config.ini key indicating whether gyroscope is present. */
57 /** AVD/config.ini key indicating whether h/w mic is present. *
    [all...]
AvdManager.java 17 package com.android.sdklib.internal.avd;
29 import com.android.sdklib.internal.avd.AvdInfo.AvdStatus;
70 public static final String AVD_FOLDER_EXTENSION = ".avd"; //$NON-NLS-1$
76 * AVD/config.ini key name representing the abi type of the specific avd
82 * AVD/config.ini key name representing the CPU architecture of the specific avd
88 * AVD/config.ini key name representing the CPU architecture of the specific avd
94 * AVD/config.ini key name representing the manufacturer of the device this avd was based on
1550 AvdInfo avd = null; local
    [all...]
  /external/checkpolicy/
checkpolicy.c 382 struct sepol_av_decision avd; local
695 ret = sepol_compute_av(ssid, tsid, tclass, 0, &avd);
699 for (i = 1; i <= sizeof(avd.allowed) * 8; i++) {
700 if (avd.allowed & (1 << (i - 1))) {
  /external/qemu/android/
main.c 175 AvdInfo* avd; local
269 avd = createAVD(opts, &inAndroidBuild);
270 opts->snapstorage = avdInfo_getSnapStoragePath(avd);
277 derror("This AVD doesn't have snapshotting enabled!\n");
297 /* Parses options and builds an appropriate AVD. */
298 avd = android_avdInfo = createAVD(opts, &inAndroidBuild);
311 avdInfo_getSkinInfo(avd, &skinName, &skinDir);
323 /* update the avd hw config from this new skin */
324 avdInfo_getSkinHardwareIni(avd, opts->skin, opts->skindir);
329 if (avdInfo_initHwConfig(avd, hw) < 0)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
DeviceMenuListener.java 24 import com.android.sdklib.internal.avd.AvdInfo;
25 import com.android.sdklib.internal.avd.AvdManager;
83 for (AvdInfo avd : avds) {
85 if (device.getManufacturer().equals(avd.getDeviceManufacturer())
86 && device.getName().equals(avd.getDeviceName())) {
89 item.setText(avd.getName());
  /external/libselinux/src/
avc.c 22 struct av_decision avd; member in struct:avc_entry
292 ae->avd.allowed = ae->avd.decided = 0;
293 ae->avd.auditallow = ae->avd.auditdeny = 0;
388 if (node && ((node->ae.avd.decided & requested) == requested)) {
414 * sequence number @ae->avd.seqno is not less than the latest
427 if (ae->avd.seqno < avc_cache.latest_notif) {
430 ae->avd.seqno, avc_cache.latest_notif);
442 node->ae.avd.allowed = ae->avd.allowed
770 struct av_decision avd; local
    [all...]
  /external/libsepol/src/
services.c 310 struct sepol_av_decision *avd,
331 avd->allowed = 0;
332 avd->decided = 0xffffffff;
333 avd->auditallow = 0;
334 avd->auditdeny = 0xffffffff;
335 avd->seqno = latest_granting;
360 avd->allowed |= node->datum.data;
363 avd->auditallow |= node->datum.data;
365 avd->auditdeny &= node->datum.data;
369 cond_compute_av(&policydb->te_cond_avtab, &avkey, avd);
1295 struct sepol_av_decision avd; local
    [all...]
expand.c 3043 avtab_datum_t *avd; local
3174 avtab_datum_t *avd; local
    [all...]
  /tools/build/builder/prebuilts/
sdklib.jar 
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
AvdCreationDialog.java 33 import com.android.sdklib.internal.avd.AvdInfo;
34 import com.android.sdklib.internal.avd.AvdManager;
35 import com.android.sdklib.internal.avd.AvdManager.AvdConflict;
36 import com.android.sdklib.internal.avd.HardwareProperties;
166 getShell().setText(mAvdInfo == null ? "Create new Android Virtual Device (AVD)"
167 : "Edit Android Virtual Device (AVD)");
186 // --- avd name
188 label.setText("AVD Name:");
198 tooltip = "The manufacturer of the device this AVD will be based on";
214 tooltip = "The name of the device this AVD will be based on"
    [all...]
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 

Completed in 435 milliseconds