/frameworks/base/core/java/com/android/internal/content/ |
D | NativeLibraryHelper.java | 306 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/ |
D | AppZygoteInit.java | 45 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()
|
D | WebViewZygoteInit.java | 46 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()
|
D | ChildZygoteInit.java | 81 String abiList = parseAbiListFromArgs(args); in runZygoteServer() local 82 if (abiList == null) { in runZygoteServer() 125 caller = server.runSelectLoop(abiList); in runZygoteServer()
|
D | ZygoteServer.java | 219 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() 424 Runnable runSelectLoop(String abiList) { in runSelectLoop() argument 537 ZygoteConnection newPeer = acceptCommandPeer(abiList); in runSelectLoop()
|
D | ZygoteInit.java | 708 private static Runnable forkSystemServer(String abiList, String socketName, in forkSystemServer() argument 785 if (hasSecondZygote(abiList)) { in forkSystemServer() 853 String abiList = null; in main() local 861 abiList = argv[i].substring(ABI_LIST_ARG.length()); in main() 871 if (abiList == null) { in main() 901 Runnable r = forkSystemServer(abiList, zygoteSocketName, zygoteServer); in main() 915 caller = zygoteServer.runSelectLoop(abiList); in main() 938 private static boolean hasSecondZygote(String abiList) { in hasSecondZygote() argument 939 return !SystemProperties.get("ro.product.cpu.abilist").equals(abiList); in hasSecondZygote()
|
D | ZygoteConnection.java | 73 private final String abiList; field in ZygoteConnection 83 ZygoteConnection(LocalSocket socket, String abiList) throws IOException { in ZygoteConnection() argument 85 this.abiList = abiList; in ZygoteConnection() 288 final byte[] abiListBytes = abiList.getBytes(StandardCharsets.US_ASCII); in handleAbiListQuery()
|
/frameworks/base/core/java/android/os/ |
D | Build.java | 215 final String[] abiList; 217 abiList = SUPPORTED_64_BIT_ABIS; 219 abiList = SUPPORTED_32_BIT_ABIS; 222 CPU_ABI = abiList[0]; 223 if (abiList.length > 1) { 224 CPU_ABI2 = abiList[1];
|
D | ZygoteProcess.java | 167 List<String> abiList) { in ZygoteState() argument 173 this.mAbiList = abiList; in ZygoteState()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | PackageAbiHelperImpl.java | 405 String[] abiList = (cpuAbiOverride != null) in derivePackageAbi() local 415 abiList = Build.SUPPORTED_32_BIT_ABIS; in derivePackageAbi() 423 nativeLibraryRoot, abiList, useIsaSpecificSubdirs); in derivePackageAbi() 426 copyRet = NativeLibraryHelper.findSupportedAbi(handle, abiList); in derivePackageAbi() 441 primaryCpuAbi = abiList[copyRet]; in derivePackageAbi() 446 primaryCpuAbi = abiList[0]; in derivePackageAbi()
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 54116 Landroid/os/ZygoteProcess$ZygoteState;->abiList:Ljava/util/List;
|