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

  /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;
33 * Status for an {@link AvdInfo}. Indicates whether or not this AVD is valid.
40 /** Missing config.ini file in the AVD data folder */
62 * Creates a new valid AVD info. Values are immutable.
64 * Such an AVD is available and can be used.
67 * @param name The name of the AVD (for display or reference)
86 * Creates a new <em>invalid</em> AVD info. Values are immutable.
88 * Such an AVD is not complete and cannot be used.
91 * @param name The name of the AVD (for display or reference)
98 * @param status The {@link AvdStatus} of this AVD. Cannot be null
    [all...]
HardwareProperties.java 17 package com.android.sdklib.internal.avd;
AvdManager.java 17 package com.android.sdklib.internal.avd;
27 import com.android.sdklib.internal.avd.AvdInfo.AvdStatus;
65 public static final String AVD_FOLDER_EXTENSION = ".avd"; //$NON-NLS-1$
71 * AVD/config.ini key name representing the abi type of the specific avd
77 * AVD/config.ini key name representing the CPU architecture of the specific avd
83 * AVD/config.ini key name representing the CPU architecture of the specific avd
90 * AVD/config.ini key name representing the SDK-relative path of the skin folder, if any
1464 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/launch/
EmulatorConfigTab.java 29 import com.android.sdklib.internal.avd.AvdInfo;
30 import com.android.sdklib.internal.avd.AvdManager;
142 // this happens if the AVD Manager failed to find the folder in which the AVDs are
203 null /* avd manager */,
365 // update the AVD list
451 AvdInfo avd = mPreferredAvdSelector.getSelected(); local
452 if (avd != null) {
453 configuration.setAttribute(LaunchConfigDelegate.ATTR_AVD_NAME, avd.getName());
AndroidLaunchController.java 48 import com.android.sdklib.internal.avd.AvdInfo;
49 import com.android.sdklib.internal.avd.AvdManager;
94 private static final String FLAG_AVD = "-avd"; //$NON-NLS-1$
219 // default AVD: None
320 // this happens if the AVD Manager failed to find the folder in which the AVDs are
329 // FIXME: check errors on missing sdk, AVD manager, or project target.
336 * - Use Last Launched Device/AVD set.
338 * device/avd is still present, then simply launch on the same device/avd.
342 * with compatible (and not yet running) AVD
636 AvdInfo avd = response.getAvdToLaunch(); local
    [all...]
  /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...]
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 594 milliseconds