Searched refs:ifMonitor (Results 1 – 3 of 3) sorted by relevance
25 struct ifMonitor;38 struct ifMonitor* ifMonitorCreate();39 void ifMonitorFree(struct ifMonitor* monitor);41 void ifMonitorSetCallback(struct ifMonitor* monitor,43 void ifMonitorRunAsync(struct ifMonitor* monitor);44 void ifMonitorStop(struct ifMonitor* monitor);
381 struct ifMonitor* ifMonitorCreate() { in ifMonitorCreate()386 return reinterpret_cast<struct ifMonitor*>(monitor.release()); in ifMonitorCreate()390 void ifMonitorFree(struct ifMonitor* ifMonitor) { in ifMonitorFree() argument391 InterfaceMonitor* monitor = reinterpret_cast<InterfaceMonitor*>(ifMonitor); in ifMonitorFree()396 void ifMonitorSetCallback(struct ifMonitor* ifMonitor, in ifMonitorSetCallback() argument398 InterfaceMonitor* monitor = reinterpret_cast<InterfaceMonitor*>(ifMonitor); in ifMonitorSetCallback()403 void ifMonitorRunAsync(struct ifMonitor* ifMonitor) { in ifMonitorRunAsync() argument404 InterfaceMonitor* monitor = reinterpret_cast<InterfaceMonitor*>(ifMonitor); in ifMonitorRunAsync()410 void ifMonitorStop(struct ifMonitor* ifMonitor) { in ifMonitorStop() argument411 InterfaceMonitor* monitor = reinterpret_cast<InterfaceMonitor*>(ifMonitor); in ifMonitorStop()
4114 struct ifMonitor* ifMonitor = ifMonitorCreate(); local4121 ifMonitorSetCallback(ifMonitor, &onInterfaceAddressChange);4122 ifMonitorRunAsync(ifMonitor);4175 ifMonitorStop(ifMonitor);4176 ifMonitorFree(ifMonitor);