Searched refs:refCon (Results 1 - 25 of 202) sorted by last modified time

123456789

/macosx-10.9.5/xnu-2422.115.4/pexpert/pexpert/
H A Dpexpert.h126 void *target, IOInterruptHandler handler, void *refCon);
/macosx-10.9.5/xnu-2422.115.4/osfmk/pmc/
H A Dpmc.c144 * @member refCon Passed to the @method method as the refCon argument.
150 void *refCon; member in struct:pmc_config
1675 * @param refCon User specified reference constant.
1677 static void pmc_reservation_interrupt(void *target, void *refCon) { argument
1720 (void)reservation->config->method(reservation, refCon);
2025 tmp->refCon = NULL;
2087 * @refCon (which may be NULL) as the second.
2094 uint64_t threshold, pmc_interrupt_method_t method, void *refCon) {
2122 config->refCon
2093 pmc_config_set_interrupt_threshold(pmc_t pmc, pmc_config_t config, uint64_t threshold, pmc_interrupt_method_t method, void *refCon) argument
[all...]
H A Dpmc.h178 * @param refCon Any value as defined by the end-user who called <link>pmc_config_set_interrupt_threshold</link>
180 typedef void (*pmc_interrupt_method_t)(void *target, void *refCon);
195 * @param refCon A reference pointer to be used as the second argument to the callback method (may be NULL).
197 typedef kern_return_t (*pmc_config_set_interrupt_threshold_handler_method_t)(pmc_config_object_t config, void *target, pmc_interrupt_method_t method, void *refCon);
580 * the first argument when the interrupt handler is invoked, and the given @refCon (which may be NULL) as the second. This method is not interrupt safe.
582 kern_return_t pmc_config_set_interrupt_threshold(pmc_t pmc, pmc_config_t config, uint64_t threshold, pmc_interrupt_method_t method, void *refCon);
/macosx-10.9.5/xnu-2422.115.4/iokit/Kernel/
H A DIOPMrootDomain.cpp2769 void * target, void * refCon,
5550 void * target, void * refCon,
5616 void * refCon,
5635 void * refCon,
5658 void * refCon,
2768 sysPowerDownHandler( void * target, void * refCon, UInt32 messageType, IOService * service, void * messageArgs, vm_size_t argSize ) argument
5549 displayWranglerNotification( void * target, void * refCon, UInt32 messageType, IOService * service, void * messageArgument, vm_size_t argSize ) argument
5614 displayWranglerMatchPublished( void * target, void * refCon, IOService * newService, IONotifier * notifier __unused) argument
5633 IONVRAMMatchPublished( void * target, void * refCon, IOService * newService, IONotifier * notifier) argument
5656 IONVRAMMatchPublished( void * target, void * refCon, IOService * newService, IONotifier * notifier __unused) argument
H A DIOCPU.cpp701 void *refCon)
723 vector->refCon = refCon;
772 IOReturn IOCPUInterruptController::handleInterrupt(void */*refCon*/,
782 vector->handler(vector->target, vector->refCon,
697 registerInterrupt(IOService *nub, int source, void *target, IOInterruptHandler handler, void *refCon) argument
/macosx-10.9.5/IOKitUser-907.100.13/
H A DIOKitLib.c1023 void *refCon = (void *) header->reference[kIOAsyncCalloutRefconIndex]; local
1026 ((IOAsyncCallback0) func)(refCon, asyncHdr->result);
1029 ((IOAsyncCallback1) func)(refCon, asyncHdr->result,
1033 ((IOAsyncCallback2) func)(refCon, asyncHdr->result,
1037 ((IOAsyncCallback) func)(refCon, asyncHdr->result,
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDFamily/
H A DIOHIDResourceUserClient.cpp134 IOReturn IOHIDResourceDeviceUserClient::registerNotificationPort(mach_port_t port, UInt32 type __unused, io_user_reference_t refCon __unused)
H A DIOHIDResourceUserClient.h188 virtual IOReturn registerNotificationPort(mach_port_t port, UInt32 type, io_user_reference_t refCon);
/macosx-10.9.5/xnu-2422.115.4/osfmk/i386/
H A Dmachine_routines.c334 void *refCon)
341 (IOInterruptHandler) handler, refCon);
329 ml_install_interrupt_handler( void *nub, int source, void *target, IOInterruptHandler handler, void *refCon) argument
H A Dmachine_routines.h79 void *refCon);
/macosx-10.9.5/IOAudioFamily-197.4.2/
H A DIOAudioControlUserClient.h85 virtual IOReturn registerNotificationPort(mach_port_t port, UInt32 type, UInt32 refCon);
H A DIOAudioEngineUserClient.cpp1163 IOReturn IOAudioEngineUserClient::registerNotificationPort(mach_port_t port, UInt32 type, UInt32 refCon) argument
1167 audioDebugIOLog(3, "+ IOAudioEngineUserClient[%p]::registerNotificationPort(0x%lx, 0x%lx, 0x%lx)\n", this, (long unsigned int)port, (long unsigned int)type, (long unsigned int)refCon);
1174 result = workLoop->runAction(_registerNotificationAction, this, (void *)port, (void *)(uintptr_t)refCon); // <rdar://7529580>
1188 // refCon is IOAudioStream *
1190 audioDebugIOLog(3, "- IOAudioEngineUserClient[%p]::registerNotificationPort(0x%lx, 0x%lx, 0x%lx) returns 0x%lX\n", this, (long unsigned int)port, (long unsigned int)type, (long unsigned int)refCon, (long unsigned int)result );
1226 UInt64 refCon = (UInt64) arg2; local
1228 UInt32 refCon = (UInt32) arg2;
1231 result = userClient->registerNotification((mach_port_t)arg1, refCon);
1239 IOReturn IOAudioEngineUserClient::registerNotification(mach_port_t port, UInt32 refCon) argument
1243 audioDebugIOLog(3, "+ IOAudioEngineUserClient[%p]::registerFormatNotification(0x%lx, 0x%lx)\n", this, (long unsigned int)port, (long unsigned int)refCon);
[all...]
H A DIOAudioEngineUserClient.h210 virtual IOReturn registerNotificationPort(mach_port_t port, UInt32 type, UInt32 refCon);
214 virtual IOReturn registerNotification(mach_port_t port, UInt32 refCon);
/macosx-10.9.5/IOGraphics-471.92.1/IOGraphicsFamily/
H A DIOFramebuffer.cpp5769 IOReturn IOFramebuffer::agcMessage( void * target, void * refCon, argument
5849 IOReturn IOFramebuffer::systemPowerChange( void * target, void * refCon, argument
6196 UInt32 refCon )
/macosx-10.9.5/xnu-2422.115.4/iokit/IOKit/pwr_mgt/
H A DRootDomain.h499 static IOReturn sysPowerDownHandler( void * target, void * refCon,
503 static IOReturn displayWranglerNotification( void * target, void * refCon,
507 static IOReturn rootBusyStateChangeHandler( void * target, void * refCon,
511 static bool displayWranglerMatchPublished( void * target, void * refCon,
515 static bool IONVRAMMatchPublished( void * target, void * refCon,
519 static bool batteryPublished( void * target, void * refCon,
/macosx-10.9.5/PowerManagement-420.90.1/pmconfigd/
H A DPMAssertions.c1373 IOServiceInterestCallback callback, void *refCon)
1395 callback, refCon,
1371 _RegisterForNotification( const io_string_t path, const io_name_t interestType, IOServiceInterestCallback callback, void *refCon) argument
H A Dpmconfigd.c553 static void UPSDeviceAdded(void *refCon, io_iterator_t iterator) argument
/macosx-10.9.5/IOGraphics-471.92.1/IOGraphicsFamily/IOKit/graphics/
H A DIOFramebufferPrivate.h206 static IOReturn systemPowerChange( void * target, void * refCon,
209 static IOReturn agcMessage( void * target, void * refCon,
269 UInt32 refCon );
/macosx-10.9.5/IOFireWireSerialBusProtocolTransport-251.0.1/
H A DIOFireWireSerialBusProtocolTransport.cpp1400 void * refCon,
1403 ( ( IOFireWireSerialBusProtocolTransport * ) refCon )->StatusNotify ( params );
1755 void * refCon,
1758 ( ( IOFireWireSerialBusProtocolTransport * ) refCon )->LoginCompletion ( params );
1882 void * refCon,
1885 ( ( IOFireWireSerialBusProtocolTransport * ) refCon )->LogoutCompletion ( params );
1910 void * refCon,
1913 ( ( IOFireWireSerialBusProtocolTransport * ) refCon )->UnsolicitedStatusNotify ( params );
1942 void * refCon,
1945 ( ( IOFireWireSerialBusProtocolTransport * ) refCon )
1399 StatusNotifyStatic( void * refCon, FWSBP2NotifyParams * params ) argument
1754 LoginCompletionStatic( void * refCon, FWSBP2LoginCompleteParams * params ) argument
1881 LogoutCompletionStatic( void * refCon, FWSBP2LogoutCompleteParams * params ) argument
1909 UnsolicitedStatusNotifyStatic( void * refCon, FWSBP2NotifyParams * params ) argument
1941 FetchAgentResetCompleteStatic( void * refCon, IOReturn status ) argument
2012 LunResetCompleteStatic( void * refCon, IOReturn status, IOFireWireSBP2ManagementORB * orb ) argument
2057 ConnectToDeviceStatic( OSObject * refCon, void * val1, void * val2, void * val3, void * val4 ) argument
2129 CriticalOrbSubmissionStatic( OSObject * refCon, void * val1, void * val2, void * val3, void * val4 ) argument
[all...]
/macosx-10.9.5/IOPCIFamily-224.92.1/IOKit/pci/
H A DIOPCIPrivate.h284 void * refCon );
344 void * refCon );
/macosx-10.9.5/IOPCIFamily-224.92.1/
H A DIOPCIMessagedInterruptController.cpp420 void * refCon )
425 ret = super::registerInterrupt(nub, source, target, handler, refCon);
552 vector->handler(vector->target, vector->refCon, vector->nub, vector->source);
587 vector->handler(vector->target, vector->refCon,
/macosx-10.9.5/xnu-2422.115.4/iokit/IOKit/
H A DIOService.h147 typedef void (*IOInterruptAction)( OSObject * target, void * refCon,
152 @param refCon Reference constant supplied when the notification was registered.
155 typedef bool (*IOServiceNotificationHandler)( void * target, void * refCon,
158 typedef bool (*IOServiceMatchingNotificationHandler)( void * target, void * refCon,
164 @param refCon Reference constant supplied when the notification was registered.
170 typedef IOReturn (*IOServiceInterestHandler)( void * target, void * refCon,
1069 @param refCon A reference constant for the handler's use.
1074 void *refCon = 0);
/macosx-10.9.5/IOFireWireIP-226.4/KernelSource/IOKit/
H A DIOFireWireIP.cpp864 bool IOFireWireIP::fwIPUnitAttach(void * target, void * refCon, IOService * newService, IONotifier * notifier) argument
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDSystem/
H A DIOHIDSystem.cpp174 static bool keySwitchNotificationHandler(void *target __unused, void *refCon __unused, IOService *service, IONotifier * /* ignored */)
1006 IOReturn IOHIDSystem::powerStateHandler( void *target, void *refCon __unused,
/macosx-10.9.5/PowerManagement-420.90.1/ioupsd/
H A Dupsd.c89 static void UPSDeviceAdded(void *refCon, io_iterator_t iterator);
90 static void DeviceNotification(void *refCon, io_service_t service, natural_t messageType, void *messageArgument);
245 NULL, // refCon
265 // this device using the refCon field to store a pointer to our private data.
266 // When we get called with this interest notification, we can grab the refCon
270 void UPSDeviceAdded(void *refCon, io_iterator_t iterator) argument
366 upsDataRef, // refCon
410 void DeviceNotification(void * refCon, argument
415 UPSDataRef upsDataRef = (UPSDataRef) refCon;

Completed in 482 milliseconds

123456789