Lines Matching refs:iot
17 template <typename IOT>
19 static IOT InvalidValue() { return IO_OBJECT_NULL; }
20 static IOT Retain(IOT iot) {
21 IOObjectRetain(iot);
22 return iot;
24 static void Release(IOT iot) { IOObjectRelease(iot); }
30 template <typename IOT>
31 using ScopedIOObject = ScopedTypeRef<IOT, internal::ScopedIOObjectTraits<IOT>>;