Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/content/
DNativeLibraryHelper.java310 private static long sumNativeBinariesForSupportedAbi(Handle handle, String[] abiList) { in sumNativeBinariesForSupportedAbi() argument
311 int abi = findSupportedAbi(handle, abiList); in sumNativeBinariesForSupportedAbi()
313 return sumNativeBinaries(handle, abiList[abi]); in sumNativeBinariesForSupportedAbi()
320 String[] abiList, boolean useIsaSubdir, boolean isIncremental) throws IOException { in copyNativeBinariesForSupportedAbi() argument
325 int abi = findSupportedAbi(handle, abiList); in copyNativeBinariesForSupportedAbi()
334 final String supportedAbi = abiList[abi]; in copyNativeBinariesForSupportedAbi()
413 String[] abiList = (cpuAbiOverride != null) ? in copyNativeBinariesWithOverride() local
417 abiList = Build.SUPPORTED_32_BIT_ABIS; in copyNativeBinariesWithOverride()
420 int copyRet = copyNativeBinariesForSupportedAbi(handle, libraryRoot, abiList, in copyNativeBinariesWithOverride()
461 String[] abiList = (cpuAbiOverride != null) ? in sumNativeBinariesWithOverride() local
[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.java199 private ZygoteConnection acceptCommandPeer(String abiList) { in acceptCommandPeer() argument
201 return createNewConnection(mZygoteSocket.accept(), abiList); in acceptCommandPeer()
208 protected ZygoteConnection createNewConnection(LocalSocket socket, String abiList) in createNewConnection() argument
210 return new ZygoteConnection(socket, abiList); in createNewConnection()
394 Runnable runSelectLoop(String abiList) { in runSelectLoop() argument
510 ZygoteConnection newPeer = acceptCommandPeer(abiList); in runSelectLoop()
DZygoteInit.java632 private static Runnable forkSystemServer(String abiList, String socketName, in forkSystemServer() argument
733 if (hasSecondZygote(abiList)) { in forkSystemServer()
800 String abiList = null; in main() local
808 abiList = argv[i].substring(ABI_LIST_ARG.length()); in main()
829 if (abiList == null) { in main()
859 Runnable r = forkSystemServer(abiList, zygoteSocketName, zygoteServer); in main()
873 caller = zygoteServer.runSelectLoop(abiList); in main()
896 private static boolean hasSecondZygote(String abiList) { in hasSecondZygote() argument
897 return !SystemProperties.get("ro.product.cpu.abilist").equals(abiList); in hasSecondZygote()
DZygoteConnection.java71 private final String abiList; field in ZygoteConnection
81 ZygoteConnection(LocalSocket socket, String abiList) throws IOException { in ZygoteConnection() argument
83 this.abiList = abiList; in ZygoteConnection()
327 final byte[] abiListBytes = abiList.getBytes(StandardCharsets.US_ASCII); in handleAbiListQuery()
/frameworks/base/core/java/android/os/
DBuild.java316 final String[] abiList;
318 abiList = SUPPORTED_64_BIT_ABIS;
320 abiList = SUPPORTED_32_BIT_ABIS;
323 CPU_ABI = abiList[0];
324 if (abiList.length > 1) {
325 CPU_ABI2 = abiList[1];
DZygoteProcess.java162 List<String> abiList) { in ZygoteState() argument
168 this.mAbiList = abiList; in ZygoteState()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageAbiHelperImpl.java469 String[] abiList = (cpuAbiOverride != null) in derivePackageAbi() local
485 abiList = Build.SUPPORTED_32_BIT_ABIS; in derivePackageAbi()
499 nativeLibraryRoot, abiList, useIsaSpecificSubdirs, onIncremental); in derivePackageAbi()
502 copyRet = NativeLibraryHelper.findSupportedAbi(handle, abiList); in derivePackageAbi()
517 primaryCpuAbi = abiList[copyRet]; in derivePackageAbi()
522 primaryCpuAbi = abiList[0]; in derivePackageAbi()
/frameworks/base/boot/hiddenapi/
Dhiddenapi-max-target-o.txt39588 Landroid/os/ZygoteProcess$ZygoteState;->abiList:Ljava/util/List;