Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/java/com/android/server/wifi/
DSupplicantStaNetworkCallbackHidlV1_4Impl.java76 public void onTransitionDisable(int indicationBits) { in onTransitionDisable() argument
80 if (0 != (indicationBits & TransitionDisableIndication.USE_WPA3_PERSONAL)) { in onTransitionDisable()
83 if (0 != (indicationBits & TransitionDisableIndication.USE_SAE_PK)) { in onTransitionDisable()
86 if (0 != (indicationBits & TransitionDisableIndication.USE_WPA3_ENTERPRISE)) { in onTransitionDisable()
89 if (0 != (indicationBits & TransitionDisableIndication.USE_ENHANCED_OPEN)) { in onTransitionDisable()
DSupplicantStaNetworkCallbackAidlImpl.java102 public void onTransitionDisable(int indicationBits) { in onTransitionDisable() argument
106 if ((indicationBits & TransitionDisableIndication.USE_WPA3_PERSONAL) != 0) { in onTransitionDisable()
109 if ((indicationBits & TransitionDisableIndication.USE_SAE_PK) != 0) { in onTransitionDisable()
112 if ((indicationBits & TransitionDisableIndication.USE_WPA3_ENTERPRISE) != 0) { in onTransitionDisable()
115 if ((indicationBits & TransitionDisableIndication.USE_ENHANCED_OPEN) != 0) { in onTransitionDisable()
DWifiMonitor.java472 @TransitionDisableIndication int indicationBits) { in broadcastTransitionDisableEvent() argument
473 sendMessage(iface, TRANSITION_DISABLE_INDICATION, networkId, indicationBits); in broadcastTransitionDisableEvent()