Home
last modified time | relevance | path

Searched refs:NativeAbi (Results 1 – 3 of 3) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/
DNativeAbi.java21 public enum NativeAbi { enum
29 private NativeAbi(String abi) { in NativeAbi() method in NativeAbi
37 public static NativeAbi getByString(String abi) { in getByString()
38 for (NativeAbi a: values()) { in getByString()
DNdkHelper.java53 public static Collection<NativeAbi> getApplicationAbis(IProject project, in getApplicationAbis()
77 Set<NativeAbi> nativeAbis = EnumSet.noneOf(NativeAbi.class); in getApplicationAbis()
80 return EnumSet.allOf(NativeAbi.class); in getApplicationAbis()
84 nativeAbis.add(NativeAbi.getByString(abi)); in getApplicationAbis()
100 public static String getToolchainPrefix(IProject project, NativeAbi abi, in getToolchainPrefix()
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
DNdkGdbLaunchDelegate.java42 import com.android.ide.eclipse.ndk.internal.NativeAbi;
139 Collection<NativeAbi> appAbis = NdkHelper.getApplicationAbis(project, monitor); in doLaunch()
202 NativeAbi compatAbi = getCompatibleAbi(deviceAbi1, deviceAbi2, appAbis); in doLaunch()
379 IProject project, NativeAbi compatAbi, IProgressMonitor monitor) throws CoreException { in performVariableSubstitutions()
471 private NativeAbi getCompatibleAbi(String deviceAbi1, String deviceAbi2, in getCompatibleAbi()
472 Collection<NativeAbi> appAbis) { in getCompatibleAbi()
473 for (NativeAbi abi: appAbis) { in getCompatibleAbi()