Lines Matching defs:evt

63     SupplicantEvent *evt = mFactory->createEvent(buf, nread);
65 if (!evt) {
71 if (evt->getType() == SupplicantEvent::EVENT_ASSOCIATING)
72 mHandlers->onAssociatingEvent((SupplicantAssociatingEvent *) evt);
73 else if (evt->getType() == SupplicantEvent::EVENT_ASSOCIATED)
74 mHandlers->onAssociatedEvent((SupplicantAssociatedEvent *) evt);
75 else if (evt->getType() == SupplicantEvent::EVENT_CONNECTED)
76 mHandlers->onConnectedEvent((SupplicantConnectedEvent *) evt);
77 else if (evt->getType() == SupplicantEvent::EVENT_SCAN_RESULTS)
78 mHandlers->onScanResultsEvent((SupplicantScanResultsEvent *) evt);
79 else if (evt->getType() == SupplicantEvent::EVENT_STATE_CHANGE)
80 mHandlers->onStateChangeEvent((SupplicantStateChangeEvent *) evt);
81 else if (evt->getType() == SupplicantEvent::EVENT_CONNECTIONTIMEOUT)
82 mHandlers->onConnectionTimeoutEvent((SupplicantConnectionTimeoutEvent *) evt);
83 else if (evt->getType() == SupplicantEvent::EVENT_DISCONNECTED)
84 mHandlers->onDisconnectedEvent((SupplicantDisconnectedEvent *) evt);
88 else if (evt->getType() == SupplicantEvent::EVENT_TERMINATING)
89 mHandlers->onTerminatingEvent(evt);
90 else if (evt->getType() == SupplicantEvent::EVENT_PASSWORD_CHANGED)
91 mHandlers->onPasswordChangedEvent(evt);
92 else if (evt->getType() == SupplicantEvent::EVENT_EAP_NOTIFICATION)
93 mHandlers->onEapNotificationEvent(evt);
94 else if (evt->getType() == SupplicantEvent::EVENT_EAP_STARTED)
95 mHandlers->onEapStartedEvent(evt);
96 else if (evt->getType() == SupplicantEvent::EVENT_EAP_SUCCESS)
97 mHandlers->onEapSuccessEvent(evt);
98 else if (evt->getType() == SupplicantEvent::EVENT_EAP_FAILURE)
99 mHandlers->onEapFailureEvent(evt);
100 else if (evt->getType() == SupplicantEvent::EVENT_LINK_SPEED)
101 mHandlers->onLinkSpeedEvent(evt);
102 else if (evt->getType() == SupplicantEvent::EVENT_DRIVER_STATE)
103 mHandlers->onDriverStateEvent(evt);
106 delete evt;