Searched refs:functionName (Results 1 - 7 of 7) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/libkern/ppc/
H A DOSAtomic.s42 ; ENTRY functionName
46 ; Takes: functionName - name of the exported function
/macosx-10.5.8/xnu-1228.15.4/iokit/Kernel/ppc/
H A DIOAsmSupport.s42 ; ENTRY functionName
46 ; Takes: functionName - name of the exported function
/macosx-10.5.8/xnu-1228.15.4/iokit/bsddev/
H A DIOKitBSDInit.cpp799 const OSSymbol *functionName = OSSymbol::withCStringNoCopy("SecureRootName"); local
805 result = pe->callPlatformFunction(functionName, false, (void *)rootName, (void *)0, (void *)0, (void *)0);
807 functionName->release();
/macosx-10.5.8/xnu-1228.15.4/iokit/IOKit/
H A DIOPlatformExpert.h151 virtual IOReturn callPlatformFunction(const OSSymbol *functionName,
H A DIOService.h886 @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.
887 @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.
891 virtual IOReturn callPlatformFunction( const OSSymbol * functionName,
896 virtual IOReturn callPlatformFunction( const char * functionName,
/macosx-10.5.8/xnu-1228.15.4/iokit/Kernel/
H A DIOPlatformExpert.cpp918 IOReturn IOPlatformExpert::callPlatformFunction(const OSSymbol *functionName, argument
926 _resources = waitForService(resourceMatching(functionName));
932 service = OSDynamicCast(IOService, _resources->getProperty(functionName));
935 return service->callPlatformFunction(functionName, waitForFunction,
H A DIOService.cpp841 IOReturn IOService::callPlatformFunction( const OSSymbol * functionName, argument
849 if (gIOPlatformFunctionHandlerSet == functionName)
864 result = provider->callPlatformFunction(functionName, waitForFunction,
871 IOReturn IOService::callPlatformFunction( const char * functionName, argument
877 const OSSymbol *functionSymbol = OSSymbol::withCString(functionName);

Completed in 85 milliseconds