Lines Matching refs:handler
60 OnStationEventHandler handler) { in CaptureStationEventHandler() argument
61 *out_handler = handler; in CaptureStationEventHandler()
67 OnChannelSwitchEventHandler handler) { in CaptureChannelSwitchEventHandler() argument
68 *out_handler = handler; in CaptureChannelSwitchEventHandler()
94 OnStationEventHandler handler; in TEST_F() local
96 .WillOnce(Invoke(bind(CaptureStationEventHandler, &handler, _1, _2))); in TEST_F()
110 handler(NEW_STATION, fake_mac_address_01); in TEST_F()
111 handler(NEW_STATION, fake_mac_address_02); in TEST_F()
112 handler(DEL_STATION, fake_mac_address_01); in TEST_F()
116 OnStationEventHandler handler; in TEST_F() local
118 .WillOnce(Invoke(bind(CaptureStationEventHandler, &handler, _1, _2))); in TEST_F()
131 handler(NEW_STATION, fake_mac_address_01); in TEST_F()
132 handler(NEW_STATION, fake_mac_address_01); in TEST_F()
133 handler(DEL_STATION, fake_mac_address_01); in TEST_F()
134 handler(DEL_STATION, fake_mac_address_01); in TEST_F()
138 OnChannelSwitchEventHandler handler; in TEST_F() local
140 .WillOnce(Invoke(bind(CaptureChannelSwitchEventHandler, &handler, _1, _2))); in TEST_F()
155 handler(kTestChannelFrequency, kTestChannelBandwidth); in TEST_F()