Searched refs:provider (Results 1 - 25 of 69) sorted by relevance

123

/darwin-on-arm/xnu/osfmk/mach/arm/
H A Dsdt_isa.h102 #define DTRACE_CALL0ARGS(provider, name) \
104 DTRACE_CALL(provider, name) \
110 #define DTRACE_CALL1ARG(provider, name) \
112 DTRACE_CALL(provider, name) \
118 #define DTRACE_CALL2ARGS(provider, name) \
121 DTRACE_CALL(provider, name) \
127 #define DTRACE_CALL3ARGS(provider, name) \
131 DTRACE_CALL(provider, name) \
137 #define DTRACE_CALL4ARGS(provider, name) \
142 DTRACE_CALL(provider, nam
[all...]
/darwin-on-arm/xnu/osfmk/mach/i386/
H A Dsdt_isa.h103 #define DTRACE_CALL0ARGS(provider, name) \
105 DTRACE_CALL(provider, name) \
110 #define DTRACE_CALL1ARG(provider, name) \
112 DTRACE_CALL(provider, name) \
118 #define DTRACE_CALL2ARGS(provider, name) \
121 DTRACE_CALL(provider, name) \
127 #define DTRACE_CALL3ARGS(provider, name) \
131 DTRACE_CALL(provider, name) \
137 #define DTRACE_CALL4ARGS(provider, name) \
142 DTRACE_CALL(provider, nam
[all...]
/darwin-on-arm/xnu/tools/tests/testkext/
H A Dtestvmx.h13 virtual bool start( IOService * provider );
15 virtual void stop( IOService * provider );
H A Dtestvmx.cpp21 testvmx::start( IOService * provider )
27 if (!super::start(provider)) {
39 testvmx::stop( IOService * provider )
43 super::stop(provider);
H A Dtestthreadcall.h13 virtual bool start( IOService * provider );
H A Dtestthreadcall.cpp24 testthreadcall::start( IOService * provider )
31 if (!super::start(provider)) {
/darwin-on-arm/xnu/iokit/Drivers/KernelBuiltIn/ARM/AppleARMPlatform/
H A DAppleS5L8930XIO.cpp26 IOService *AppleARMIO::probe(IOService * provider, SInt32 * score) argument
31 bool AppleARMIO::start(IOService * provider) argument
33 if (!super::start(provider)) {
34 panic("failed to start super provider");
37 publishBelow(provider);
H A DAppleARMSoftIICController.cpp13 bool AppleARMSoftIICController::start(IOService * provider) argument
17 if (!super::start(provider)) {
18 panic("Failed to start super IOService provider");
26 IOService *AppleARMSoftIICController::probe(IOService * provider, SInt32 * score) argument
H A DAppleARMNMI.cpp57 bool AppleARMNMI::start(IOService * provider) argument
59 if (!super::start(provider))
65 if (provider->getProperty("enable_debugger"))
68 if (provider->getProperty("mask_NMI"))
74 provider->registerInterrupt(0, this, handler, 0);
75 provider->enableInterrupt(0);
H A DAppleARMSoftIICController.h16 virtual bool start(IOService * provider);
17 virtual IOService *probe(IOService * provider, SInt32 * score);
H A DAppleS5L8930XIO.h21 IOService *probe(IOService * provider, SInt32 * score);
22 bool start(IOService * provider);
H A DAppleARMCHRPNVRAM.cpp41 bool AppleARMCHRPNVRAM::start(IOService *provider) argument
46 return super::start(provider);
H A DAppleARMPE.h21 IOService *probe(IOService * provider, SInt32 * score);
22 bool start(IOService * provider);
/darwin-on-arm/xnu/iokit/Families/IONVRAM/
H A DIONVRAMController.cpp41 bool IONVRAMController::start(IOService *provider) argument
43 if(!super::start(provider)) return false;
/darwin-on-arm/xnu/libkern/kmod/libkmodtest/
H A Dlibkmodtest.cpp36 IOService *provider,
35 probe( IOService *provider, SInt32 *score ) argument
H A Dlibkmodtest.h36 IOService *provider,
/darwin-on-arm/xnu/iokit/Kernel/
H A DIODMAController.cpp45 IODMAController *IODMAController::getController(IOService *provider, UInt32 dmaIndex) argument
52 dmaParentData = OSDynamicCast(OSData, provider->getProperty("dma-parent"));
64 bool IODMAController::start(IOService *provider) argument
66 if (!super::start(provider)) return false;
68 _provider = provider;
/darwin-on-arm/xnu/iokit/Drivers/platform/drvAppleNMI/
H A DAppleNMI.cpp59 bool AppleNMI::start(IOService *provider) argument
61 if (!super::start(provider)) return false;
66 if (provider->getProperty("enable_debugger"))
69 if (provider->getProperty("mask_NMI"))
78 provider->registerInterrupt(0, this, handler, 0);
79 provider->enableInterrupt(0);
/darwin-on-arm/xnu/iokit/Drivers/platform/drvAppleNVRAM/
H A DAppleNVRAM.cpp41 bool AppleNVRAM::start(IOService *provider) argument
46 numRanges = provider->getDeviceMemoryCount();
52 map = provider->mapDeviceMemoryWithIndex(0);
60 map = provider->mapDeviceMemoryWithIndex(0);
65 map = provider->mapDeviceMemoryWithIndex(1);
73 return super::start(provider);
/darwin-on-arm/xnu/iokit/Drivers/platform/drvApplePlatformExpert/
H A DApplePlatformExpert.cpp55 bool ApplePlatformExpert::start( IOService * provider )
61 if (provider->getProperty(gIODTNWInterruptMappingKey)) {
69 provider->setProperty("rom-version", &romVersion, sizeof(romVersion));
72 return super::start(provider);
75 bool ApplePlatformExpert::configure( IOService * provider )
83 return(super::configure(provider));
H A DAppleCPU.cpp46 bool AppleCPU::start(IOService *provider) argument
51 if (!super::start(provider)) return false;
H A DAppleCPU.h48 virtual bool start(IOService *provider);
/darwin-on-arm/xnu/iokit/IOKit/system_management/
H A DIOWatchDogTimer.h44 virtual bool start(IOService *provider);
45 virtual void stop(IOService *provider);
/darwin-on-arm/xnu/iokit/Examples/drvGenericInterruptController/
H A DGenericInterruptController.cpp49 bool GenericInterruptController::start(IOService *provider) argument
55 if (!super::start(provider))
85 getPlatform()->setCPUInterruptProperties(provider);
89 provider->registerInterrupt(0, this, handler, 0);
92 provider->enableInterrupt(0);
/darwin-on-arm/xnu/iokit/IOKit/platform/
H A DApplePlatformExpert.h72 virtual bool start( IOService * provider );
73 virtual bool configure( IOService * provider );

Completed in 49 milliseconds

123