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

/darwin-on-arm/xnu/iokit/Kernel/
H A DIOUserClient.cpp1201 IOExternalMethod *method = getExternalMethodForIndex(index); local
1203 if (method)
1204 *targetP = (IOService *) method->object;
1206 return method;
1212 IOExternalAsyncMethod *method = getExternalAsyncMethodForIndex(index); local
1214 if (method)
1215 *targetP = (IOService *) method->object;
1217 return method;
3130 IOExternalMethod * method,
3144 if( inputCount != method
3129 shim_io_connect_method_scalarI_scalarO( IOExternalMethod * method, IOService * object, const io_user_scalar_t * input, mach_msg_type_number_t inputCount, io_user_scalar_t * output, mach_msg_type_number_t * outputCount ) argument
3352 shim_io_async_method_scalarI_scalarO( IOExternalAsyncMethod * method, IOService * object, mach_port_t asyncWakePort, io_user_reference_t * asyncReference, uint32_t asyncReferenceCount, const io_user_scalar_t * input, mach_msg_type_number_t inputCount, io_user_scalar_t * output, mach_msg_type_number_t * outputCount ) argument
3471 shim_io_connect_method_scalarI_structureO( IOExternalMethod * method, IOService * object, const io_user_scalar_t * input, mach_msg_type_number_t inputCount, io_struct_inband_t output, IOByteCount * outputCount ) argument
3538 shim_io_async_method_scalarI_structureO( IOExternalAsyncMethod * method, IOService * object, mach_port_t asyncWakePort, io_user_reference_t * asyncReference, uint32_t asyncReferenceCount, const io_user_scalar_t * input, mach_msg_type_number_t inputCount, io_struct_inband_t output, mach_msg_type_number_t * outputCount ) argument
3644 shim_io_connect_method_scalarI_structureI( IOExternalMethod * method, IOService * object, const io_user_scalar_t * input, mach_msg_type_number_t inputCount, io_struct_inband_t inputStruct, mach_msg_type_number_t inputStructCount ) argument
3713 shim_io_async_method_scalarI_structureI( IOExternalAsyncMethod * method, IOService * object, mach_port_t asyncWakePort, io_user_reference_t * asyncReference, uint32_t asyncReferenceCount, const io_user_scalar_t * input, mach_msg_type_number_t inputCount, io_struct_inband_t inputStruct, mach_msg_type_number_t inputStructCount ) argument
3817 shim_io_connect_method_structureI_structureO( IOExternalMethod * method, IOService * object, io_struct_inband_t input, mach_msg_type_number_t inputCount, io_struct_inband_t output, IOByteCount * outputCount ) argument
3862 shim_io_async_method_structureI_structureO( IOExternalAsyncMethod * method, IOService * object, mach_port_t asyncWakePort, io_user_reference_t * asyncReference, uint32_t asyncReferenceCount, io_struct_inband_t input, mach_msg_type_number_t inputCount, io_struct_inband_t output, mach_msg_type_number_t * outputCount ) argument
4322 IOExternalAsyncMethod * method; local
4372 IOExternalMethod * method; local
[all...]
/darwin-on-arm/xnu/libkern/libkern/
H A Dzlib.h73 data. This version of the library supports only one compression method
97 directory information, and uses a different, slower check method than zlib.
232 /* The deflate compression method (the only one supported in this version) */
377 value depends on the compression method), inflateInit determines the
378 compression method from the zlib header and allocates all data structures
511 int method,
520 The method parameter is the compression method. It must be Z_DEFLATED in
563 method). msg is set to null if there is no error message. deflateInit2 does
602 or if the compression method i
[all...]
/darwin-on-arm/xnu/osfmk/pmc/
H A Dpmc.c141 * @member method A pointer to a method to call to handle PMI.
144 * @member refCon Passed to the @method method as the refCon argument.
148 volatile pmc_interrupt_method_t method; member in struct:pmc_config
457 * If found, the method returns the perf_monitor_t with an extra reference
800 * This method will inspect the task/thread of the reservation to see if it
875 * determined by the reservation's scope flags). Further, this method returns
1044 #error pmc_reservation_interrupt needs an inter-processor method invocation mechanism for this architecture
1057 * NOTE: The scope flag must have been set for this method t
2095 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.h91 * @abstract A pointer to a method that enables a set of counters.
92 * @discussion Implementations of this method type must be safe to call at interrupt context.
100 * @abstract A pointer to a method that disables a set of counters.
101 * @discussion Implementations of this method type must be safe to call at interrupt context.
117 * @abstract A set of method pointers to be used when interacting with a performance monitor object
147 * @abstract A pointer to a method that creates a configuration object for a counter
149 * Corresponds to IOPerformanceCounter::createConfiguration() method.
156 * @abstract A pointer to a method to free a configuration object for a pmc
164 * @abstract A pointer to a method to set a key-value pair on a config object.
166 * Corresponds to IOPerformanceCounterConfiguration::setValueForId() method
[all...]
/darwin-on-arm/xnu/libkern/zlib/
H A Ddeflate.h131 Byte method; /* STORED (for zip only) or DEFLATED */ member in struct:internal_state
H A Dgzio.c318 int method; /* method byte */ local
350 method = get_byte(s);
352 if (method != Z_DEFLATED || (flags & RESERVED) != 0) {
H A Ddeflate.c243 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
247 int method;
294 if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method != Z_DEFLATED ||
338 s->method = (Byte)method;

Completed in 34 milliseconds