Home
last modified time | relevance | path

Searched refs:abiList (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/core/java/com/android/internal/content/
DNativeLibraryHelper.java306 private static long sumNativeBinariesForSupportedAbi(Handle handle, String[] abiList) { in sumNativeBinariesForSupportedAbi() argument
307 int abi = findSupportedAbi(handle, abiList); in sumNativeBinariesForSupportedAbi()
309 return sumNativeBinaries(handle, abiList[abi]); in sumNativeBinariesForSupportedAbi()
316 String[] abiList, boolean useIsaSubdir) throws IOException { in copyNativeBinariesForSupportedAbi() argument
323 int abi = findSupportedAbi(handle, abiList); in copyNativeBinariesForSupportedAbi()
329 final String instructionSet = VMRuntime.getInstructionSet(abiList[abi]); in copyNativeBinariesForSupportedAbi()
339 int copyRet = copyNativeBinaries(handle, subDir, abiList[abi]); in copyNativeBinariesForSupportedAbi()
387 String[] abiList = (cpuAbiOverride != null) ? in copyNativeBinariesWithOverride() local
391 abiList = Build.SUPPORTED_32_BIT_ABIS; in copyNativeBinariesWithOverride()
394 int copyRet = copyNativeBinariesForSupportedAbi(handle, libraryRoot, abiList, in copyNativeBinariesWithOverride()
[all …]
/frameworks/base/core/java/com/android/internal/os/
DAppZygoteInit.java45 protected ZygoteConnection createNewConnection(LocalSocket socket, String abiList) in createNewConnection() argument
47 return new AppZygoteConnection(socket, abiList); in createNewConnection()
52 AppZygoteConnection(LocalSocket socket, String abiList) throws IOException { in AppZygoteConnection() argument
53 super(socket, abiList); in AppZygoteConnection()
DWebViewZygoteInit.java46 protected ZygoteConnection createNewConnection(LocalSocket socket, String abiList) in createNewConnection() argument
48 return new WebViewZygoteConnection(socket, abiList); in createNewConnection()
53 WebViewZygoteConnection(LocalSocket socket, String abiList) throws IOException { in WebViewZygoteConnection() argument
54 super(socket, abiList); in WebViewZygoteConnection()
DChildZygoteInit.java81 String abiList = parseAbiListFromArgs(args); in runZygoteServer() local
82 if (abiList == null) { in runZygoteServer()
125 caller = server.runSelectLoop(abiList); in runZygoteServer()
DZygoteServer.java196 private ZygoteConnection acceptCommandPeer(String abiList) { in acceptCommandPeer() argument
198 return createNewConnection(mZygoteSocket.accept(), abiList); in acceptCommandPeer()
205 protected ZygoteConnection createNewConnection(LocalSocket socket, String abiList) in createNewConnection() argument
207 return new ZygoteConnection(socket, abiList); in createNewConnection()
373 Runnable runSelectLoop(String abiList) { in runSelectLoop() argument
447 ZygoteConnection newPeer = acceptCommandPeer(abiList); in runSelectLoop()
DZygoteInit.java724 private static Runnable forkSystemServer(String abiList, String socketName, in forkSystemServer() argument
793 if (hasSecondZygote(abiList)) { in forkSystemServer()
849 String abiList = null; in main() local
857 abiList = argv[i].substring(ABI_LIST_ARG.length()); in main()
867 if (abiList == null) { in main()
903 Runnable r = forkSystemServer(abiList, zygoteSocketName, zygoteServer); in main()
917 caller = zygoteServer.runSelectLoop(abiList); in main()
940 private static boolean hasSecondZygote(String abiList) { in hasSecondZygote() argument
941 return !SystemProperties.get("ro.product.cpu.abilist").equals(abiList); in hasSecondZygote()
DZygoteConnection.java80 private final String abiList; field in ZygoteConnection
90 ZygoteConnection(LocalSocket socket, String abiList) throws IOException { in ZygoteConnection() argument
92 this.abiList = abiList; in ZygoteConnection()
299 final byte[] abiListBytes = abiList.getBytes(StandardCharsets.US_ASCII); in handleAbiListQuery()
/frameworks/base/core/java/android/os/
DBuild.java207 final String[] abiList;
209 abiList = SUPPORTED_64_BIT_ABIS;
211 abiList = SUPPORTED_32_BIT_ABIS;
214 CPU_ABI = abiList[0];
215 if (abiList.length > 1) {
216 CPU_ABI2 = abiList[1];
DZygoteProcess.java156 List<String> abiList) { in ZygoteState() argument
162 this.mAbiList = abiList; in ZygoteState()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerService.java12422 String[] abiList = (cpuAbiOverride != null) ?
12432 abiList = Build.SUPPORTED_32_BIT_ABIS;
12440 nativeLibraryRoot, abiList, useIsaSpecificSubdirs);
12443 copyRet = NativeLibraryHelper.findSupportedAbi(handle, abiList);
12458 pkg.applicationInfo.primaryCpuAbi = abiList[copyRet];
12462 pkg.applicationInfo.primaryCpuAbi = abiList[0];