Searched refs:dhGroupArray (Results 1 – 3 of 3) sorted by relevance
65 final int[] dhGroupArray = in.getIntArray(DH_GROUP_KEY); in fromPersistableBundle() local66 Objects.requireNonNull(dhGroupArray, "DH Group array was null"); in fromPersistableBundle()67 for (int dh : dhGroupArray) { in fromPersistableBundle()
73 final int[] dhGroupArray = in.getIntArray(DH_GROUP_KEY); in fromPersistableBundle() local74 Objects.requireNonNull(dhGroupArray, "DH Group array was null"); in fromPersistableBundle()75 for (int dh : dhGroupArray) { in fromPersistableBundle()
91 final int[] dhGroupArray = proposal.getDhGroups().stream().mapToInt(i -> i).toArray(); in toPersistableBundle() local92 result.putIntArray(DH_GROUP_KEY, dhGroupArray); in toPersistableBundle()