Called by the userspace IORegistryEntrySetCFProperties function
| 379 | |
| 380 | // Called by the userspace IORegistryEntrySetCFProperties function |
| 381 | IOReturn Wireless360Controller::setProperties(OSObject *properties) |
| 382 | { |
| 383 | OSDictionary *dictionary = OSDynamicCast(OSDictionary,properties); |
| 384 | |
| 385 | if(dictionary!=NULL) { |
| 386 | setProperty(kDriverSettingKey,dictionary); |
| 387 | readSettings(); |
| 388 | return kIOReturnSuccess; |
| 389 | } else return kIOReturnBadArgument; |
| 390 | } |
| 391 | |
| 392 | // Get info |
| 393 |
nothing calls this directly
no outgoing calls
no test coverage detected