Lines Matching refs:obj
105 OSSharedPtr<OSObject> obj; in start() local
126 obj = provider->copyProperty("iommu-id"); in start()
127 if (!obj) { in start()
128 obj = provider->copyProperty("AAPL,phandle"); in start()
130 if (obj) { in start()
131 setProperty(gIOMapperIDKey, obj.get()); in start()
177 OSSharedPtr<OSObject> obj; in copyMapperForDeviceWithIndex() local
181 obj = device->copyProperty("iommu-parent"); in copyMapperForDeviceWithIndex()
182 if (!obj) { in copyMapperForDeviceWithIndex()
186 if ((mapper = OSDynamicPtrCast<IOMapper>(obj))) { in copyMapperForDeviceWithIndex()
190 if ((data = OSDynamicPtrCast<OSData>(obj))) { in copyMapperForDeviceWithIndex()
202 matching = IOService::propertyMatching(gIOMapperIDKey, obj.get()); in copyMapperForDeviceWithIndex()