Home | History | Annotate | Download | only in widgets

Lines Matching refs:AvdInfo

24 import com.android.sdklib.internal.avd.AvdInfo;
25 import com.android.sdklib.internal.avd.AvdInfo.AvdStatus;
73 * After using one of the constructors, call {@link #setSelection(AvdInfo)},
146 * Called before {@link #accept(AvdInfo)} is called for any AVD.
155 boolean accept(AvdInfo avd);
158 * Called after {@link #accept(AvdInfo)} has been called on all the AVDs.
180 public boolean accept(AvdInfo avd) {
195 * Creates a new SDK Target Selector, and fills it with a list of {@link AvdInfo}, filtered
197 * <p/>Only the {@link AvdInfo} able to run application developed for the given
391 * Creates a new SDK Target Selector, and fills it with a list of {@link AvdInfo}.
407 * Creates a new SDK Target Selector, and fills it with a list of {@link AvdInfo}, filtered
409 * <p/>Only the {@link AvdInfo} able to run applications developed for the given
470 AvdInfo selected = getSelected();
542 public boolean setSelection(AvdInfo target) {
550 if ((AvdInfo) i.getData() == target) {
561 if ((AvdInfo) i.getData() == target) {
585 * return the {@link AvdInfo} that is checked instead of the list selection.
589 public AvdInfo getSelected() {
593 return (AvdInfo) i.getData();
599 return (AvdInfo) mTable.getItem(selIndex).getData();
755 AvdInfo avds[] = null;
765 Arrays.sort(avds, new Comparator<AvdInfo>() {
767 public int compare(AvdInfo o1, AvdInfo o2) {
778 for (AvdInfo avd : avds) {
793 item.setText(4, AvdInfo.getPrettyAbiType(avd.getAbiType()));
825 private AvdInfo getTableSelection() {
828 return (AvdInfo) mTable.getItem(selIndex).getData();
853 AvdInfo selection = getTableSelection();
886 AvdInfo avdInfo = getTableSelection();
892 avdInfo);
900 AvdInfo avdInfo = getTableSelection();
902 AvdDetailsDialog dlg = new AvdDetailsDialog(mTable.getShell(), avdInfo);
907 final AvdInfo avdInfo = getTableSelection();
913 if (avdInfo.isRunning()) {
922 avdInfo.getName()));
938 avdInfo.getName()));
952 String.format("Result of deleting AVD '%s':", avdInfo.getName()),
958 boolean success = mAvdManager.deleteAvd(avdInfo, log);
976 final AvdInfo avdInfo = getTableSelection();
987 String.format("Result of updating AVD '%s':", avdInfo.getName()),
994 mAvdManager.updateAvd(avdInfo, log);
1041 AvdInfo avdInfo = getTableSelection();
1043 if (avdInfo == null || mOsSdkPath == null) {
1047 AvdStartDialog dialog = new AvdStartDialog(mTable.getShell(), avdInfo, mOsSdkPath,
1054 final String avdName = avdInfo.getName();