Searched refs:snssai (Results 1 – 5 of 5) sorted by relevance
15 public static NetworkSliceInfo getSliceInfo(byte[] snssai) { in getSliceInfo() argument16 if (snssai == null) { in getSliceInfo()38 int len = snssai.length; in getSliceInfo()42 Log.d(TAG, "Invalid S-NSSAI length : " + snssai.length); in getSliceInfo()48 siBuilder.setSliceServiceType(getSST(snssai, 0)); in getSliceInfo()51 siBuilder.setSliceServiceType(getSST(snssai, 0)); in getSliceInfo()52 siBuilder.setMappedHplmnSliceServiceType(getSST(snssai, 1)); in getSliceInfo()55 siBuilder.setSliceServiceType(getSST(snssai, 0)); in getSliceInfo()56 siBuilder.setSliceDifferentiator(getSD(snssai, 1)); in getSliceInfo()59 siBuilder.setSliceServiceType(getSST(snssai, 0)); in getSliceInfo()[all …]
42 public Ike3gppN1ModeInformation(@NonNull byte[] snssai) { in Ike3gppN1ModeInformation() argument43 Objects.requireNonNull(snssai, "snssai must not be null"); in Ike3gppN1ModeInformation()44 mSnssai = snssai.clone(); in Ike3gppN1ModeInformation()
67 byte[] snssai = new byte[snssaiLen]; in getSnssaiFromNotifyData()68 buffer.get(snssai); in getSnssaiFromNotifyData()69 return snssai; in getSnssaiFromNotifyData()
125 byte[] snssai = in handleAuthResp()127 ike3gppDataList.add(new Ike3gppN1ModeInformation(snssai)); in handleAuthResp()
52 byte[] snssai = Ike3gppN1ModeUtils.getSnssaiFromNotifyData(N1_MODE_INFORMATION_PAYLOAD); in testGetSnssaiFromNotifyData()54 assertArrayEquals(SNSSAI, snssai); in testGetSnssaiFromNotifyData()