Home
last modified time | relevance | path

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

/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.java219 private ZygoteConnection acceptCommandPeer(String abiList) { in acceptCommandPeer() argument
221 return createNewConnection(mZygoteSocket.accept(), abiList); in acceptCommandPeer()
228 protected ZygoteConnection createNewConnection(LocalSocket socket, String abiList) in createNewConnection() argument
230 return new ZygoteConnection(socket, abiList); in createNewConnection()
425 Runnable runSelectLoop(String abiList) { in runSelectLoop() argument
541 ZygoteConnection newPeer = acceptCommandPeer(abiList); in runSelectLoop()
DZygoteInit.java753 private static Runnable forkSystemServer(String abiList, String socketName, in forkSystemServer() argument
850 if (hasSecondZygote(abiList)) { in forkSystemServer()
917 String abiList = null; in main() local
925 abiList = argv[i].substring(ABI_LIST_ARG.length()); in main()
946 if (abiList == null) { in main()
976 Runnable r = forkSystemServer(abiList, zygoteSocketName, zygoteServer); in main()
990 caller = zygoteServer.runSelectLoop(abiList); in main()
1013 private static boolean hasSecondZygote(String abiList) { in hasSecondZygote() argument
1014 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()
324 final byte[] abiListBytes = abiList.getBytes(StandardCharsets.US_ASCII); in handleAbiListQuery()
/frameworks/base/core/java/com/android/internal/content/
DNativeLibraryHelper.java311 private static long sumNativeBinariesForSupportedAbi(Handle handle, String[] abiList) { in sumNativeBinariesForSupportedAbi() argument
312 int abi = findSupportedAbi(handle, abiList); in sumNativeBinariesForSupportedAbi()
314 return sumNativeBinaries(handle, abiList[abi]); in sumNativeBinariesForSupportedAbi()
321 String[] abiList, boolean useIsaSubdir, boolean isIncremental) throws IOException { in copyNativeBinariesForSupportedAbi() argument
326 int abi = findSupportedAbi(handle, abiList); in copyNativeBinariesForSupportedAbi()
335 final String supportedAbi = abiList[abi]; in copyNativeBinariesForSupportedAbi()
414 String[] abiList = (cpuAbiOverride != null) ? in copyNativeBinariesWithOverride() local
418 abiList = Build.SUPPORTED_32_BIT_ABIS; in copyNativeBinariesWithOverride()
421 int copyRet = copyNativeBinariesForSupportedAbi(handle, libraryRoot, abiList, in copyNativeBinariesWithOverride()
462 String[] abiList = (cpuAbiOverride != null) ? in sumNativeBinariesWithOverride() local
[all …]
/frameworks/base/core/java/android/os/
DBuild.java252 final String[] abiList;
254 abiList = SUPPORTED_64_BIT_ABIS;
256 abiList = SUPPORTED_32_BIT_ABIS;
259 CPU_ABI = abiList[0];
260 if (abiList.length > 1) {
261 CPU_ABI2 = abiList[1];
DZygoteProcess.java169 List<String> abiList) { in ZygoteState() argument
175 this.mAbiList = abiList; in ZygoteState()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageAbiHelperImpl.java401 String[] abiList = (cpuAbiOverride != null) in derivePackageAbi() local
417 abiList = Build.SUPPORTED_32_BIT_ABIS; in derivePackageAbi()
431 nativeLibraryRoot, abiList, useIsaSpecificSubdirs, onIncremental); in derivePackageAbi()
434 copyRet = NativeLibraryHelper.findSupportedAbi(handle, abiList); in derivePackageAbi()
449 primaryCpuAbi = abiList[copyRet]; in derivePackageAbi()
454 primaryCpuAbi = abiList[0]; in derivePackageAbi()
/frameworks/base/boot/hiddenapi/
Dhiddenapi-max-target-o.txt43554 Landroid/os/ZygoteProcess$ZygoteState;->abiList:Ljava/util/List;