/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() 425 Runnable runSelectLoop(String abiList) { in runSelectLoop() argument 541 ZygoteConnection newPeer = acceptCommandPeer(abiList); in runSelectLoop()
|
D | ZygoteInit.java | 753 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()
|
D | ZygoteConnection.java | 71 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/ |
D | NativeLibraryHelper.java | 311 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/ |
D | Build.java | 252 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];
|
D | ZygoteProcess.java | 169 List<String> abiList) { in ZygoteState() argument 175 this.mAbiList = abiList; in ZygoteState()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | PackageAbiHelperImpl.java | 401 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/ |
D | hiddenapi-max-target-o.txt | 43554 Landroid/os/ZygoteProcess$ZygoteState;->abiList:Ljava/util/List;
|