]> git.saurik.com Git - apple/xnu.git/blobdiff - iokit/Kernel/RootDomainUserClient.h
xnu-1699.22.81.tar.gz
[apple/xnu.git] / iokit / Kernel / RootDomainUserClient.h
index 481f4ed180b49f15c1fd726c820b6201d3da33e1..9e6be4003490d2cb3e9acfa4cb5ecb663159e01f 100644 (file)
@@ -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 */