• Home
  • Raw
  • Download

Lines Matching refs:interface_index

1021 void Metrics::RegisterDevice(int interface_index,  in RegisterDevice()  argument
1023 SLOG(this, 2) << __func__ << ": " << interface_index; in RegisterDevice()
1025 devices_metrics_[interface_index] = device_metrics; in RegisterDevice()
1086 bool Metrics::IsDeviceRegistered(int interface_index, in IsDeviceRegistered() argument
1088 SLOG(this, 2) << __func__ << ": interface index: " << interface_index in IsDeviceRegistered()
1090 DeviceMetrics* device_metrics = GetDeviceMetrics(interface_index); in IsDeviceRegistered()
1097 void Metrics::DeregisterDevice(int interface_index) { in DeregisterDevice() argument
1098 SLOG(this, 2) << __func__ << ": interface index: " << interface_index; in DeregisterDevice()
1100 DeviceMetrics* device_metrics = GetDeviceMetrics(interface_index); in DeregisterDevice()
1105 devices_metrics_.erase(interface_index); in DeregisterDevice()
1108 void Metrics::NotifyDeviceInitialized(int interface_index) { in NotifyDeviceInitialized() argument
1109 DeviceMetrics* device_metrics = GetDeviceMetrics(interface_index); in NotifyDeviceInitialized()
1117 void Metrics::NotifyDeviceEnableStarted(int interface_index) { in NotifyDeviceEnableStarted() argument
1118 DeviceMetrics* device_metrics = GetDeviceMetrics(interface_index); in NotifyDeviceEnableStarted()
1124 void Metrics::NotifyDeviceEnableFinished(int interface_index) { in NotifyDeviceEnableFinished() argument
1125 DeviceMetrics* device_metrics = GetDeviceMetrics(interface_index); in NotifyDeviceEnableFinished()
1133 void Metrics::NotifyDeviceDisableStarted(int interface_index) { in NotifyDeviceDisableStarted() argument
1134 DeviceMetrics* device_metrics = GetDeviceMetrics(interface_index); in NotifyDeviceDisableStarted()
1140 void Metrics::NotifyDeviceDisableFinished(int interface_index) { in NotifyDeviceDisableFinished() argument
1141 DeviceMetrics* device_metrics = GetDeviceMetrics(interface_index); in NotifyDeviceDisableFinished()
1149 void Metrics::NotifyDeviceScanStarted(int interface_index) { in NotifyDeviceScanStarted() argument
1150 DeviceMetrics* device_metrics = GetDeviceMetrics(interface_index); in NotifyDeviceScanStarted()
1157 void Metrics::NotifyDeviceScanFinished(int interface_index) { in NotifyDeviceScanFinished() argument
1158 DeviceMetrics* device_metrics = GetDeviceMetrics(interface_index); in NotifyDeviceScanFinished()
1173 void Metrics::ResetScanTimer(int interface_index) { in ResetScanTimer() argument
1174 DeviceMetrics* device_metrics = GetDeviceMetrics(interface_index); in ResetScanTimer()
1180 void Metrics::NotifyDeviceConnectStarted(int interface_index, in NotifyDeviceConnectStarted() argument
1182 DeviceMetrics* device_metrics = GetDeviceMetrics(interface_index); in NotifyDeviceConnectStarted()
1196 void Metrics::NotifyDeviceConnectFinished(int interface_index) { in NotifyDeviceConnectFinished() argument
1197 DeviceMetrics* device_metrics = GetDeviceMetrics(interface_index); in NotifyDeviceConnectFinished()
1225 void Metrics::ResetConnectTimer(int interface_index) { in ResetConnectTimer() argument
1226 DeviceMetrics* device_metrics = GetDeviceMetrics(interface_index); in ResetConnectTimer()
1738 Metrics::DeviceMetrics* Metrics::GetDeviceMetrics(int interface_index) const { in GetDeviceMetrics()
1740 devices_metrics_.find(interface_index); in GetDeviceMetrics()
1742 SLOG(this, 2) << __func__ << ": device " << interface_index in GetDeviceMetrics()