Home
last modified time | relevance | path

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

/packages/modules/IPsec/src/java/android/net/ipsec/ike/
DIkeSaProposal.java105 int[] dhGroupArray = in.getIntArray(DH_GROUP_KEY); in fromPersistableBundle() local
106 Objects.requireNonNull(dhGroupArray, "DH Group array is null"); in fromPersistableBundle()
107 for (int dh : dhGroupArray) { in fromPersistableBundle()
DChildSaProposal.java128 int[] dhGroupArray = in.getIntArray(DH_GROUP_KEY); in fromPersistableBundle() local
129 Objects.requireNonNull(dhGroupArray, "DH Group array is null"); in fromPersistableBundle()
130 for (int dh : dhGroupArray) { in fromPersistableBundle()
DSaProposal.java315 int[] dhGroupArray = getDhGroups().stream().mapToInt(i -> i).toArray(); in toPersistableBundle() local
316 result.putIntArray(DH_GROUP_KEY, dhGroupArray); in toPersistableBundle()