Home
last modified time | relevance | path

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

/device/generic/goldfish/radio/ril/
Dif_monitor.h25 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);
Dif_monitor.cpp381 struct ifMonitor* ifMonitorCreate() { in ifMonitorCreate()
386 return reinterpret_cast<struct ifMonitor*>(monitor.release()); in ifMonitorCreate()
390 void ifMonitorFree(struct ifMonitor* ifMonitor) { in ifMonitorFree() argument
391 InterfaceMonitor* monitor = reinterpret_cast<InterfaceMonitor*>(ifMonitor); in ifMonitorFree()
396 void ifMonitorSetCallback(struct ifMonitor* ifMonitor, in ifMonitorSetCallback() argument
398 InterfaceMonitor* monitor = reinterpret_cast<InterfaceMonitor*>(ifMonitor); in ifMonitorSetCallback()
403 void ifMonitorRunAsync(struct ifMonitor* ifMonitor) { in ifMonitorRunAsync() argument
404 InterfaceMonitor* monitor = reinterpret_cast<InterfaceMonitor*>(ifMonitor); in ifMonitorRunAsync()
410 void ifMonitorStop(struct ifMonitor* ifMonitor) { in ifMonitorStop() argument
411 InterfaceMonitor* monitor = reinterpret_cast<InterfaceMonitor*>(ifMonitor); in ifMonitorStop()
Dreference-ril.c4114 struct ifMonitor* ifMonitor = ifMonitorCreate(); local
4121 ifMonitorSetCallback(ifMonitor, &onInterfaceAddressChange);
4122 ifMonitorRunAsync(ifMonitor);
4175 ifMonitorStop(ifMonitor);
4176 ifMonitorFree(ifMonitor);