Searched refs:callPlatformFunction (Results 1 - 8 of 8) sorted by relevance

/xnu-2782.1.97/iokit/IOKit/
H A DIOPlatformExpert.h165 virtual IOReturn callPlatformFunction(const OSSymbol *functionName,
H A DIOService.h988 /*! @function callPlatformFunction
990 @discussion The platform expert or other drivers may implement various functions to control hardware features. <code>callPlatformFunction</code> allows any IOService object to access these functions. Normally <code>callPlatformFunction</code> is called on a service's provider. The provider services the request or passes it to its provider. The system's IOPlatformExpert subclass catches functions it knows about and redirects them into other parts of the service plane. If the IOPlatformExpert subclass cannot execute the function, the base class is called. The IOPlatformExpert base class attempts to find a service to execute the function by looking up the function name in an IOResources name space. A service may publish a service using <code>publishResource(functionName, this)</code>. If no service can be found to execute the function an error is returned.
991 @param functionName Name of the function to be called. When <code>functionName</code> is a C string, <code>callPlatformFunction</code> converts the C string to an OSSymbol and calls the OSSymbol version of <code>callPlatformFunction</code>. This process can block and should not be used from an interrupt context.
992 @param waitForFunction If <code>true</code>, <code>callPlatformFunction</code> will not return until the function has been called.
995 virtual IOReturn callPlatformFunction( const OSSymbol * functionName,
1000 virtual IOReturn callPlatformFunction( const char * functionName,
/xnu-2782.1.97/iokit/IOKit/pwr_mgt/
H A DRootDomain.h334 virtual IOReturn callPlatformFunction(
/xnu-2782.1.97/iokit/Kernel/
H A DIOPlatformExpert.cpp1062 IOReturn IOPlatformExpert::callPlatformFunction(const OSSymbol *functionName, function in class:IOPlatformExpert
1079 return service->callPlatformFunction(functionName, waitForFunction,
H A DIOCPU.cpp211 ret = service->callPlatformFunction(function, false,
H A DIOService.cpp1013 IOReturn IOService::callPlatformFunction( const OSSymbol * functionName, function in class:IOService
1036 result = provider->callPlatformFunction(functionName, waitForFunction,
1043 IOReturn IOService::callPlatformFunction( const char * functionName, function in class:IOService
1052 result = callPlatformFunction(functionSymbol, waitForFunction,
5586 target->callPlatformFunction(sCPULatencyFunctionName[delayType], false,
5641 target->callPlatformFunction(sCPULatencyFunctionName[delayType], false,
H A DIOHibernateIO.cpp809 err = part->callPlatformFunction(PLATFORM_FUNCTION_GET_MEDIA_ENCRYPTION_KEY_UUID, false,
828 err = sKeyStore->callPlatformFunction(sAKSGetKey, true, volumeKeyUUID, &vek, NULL, NULL);
906 err = IOService::getPlatform()->callPlatformFunction(
1336 err = IOService::getPlatform()->callPlatformFunction(
H A DIOPMrootDomain.cpp179 // "IOPMSetSleepSupported" callPlatformFunction name
2540 getPlatform()->callPlatformFunction(
2629 getPlatform()->callPlatformFunction(
5659 ret = getPlatform()->callPlatformFunction(
6955 IOReturn IOPMrootDomain::callPlatformFunction( function in class:IOPMrootDomain
6998 return super::callPlatformFunction(

Completed in 125 milliseconds