Home | History | Annotate | Download | only in server

Lines Matching defs:AccessPoint

494             mHandler.checkAp(new AccessPoint(ssid, bssid));
670 private void handleCheckAp(AccessPoint ap) {
675 myLogV("handleCheckAp: AccessPoint: " + ap);
722 private void handleApAlive(AccessPoint ap) {
741 private void handleApUnresponsive(AccessPoint ap) {
783 private void handleBackgroundCheckAp(AccessPoint ap) {
788 myLogV("handleBackgroundCheckAp: AccessPoint: " + ap);
995 /** Check whether the AP is "good". The object will be an {@link AccessPoint}. */
1001 * The object will be an {@link AccessPoint}.
1025 void checkAp(AccessPoint ap) {
1030 void backgroundCheckAp(AccessPoint ap) {
1081 handleCheckAp((AccessPoint) msg.obj);
1084 handleBackgroundCheckAp((AccessPoint) msg.obj);
1164 private static class AccessPoint {
1168 AccessPoint(String ssid, String bssid) {
1179 if (!(o instanceof AccessPoint)) return false;
1180 AccessPoint otherAp = (AccessPoint) o;