/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/ |
IUpdaterData.java | 21 import com.android.sdklib.internal.avd.AvdManager;
|
/external/qemu/android/ |
main.c | 234 AvdInfo* avd; local 328 avd = createAVD(opts, &inAndroidBuild); 329 opts->snapstorage = avdInfo_getSnapStoragePath(avd); 336 derror("This AVD doesn't have snapshotting enabled!\n"); 356 /* Parses options and builds an appropriate AVD. */ 357 avd = android_avdInfo = createAVD(opts, &inAndroidBuild); 370 avdInfo_getSkinInfo(avd, &skinName, &skinDir); 385 if (avdInfo_initHwConfig(avd, hw) < 0) { 443 char* tracePath = avdInfo_getTracePath(avd, opts->trace); 476 kernelFile = avdInfo_getKernelPath(avd); [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 87 CFG_PARAM( avd, "<name>", "use a specific android virtual device" )
|
main-common.c | 792 /* If no AVD name was given, try to find the top of the 795 if (opts->avd == NULL) { 826 if (opts->avd == NULL && !android_build_out) 836 "If you are an Android SDK user, please use '@<name>' or '-avd <name>'\n" 837 "to start a given virtual device (see -help-avd for details).\n\n" 874 "with the '-avd <name>' option. Read -help-avd for more information.\n\n" 876 "If you *really* want to *NOT* run an AVD, consider using '-data <file>'\n" 898 if (opts->avd != NULL) 900 ret = avdInfo_new( opts->avd, android_avdParams ) [all...] |
cmdline-option.c | 61 * '-avd <name>' 64 opt->avd = aread[0]+1;
|
main-emulator.c | 15 * for a given AVD, i.e. either 'emulator-arm' or 'emulator-x86' 30 #include <android/avd/util.h> 92 /* Parse command-line and look for an avd name 93 * Either in the form or '-avd <name>' or '@<name>' 102 if (!strcmp(opt,"-avd") && nn+1 < argc) { 112 /* If there is an AVD name, we're going to extract its target architecture 116 D("Found AVD name '%s'\n", avdName); 118 D("Found AVD target architecture: %s\n", avdArch); 132 D("Can't determine target AVD architecture: defaulting to %s\n", avdArch);
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/avd/ |
AvdManager.java | 17 package com.android.sdklib.internal.avd; 27 import com.android.sdklib.internal.avd.AvdInfo.AvdStatus; 64 public static final String AVD_FOLDER_EXTENSION = ".avd"; //$NON-NLS-1$ 70 * AVD/config.ini key name representing the abi type of the specific avd 76 * AVD/config.ini key name representing the CPU architecture of the specific avd 82 * AVD/config.ini key name representing the CPU architecture of the specific avd 89 * AVD/config.ini key name representing the SDK-relative path of the skin folder, if any 1525 AvdInfo avd = null; local [all...] |
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;
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/ |
AvdSelector.java | 24 import com.android.sdklib.internal.avd.AvdInfo; 25 import com.android.sdklib.internal.avd.AvdManager; 26 import com.android.sdklib.internal.avd.AvdInfo.AvdStatus; 70 * The AVD selector is a table that is added to the given parent composite. 112 * The display mode of the AVD Selector. 122 * there is a button to open the AVD Manager. 132 * there is a button to open the AVD Manager. 141 * A filter to control the whether or not an AVD should be displayed by the AVD Selector. 145 * 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.ValueType;
|
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");
|
AvdStartDialog.java | 19 import com.android.sdklib.internal.avd.AvdInfo; 20 import com.android.sdklib.internal.avd.AvdManager; 93 AvdStartDialog(Shell parentShell, AvdInfo avd, String sdkLocation, 96 mAvd = avd; 100 throw new IllegalArgumentException("avd cannot be null");
|
AvdCreationDialog.java | 26 import com.android.sdklib.internal.avd.AvdInfo; 27 import com.android.sdklib.internal.avd.AvdManager; 28 import com.android.sdklib.internal.avd.HardwareProperties; 29 import com.android.sdklib.internal.avd.AvdManager.AvdConflict; 30 import com.android.sdklib.internal.avd.HardwareProperties.HardwareProperty; 83 * AVD creation or edit dialog. 103 * The original AvdInfo if we're editing an existing AVD. 104 * Null when we're creating a new AVD. 157 * Callback when the AVD name is changed. 158 * When creating a new AVD, enables the force checkbox if the name is a duplicate [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]",
|
MainTest.java | 23 import com.android.sdklib.internal.avd.AvdInfo;
|
/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; 141 // this happens if the AVD Manager failed to find the folder in which the AVDs are 202 null /* avd manager */, 361 // update the AVD list 446 AvdInfo avd = mPreferredAvdSelector.getSelected(); local 447 if (avd != null) { 448 configuration.setAttribute(LaunchConfigDelegate.ATTR_AVD_NAME, avd.getName());
|
DeviceChooserDialog.java | 32 import com.android.sdklib.internal.avd.AvdInfo; 168 return "N/A"; // devices don't have AVD names. 227 public void setAvdToLaunch(AvdInfo avd) { 228 mAvdToLaunch = avd; 336 TableHelper.createTableColumn(mDeviceTable, "AVD Name", 403 * Handles single-click selection on the AVD selector. 415 * Handles double-click selection on the AVD selector. 509 // non running AVD.) 555 // non running AVD). This is done on deviceChanged because the avd nam [all...] |
AndroidLaunchController.java | 49 import com.android.sdklib.internal.avd.AvdInfo; 50 import com.android.sdklib.internal.avd.AvdManager; 93 private static final String FLAG_AVD = "-avd"; //$NON-NLS-1$ 215 // default AVD: None 316 // this happens if the AVD Manager failed to find the folder in which the AVDs are 325 // FIXME: check errors on missing sdk, AVD manager, or project target. 335 * with compatible (and not yet running) AVD. 337 * * Preferred AVD set. 338 * If Preferred AVD is not running: launch it. 339 * Launch the application on the preferred AVD [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/tests/src/com/android/sdklib/ |
SdkManagerTestCase.java | 25 import com.android.sdklib.internal.avd.AvdManager; 37 * Test case that allocates a temporary SDK, a temporary AVD base folder 64 * and an AVD Manager pointing to an initially-empty AVD directory. 77 * Removes the temporary SDK and AVD directories. 94 * The AVD list should be initially empty. 101 * the buildAvdFilesList() to fill the initial AVD list, which will in 109 * AVD Root, initialized "lazily" when the AVD root is first requested.
|
/sdk/sdkmanager/app/src/com/android/sdkmanager/ |
Main.java | 30 import com.android.sdklib.internal.avd.AvdInfo; 31 import com.android.sdklib.internal.avd.AvdManager; 32 import com.android.sdklib.internal.avd.HardwareProperties; 33 import com.android.sdklib.internal.avd.HardwareProperties.HardwareProperty; 345 * Display the main AVD Manager app window 350 "AVD Manager", [all...] |
/sdk/sdkmanager/libs/sdkuilib/tests/com/android/sdkuilib/internal/repository/ |
UpdaterLogicTest.java | 21 import com.android.sdklib.internal.avd.AvdManager;
|
/sdk/build/ |
tools.atree | 78 # AVD Hardware property list 79 external/qemu/android/avd/hardware-properties.ini tools/lib/hardware-properties.ini
|