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

/darwin-on-arm/xnu/iokit/IOKit/
H A DIOLib.h71 typedef void (*IOThreadFunc)(void *argument);
117 @param physicalAddress IOMallocContiguous returns the physical address of the allocated memory here, if physicalAddress is a non-zero pointer. The physicalAddress argument is deprecated and should be passed as NULL. To obtain the physical address for a memory buffer, use the IODMACommand class in conjunction with the IOMemoryDescriptor or IOBufferMemoryDescriptor classes.
251 @discussion This function creates a kernel thread, and passes the caller supplied argument to the new thread. Warning: the value returned by this function is not 100% reliable. There is a race condition where it is possible that the new thread has already terminated before this call returns. Under that circumstance the IOThread returned will be invalid. In general there is little that can be done with this value except compare it against 0. The thread itself can call IOThreadSelf() 100% reliably and that is the prefered mechanism to manipulate the IOThreads state.
253 @param argument Caller specified data to be passed to the new thread.
256 IOThread IOCreateThread(IOThreadFunc function, void *argument) __attribute__((deprecated));
H A DIOService.h165 @param messageArgument An argument for message, dependent on its type.
166 @param argSize Non zero if the argument represents a struct of that size, used when delivering messages outside the kernel. */
196 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).
841 @result <code>true</code> if the property does not exist in the matching table. If the property exists in the matching dictionary but not the IOService property table, failure is returned. Otherwise the result of calling the property from the matching dictionary's <code>isEqualTo</code> method with the IOService property as an argument is returned. */
850 @result <code>true</code> if the property does not exist in the matching table. If the property exists in the matching dictionary but not the IOService property table, failure is returned. Otherwise the result of calling the property from the matching dictionary's <code>isEqualTo</code> method with the IOService property as an argument is returned. */
1098 @param argument An argument defined by the provider family, not used by IOService.
1102 void * argument = 0 );
1109 @param messageArgument An argument defined by the provider family, not used by IOService.
1120 @param argument A
[all...]
/darwin-on-arm/xnu/tools/tests/libMicro/
H A DREADME76 [-L] (print argument line)
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOService.cpp1364 void * argument, vm_size_t argSize )
1371 ret = service->message( type, this, argument );
1392 type, this, argument, argSize );
1460 void * argument; member in struct:MessageClientsContext
1471 object, context->argument, context->argSize );
1478 void * argument, vm_size_t argSize )
1484 context.argument = argument;
3234 context.argument = (void *) wasQuiet; /*nowBusy*/
4464 context.argument
1363 messageClient( UInt32 type, OSObject * client, void * argument, vm_size_t argSize ) argument
1477 messageClients( UInt32 type, void * argument, vm_size_t argSize ) argument
[all...]
H A DIOUserClient.cpp784 void * argument, vm_size_t argSize )
787 ref, messageType, provider, argument, argSize));
782 _handler( void * target, void * ref, UInt32 messageType, IOService * provider, void * argument, vm_size_t argSize ) argument
/darwin-on-arm/xnu/bsd/net/
H A Dkpi_interface.h501 @param argument The argument to the ioctl.
506 unsigned long command, void *argument);
772 @param arglen The length of the command argument.
773 @param arg The command argument.
H A Ddlil.c3843 * Caller has to pass a non-zero refio argument to get a
4222 unsigned long command, void *argument)
4224 #pragma unused(ifp, protocol, command, argument)
4221 ifproto_media_ioctl(struct ifnet *ifp, protocol_family_t protocol, unsigned long command, void *argument) argument

Completed in 130 milliseconds