Home
last modified time | relevance | path

Searched refs:dhGroupArray (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/net/vcn/persistablebundleutils/
DChildSaProposalUtils.java65 final int[] dhGroupArray = in.getIntArray(DH_GROUP_KEY); in fromPersistableBundle() local
66 Objects.requireNonNull(dhGroupArray, "DH Group array was null"); in fromPersistableBundle()
67 for (int dh : dhGroupArray) { in fromPersistableBundle()
DIkeSaProposalUtils.java73 final int[] dhGroupArray = in.getIntArray(DH_GROUP_KEY); in fromPersistableBundle() local
74 Objects.requireNonNull(dhGroupArray, "DH Group array was null"); in fromPersistableBundle()
75 for (int dh : dhGroupArray) { in fromPersistableBundle()
DSaProposalUtilsBase.java91 final int[] dhGroupArray = proposal.getDhGroups().stream().mapToInt(i -> i).toArray(); in toPersistableBundle() local
92 result.putIntArray(DH_GROUP_KEY, dhGroupArray); in toPersistableBundle()