HomeSort by relevance Sort by last modified time
    Searched refs:avd (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/libselinux/src/
compute_av.c 17 struct av_decision *avd)
54 &avd->allowed, &avd->decided,
55 &avd->auditallow, &avd->auditdeny,
56 &avd->seqno, &avd->flags);
61 avd->flags = 0;
63 map_decision(tclass, avd);
mapping.c 169 map_decision(security_class_t tclass, struct av_decision *avd)
176 if (avd->allowed & current_mapping[tclass].perms[i])
178 avd->allowed = result;
181 if (avd->decided & current_mapping[tclass].perms[i])
183 avd->decided = result;
186 if (avd->auditallow & current_mapping[tclass].perms[i])
188 avd->auditallow = result;
191 if (avd->auditdeny & current_mapping[tclass].perms[i])
193 avd->auditdeny = result;
mapping.h 32 map_decision(security_class_t tclass, struct av_decision *avd);
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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
AvdCompatibility.java 21 import com.android.sdklib.internal.avd.AvdInfo;
31 * Returns whether the specified AVD can run the given project that is built against
33 * @param avd AVD to check compatibility for
36 * @return whether the given AVD can run the given application
38 public static Compatibility canRun(AvdInfo avd, IAndroidTarget projectTarget,
40 if (avd == null) {
44 IAndroidTarget avdTarget = avd.getTarget();
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...]
DeviceChooserDialog.java 32 import com.android.sdklib.internal.avd.AvdInfo;
200 return "N/A"; // devices don't have AVD names.
264 public void setAvdToLaunch(AvdInfo avd) {
265 mAvdToLaunch = avd;
422 TableHelper.createTableColumn(mDeviceTable, "AVD Name",
489 * Handles single-click selection on the AVD selector.
501 * Handles double-click selection on the AVD selector.
596 // non running AVD.)
645 // non running AVD). This is done on deviceChanged because the avd nam
    [all...]
  /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...]
main-common.h 19 #include "android/avd/hw-config.h"
73 * AVD file, or 1 if AvdInfo has been initialized from the build directory.
85 /* Updates hardware configuration for the given AVD and options.
88 * avd - AVD info containig paths for the hardware configuration.
90 * inAndroidBuild - 0 if AVD has been initialized from AVD file, or 1 if AVD
93 void updateHwConfigFromAVD(AndroidHwConfig* hwConfig, struct AvdInfo* avd,
cmdline-options.h 27 * Some options correspond to AVD (Android Virtual Device) configuration
28 * and will be ignored if you start the emulator with the -avd <name> flag.
30 * However, if you use them with -avd-create <name>, these options will be
31 * recorded into the new AVD directory. Once an AVD is created, there is no
88 CFG_PARAM( avd, "<name>", "use a specific android virtual device" )
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
IUpdaterData.java 20 import com.android.sdklib.internal.avd.AvdManager;
  /external/libsepol/include/sepol/policydb/
services.h 47 struct sepol_av_decision *avd); /* OUT */
58 struct sepol_av_decision *avd,
conditional.h 134 struct sepol_av_decision *avd);
  /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...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/avd/
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...]
  /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/include/selinux/
avc.h 242 * @avd: access vector decisions
249 * in @avd. Return %0 if all @requested permissions are granted, -%1 with
260 struct avc_entry_ref *aeref, struct av_decision *avd);
290 * @avd: access vector decisions
305 struct av_decision *avd, int result, void *auditdata);
  /tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/service/repair/
RepairAvdHandler.java 29 import com.android.sdklib.internal.avd.AvdInfo;
30 import com.android.sdklib.internal.avd.AvdInfo.AvdStatus;
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
AvdSelector.java 25 import com.android.sdklib.internal.avd.AvdInfo;
26 import com.android.sdklib.internal.avd.AvdInfo.AvdStatus;
27 import com.android.sdklib.internal.avd.AvdManager;
78 * The AVD selector is a table that is added to the given parent composite.
120 * The display mode of the AVD Selector.
130 * there is a button to open the AVD Manager.
140 * there is a button to open the AVD Manager.
149 * A filter to control the whether or not an AVD should be displayed by the AVD Selector.
153 * Called before {@link #accept(AvdInfo)} is called for any AVD
    [all...]
HardwarePropertyChooser.java 19 import com.android.sdklib.internal.avd.HardwareProperties.HardwareProperty;
20 import com.android.sdklib.internal.avd.HardwareProperties.HardwarePropertyType;
AvdDetailsDialog.java 21 import com.android.sdklib.internal.avd.AvdInfo;
22 import com.android.sdklib.internal.avd.AvdManager;
23 import com.android.sdklib.internal.avd.AvdInfo.AvdStatus;
39 * Dialog displaying the details of an AVD.
46 super(shell, SWT.APPLICATION_MODAL, "AVD details");
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...]
  /sdk/sdkmanager/app/tests/com/android/sdkmanager/
AvdManagerTest.java 23 import com.android.sdklib.internal.avd.AvdInfo;
62 assertEquals("[P Created AVD '" + this.getName() + "' based on Android 0.0, ARM (armeabi) processor\n]",
93 assertEquals("[P Created AVD '" + this.getName() + "' based on Android 0.0, ARM (armeabi) processor\n]",
  /external/ipsec-tools/src/racoon/
security.c 220 struct av_decision avd; local
254 rtn = avc_has_perm(slsid, rangesid, tclass, av, NULL, &avd);

Completed in 763 milliseconds

1 2 3