Searched refs:MIN_MLO_LINK_ID (Results 1 – 3 of 3) sorted by relevance
21 import static android.net.wifi.MloLink.MIN_MLO_LINK_ID;115 if (mloLinkId >= MIN_MLO_LINK_ID && mloLinkId <= MAX_MLO_LINK_ID) {179 @IntRange(from = MIN_MLO_LINK_ID, to = MAX_MLO_LINK_ID) int linkId) { in setLinkId()180 if (linkId < MIN_MLO_LINK_ID || linkId > MAX_MLO_LINK_ID) { in setLinkId()
20 import static android.net.wifi.MloLink.MIN_MLO_LINK_ID;46 assertThrows(IllegalArgumentException.class, () -> builder.setLinkId(MIN_MLO_LINK_ID - 1)); in testTwtRequest()
53 public static final int MIN_MLO_LINK_ID = 0; field in MloLink