Home
last modified time | relevance | path

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

/packages/modules/IPsec/src/java/android/net/ipsec/ike/
DIkeSaProposal.java99 int[] integrityAlgoIdArray = in.getIntArray(INTEGRITY_ALGO_KEY); in fromPersistableBundle() local
100 Objects.requireNonNull(integrityAlgoIdArray, "Integrity algo array is null"); in fromPersistableBundle()
101 for (int algo : integrityAlgoIdArray) { in fromPersistableBundle()
DChildSaProposal.java122 int[] integrityAlgoIdArray = in.getIntArray(INTEGRITY_ALGO_KEY); in fromPersistableBundle() local
123 Objects.requireNonNull(integrityAlgoIdArray, "Integrity algo array is null"); in fromPersistableBundle()
124 for (int algo : integrityAlgoIdArray) { in fromPersistableBundle()
DSaProposal.java312 int[] integrityAlgoIdArray = getIntegrityAlgorithms().stream().mapToInt(i -> i).toArray(); in toPersistableBundle() local
313 result.putIntArray(INTEGRITY_ALGO_KEY, integrityAlgoIdArray); in toPersistableBundle()