Searched refs:provider (Results 251 - 275 of 484) sorted by relevance

<<11121314151617181920

/macosx-10.10/xnu-2782.1.97/iokit/IOKit/
H A DIOPlatformExpert.h133 virtual bool attach( IOService * provider );
134 virtual bool start( IOService * provider );
135 virtual bool configure( IOService * provider );
219 virtual IOService * probe( IOService * provider,
221 virtual bool configure( IOService * provider );
H A DIOService.h166 @param provider The IOService object who is delivering the notification. It is retained for the duration of the handler's invocation and doesn't need to be released by the handler.
171 UInt32 messageType, IOService * provider,
194 When an IOService (the "provider") is published with the @link registerService registerService@/link method, the matching and probing process begins, which is always single threaded per provider. A list of matching dictionaries from the catalog and installed publish notification requests, that successfully match the IOService, is constructed, with ordering supplied by <code>kIOProbeScoreKey</code> ("IOProbeScore") property in the dictionary, or supplied with the notification.
198 The driver class is instantiated and <code>init()</code> called with its property table. The new driver instance is then attached to the provider, and has its @link probe probe@/link method called with the provider as an argument. The default <code>probe</code> method does nothing but return success, but a driver may implement this method to interrogate the provider to make sure it can work with it. It may also modify its probe score at this time. After probe, the driver is detached and the next in the list is considered (ie. attached, probed, and detached).
200 When the probing phase is complete, the list consists of successfully probed drivers, in order of their probe score (after adjustment during the @link probe probe@/link call). The list is then divided into categories based on the <code>kIOMatchCategoryKey</code> property ("IOMatchCategory"); drivers without a match category are all considered in one default category. Match categories allow multiple clients of a provider to be attached and started, though the provider may also enforce open/close semantics to gain active access to it.
202 For each category, the highest scoring driver in that category is attached to the provider, an
[all...]
/macosx-10.10/apache-793/httpd/modules/aaa/
H A Dmod_authz_core.c56 const authz_provider *provider; member in struct:provider_alias_rec
72 const authz_provider *provider; member in struct:authz_section_conf
181 /* This is a fake authz provider that really merges various authz alias
191 /* Look up the provider alias in the alias list.
193 * Call the real provider->check_authorization() function
209 /* If we found the alias provider in the list, then merge the directory
210 configurations and call the real provider */
218 ret = prvdraliasrec->provider->
226 "no alias provider found for '%s' (BUG?)",
271 /* Pull the real provider nam
[all...]
/macosx-10.10/IOStorageFamily-182.1.1/
H A DIOMedia.cpp103 // Obtain this object's provider. We override the superclass's method to
435 IOStorage * provider; local
437 provider = OSDynamicCast( IOStorage, getProvider( ) );
439 if ( provider )
441 success = provider->open( this, options, level );
619 IOStorage * provider; local
621 provider = OSDynamicCast( IOStorage, getProvider( ) );
623 if ( provider )
627 provider->close( this, options );
635 success = provider
[all...]
H A DIOPartitionScheme.cpp68 // Obtain this object's provider. We override the superclass's method
154 IOStorage * provider; local
156 provider = OSDynamicCast( IOStorage, getProvider( ) );
158 if ( provider )
164 success = provider->open( this, options, level );
259 IOStorage * provider; local
261 provider = OSDynamicCast( IOStorage, getProvider( ) );
263 if ( provider )
267 provider->close( this, options );
275 success = provider
[all...]
/macosx-10.10/llvmCore-3425.0.34/utils/lit/lit/
H A Dmain.py104 def __init__(self, litConfig, provider, display):
107 self.provider = provider
112 item = self.provider.get()
300 def runTests(numThreads, litConfig, provider, display):
304 t = Tester(litConfig, provider, display)
309 testers = [Tester(litConfig, provider, display)
597 provider = TestProvider(tests, opts.maxTime)
598 runTests(opts.numThreads, litConfig, provider, display)
/macosx-10.10/AppleUSBCDCDriver-4205.2.2/AppleUSBCDCACM/DataDriver/Headers/
H A DAppleUSBCDCACMData.h270 virtual IOService *probe(IOService *provider, SInt32 *score);
271 virtual bool start(IOService *provider);
272 virtual void stop(IOService *provider);
273 virtual bool didTerminate(IOService *provider, IOOptionBits options, bool *defer);
274 virtual IOReturn message(UInt32 type, IOService *provider, void *argument = 0);
380 bool start(IOService *provider);
/macosx-10.10/IOFireWireSBP2-425/IOFireWireSBP2/
H A DIOFireWireSBP2LUN.cpp55 bool IOFireWireSBP2LUN::attach(IOService *provider) argument
69 // attach to provider
74 fProviderTarget = OSDynamicCast( IOFireWireSBP2Target, provider );
82 if( !IOService::attach(provider) )
377 IOService * provider = getProvider(); local
378 if( provider )
380 unit = provider->getProvider();
/macosx-10.10/IOSCSIParallelFamily-300.0.2/
H A DIOSCSIParallelInterfaceController.h884 provider.
886 controller's provider.
1468 IOService * provider );
1533 bool CreateWorkLoop ( IOService * provider );
1576 bool start ( IOService * provider );
1577 void stop ( IOService * provider );
1596 virtual bool willTerminate ( IOService * provider, IOOptionBits options );
1597 virtual bool didTerminate ( IOService * provider, IOOptionBits options, bool * defer );
/macosx-10.10/OpenSSH-189/openssh/
H A Dssh-agent.c118 char *provider; member in struct:identity
185 if (id->provider != NULL)
186 xfree(id->provider);
713 char *provider = NULL, *pin; local
719 provider = buffer_get_string(&e->request, NULL);
739 count = pkcs11_add_provider(provider, pin, &keys);
747 id->provider = xstrdup(provider);
748 id->comment = xstrdup(provider); /* XXX */
762 if (provider)
774 char *provider = NULL, *pin = NULL; local
[all...]
/macosx-10.10/AppleUSBCDCDriver-4205.2.2/AppleUSBCDC/Classes/
H A DAppleUSBCDC.cpp110 // Inputs: provider - my provider
118 IOService *AppleUSBCDC::probe(IOService *provider, SInt32 *score) argument
131 OSBoolean *boolObj = OSDynamicCast(OSBoolean, provider->getProperty("kCDCDoNotMatchThisDevice"));
134 XTRACE(this, 0, *score, "probe - provider doesn't want us to match");
138 probeScore = OSDynamicCast(OSNumber, provider->getProperty("IOProbeScore"));
148 classInfo = (OSNumber *)provider->getProperty("bDeviceClass");
154 newDevice = OSDynamicCast(IOUSBDevice, provider);
157 XTRACE(this, 0, 0, "probe - provider invalid");
176 res = super::probe(provider, scor
196 start(IOService *provider) argument
358 stop(IOService *provider) argument
1200 message(UInt32 type, IOService *provider, void *argument) argument
[all...]
/macosx-10.10/AppleUSBCDCDriver-4205.2.2/AppleUSBCDCECM/ControlDriver/Classes/
H A DAppleUSBCDCECMControl.cpp447 // Inputs: provider - my provider
455 IOService* AppleUSBCDCECMControl::probe(IOService *provider, SInt32 *score) argument
462 OSBoolean *boolObj = OSDynamicCast(OSBoolean, provider->getProperty("kDoNotClassMatchThisInterface"));
465 XTRACE(this, 0, 0, "probe - provider doesn't want us to match");
469 res = super::probe(provider, score);
479 // Inputs: provider - my provider
488 bool AppleUSBCDCECMControl::start(IOService *provider) argument
505 if(!super::start(provider))
596 stop(IOService *provider) argument
1417 message(UInt32 type, IOService *provider, void *argument) argument
[all...]
/macosx-10.10/IOAudioFamily-200.6/
H A DIOAudioControl.cpp330 bool IOAudioControl::start(IOService *provider) argument
332 AudioTrace_Start(kAudioTIOAudioControl, kTPIOAudioControlStart, (uintptr_t)this, (uintptr_t)provider, 0, 0);
333 if (!super::start(provider)) {
338 reserved->providerEngine = OSDynamicCast (IOAudioEngine, provider);
340 AudioTrace_End(kAudioTIOAudioControl, kTPIOAudioControlStart, (uintptr_t)this, (uintptr_t)provider, true, 0);
344 bool IOAudioControl::attachAndStart(IOService *provider) argument
348 if (attach(provider)) {
350 result = start(provider);
352 detach(provider);
362 void IOAudioControl::stop(IOService *provider) argument
[all...]
/macosx-10.10/IOPCIFamily-239.1.2/
H A DIOPCIBridge.cpp592 bool IOPCIBridge::start( IOService * provider )
596 if (!super::start(provider))
603 if (!configure(provider)) return (false);
604 pciDevice = OSDynamicCast(IOPCIDevice, provider);
614 provider->joinPMtree(this);
616 pciDevice = OSDynamicCast(IOPCIDevice, provider);
625 probeBus( provider, firstBusNum() );
628 && (!provider->getProperty(kIOPCIHotPlugKey))
629 && (!provider->getProperty(kIOPCITunnelLinkChangeKey))
632 DLOG("%s: no child D3\n", provider
1967 probeBus( IOService * provider, UInt8 busNum ) argument
2380 IOService * provider = getProvider(); local
2648 probe( IOService * provider, SInt32 * score ) argument
3054 allocateBridgeInterrupts(IOService * provider) argument
3084 startBridgeInterrupts(IOService * provider) argument
3158 startBootDefer(IOService * provider) argument
3172 probeBus( IOService * provider, UInt8 busNum ) argument
3408 resolveMSIInterrupts( IOService * provider, IOPCIDevice * nub ) argument
3440 resolveLegacyInterrupts( IOService * provider, IOPCIDevice * nub ) argument
[all...]
/macosx-10.10/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFireWireDevice.h160 virtual IOReturn message( UInt32 type, IOService * provider, void * argument );
186 virtual bool attach(IOService * provider );
/macosx-10.10/IOFireWireSerialBusProtocolTransport-251.0.1/
H A DIOFireWireSerialBusProtocolTransport.h208 message ( UInt32 type, IOService * provider, void * argument = 0 );
366 virtual bool start ( IOService * provider );
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDFamily/
H A DAppleEmbeddedHIDEventService.cpp38 bool AppleEmbeddedHIDEventService::handleStart(IOService * provider) argument
42 if ( !super::handleStart(provider) )
H A DIOHIDEventOverrideDriver.cpp38 bool IOHIDEventOverrideDriver::handleStart( IOService * provider )
43 if ( !super::handleStart(provider) )
H A DIOHIDResourceUserClient.h213 virtual bool start(IOService * provider);
215 virtual void stop(IOService * provider);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/lib/
H A DRSA_DSA_keys.h125 static CSPKeyInfoProvider *provider(
225 static CSPKeyInfoProvider *provider(
/macosx-10.10/apache-793/httpd/
H A Dap.d1 #pragma D depends_on provider io
/macosx-10.10/apache-793/httpd/modules/cache/
H A Dcache_util.h205 const cache_provider *provider; member in struct:cache_provider_list
212 const cache_provider *provider; /* current cache provider */ member in struct:__anon6151
213 const char *provider_name; /* current cache provider name */
/macosx-10.10/apache-793/httpd/server/
H A Dprovider.c39 const void *provider)
50 /* First, deal with storing the provider away */
73 provider);
75 /* Now, tuck away the provider names in an easy-to-get format */
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cgcolorspace.py87 provider = CGDataProviderCreateWithCFData(buffer(data))
89 provider, CGColorSpaceCreateDeviceRGB())
/macosx-10.10/xnu-2782.1.97/bsd/dev/dtrace/scripts/
H A Dsched.d26 #pragma D depends_on provider sched

Completed in 170 milliseconds

<<11121314151617181920