X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/21362eb3e66fd2c787aee132bce100a44d71a99c..7ee9d059c4eecf68ae4f8b0fb99ae2471eda79af:/iokit/Kernel/RootDomainUserClient.h diff --git a/iokit/Kernel/RootDomainUserClient.h b/iokit/Kernel/RootDomainUserClient.h index 481f4ed18..9e6be4003 100644 --- a/iokit/Kernel/RootDomainUserClient.h +++ b/iokit/Kernel/RootDomainUserClient.h @@ -46,25 +46,50 @@ class RootDomainUserClient : public IOUserClient { OSDeclareDefaultStructors(RootDomainUserClient) + friend class IOPMrootDomain; private: IOPMrootDomain * fOwner; task_t fOwningTask; - IOReturn secureSleepSystem( int *return_code ); - IOReturn secureSetAggressiveness( unsigned long type, unsigned long newLevel, int *return_code ); + IOReturn secureSleepSystem( uint32_t *return_code ); + + IOReturn secureSleepSystemOptions( const void *inOptions, + IOByteCount inOptionsSize, + uint32_t *returnCode); + + IOReturn secureSetAggressiveness( unsigned long type, + unsigned long newLevel, + int *return_code ); + + IOReturn secureSetMaintenanceWakeCalendar( + IOPMCalendarStruct *inCalendar, + uint32_t *returnCode); + + IOReturn secureSetUserAssertionLevels(uint32_t assertionBitfield); public: virtual IOReturn clientClose( void ); - virtual IOExternalMethod * getTargetAndMethodForIndex( IOService ** targetP, UInt32 index ); + virtual IOReturn clientMemoryForType( UInt32 type, IOOptionBits *options, IOMemoryDescriptor **memory); + + virtual IOReturn externalMethod( uint32_t selector, + IOExternalMethodArguments * arguments, + IOExternalMethodDispatch * dispatch, + OSObject * target, + void * reference ); virtual bool start( IOService * provider ); - virtual bool initWithTask(task_t owningTask, void *security_id, UInt32); + virtual bool initWithTask(task_t owningTask, void *security_id, + UInt32 type, OSDictionary * properties); + // Unused - retained for symbol compatibility void setPreventative(UInt32 on_off, UInt32 types_of_sleep); + // Unused - retained for symbol compatibility + virtual IOExternalMethod * getTargetAndMethodForIndex( IOService ** targetP, UInt32 index ); + }; #endif /* ! _IOKIT_ROOTDOMAINUSERCLIENT_H */