Searched refs:device_ (Results 1 – 2 of 2) sorted by relevance
29 : bus_(bus), device_(device), function_(function) { in Address()30 if (bus_ > kMaxBus || device_ > kMaxDevice || function_ > kMaxFunction) { in Address()32 << " device: " << device_ << " function: " << function_; in Address()
28 unsigned int Device() const { return device_; } in Device()31 return fmt::format("{:02x}:{:02x}.{:01x}", bus_, device_, function_); in Id()36 unsigned int device_; variable