Searched refs:request (Results 1 - 25 of 44) sorted by relevance

12

/darwin-on-arm/xnu/libsyscall/wrappers/
H A Dioctl.c36 ioctl(int d, unsigned long request, ...) argument
41 va_start(ap, request);
44 return (__ioctl(d, request, arg));
/darwin-on-arm/xnu/osfmk/kdp/
H A Dkdp_core.h40 #define KDP_RRQ 1 /* read request */
41 #define KDP_WRQ 2 /* write request */
57 char tu_rpl[1]; /* request packet payload */
89 struct corehdr *create_panic_header(unsigned int request, const char *corename, unsigned length, unsigned block);
91 int kdp_send_crashdump_pkt(unsigned int request, char *corename,
94 int kdp_send_crashdump_data(unsigned int request, char *corename,
H A Dkdp_udp.c925 /* Create and transmit an ARP resolution request for the target IP address.
935 KDP_DEBUG("Transmitting ARP request\n");
1036 if (hdr->request == KDP_REATTACH)
1039 // check for retransmitted request
1046 (hdr->request != KDP_CONNECT)) {
1054 * a request, set the input flag, issue a dummy KDP request,
1077 if (hdr->request == KDP_CONNECT) {
1195 if (hdr->request == KDP_HOSTREBOOT) {
1199 if (((hdr->request
1418 create_panic_header(unsigned int request, const char *corename, unsigned length, unsigned int block) argument
1531 kdp_send_crashdump_data(unsigned int request, char *corename, int64_t length, caddr_t txstart) argument
1555 kdp_send_crashdump_pkt(unsigned int request, char *corename, uint64_t length, void *panic_data) argument
[all...]
/darwin-on-arm/xnu/bsd/dev/random/YarrowCoreLib/port/
H A Dsmf.c46 SMFAPI MMPTR mmMalloc(DWORD request) argument
51 mem = _MALLOC (request, M_DEVBUF, M_WAITOK);
/darwin-on-arm/xnu/libsyscall/mach/
H A Dmig_reply_setup.c55 * Routine to set up a MiG reply message from a request message.
69 mig_reply_setup(mach_msg_header_t *request, mach_msg_header_t *reply) argument
71 #define InP (request)
/darwin-on-arm/xnu/bsd/netinet6/
H A Dipsec6.h64 caddr_t request, size_t len, int priv);
65 extern int ipsec6_get_policy(struct inpcb *inp, caddr_t request, size_t len,
H A Dipsec.h91 /* pointer to the ipsec request tree, */
324 caddr_t request, size_t len, int priv);
325 extern int ipsec4_get_policy(struct inpcb *inpcb, caddr_t request,
/darwin-on-arm/xnu/tools/tests/libMicro/apple/
H A Dlb_mmtest.c151 mach_msg_header_t *request; local
158 request = (mach_msg_header_t *)ts->request_msg;
168 ret = mach_msg(request,
184 if (request->msgh_bits & MACH_MSGH_BITS_COMPLEX) {
192 if (1 == request->msgh_id) {
196 reply->msgh_remote_port = request->msgh_remote_port;
214 reply = request;
215 request = tmp;
237 mach_msg_header_t *request; local
249 request
[all...]
/darwin-on-arm/xnu/bsd/dev/random/YarrowCoreLib/src/
H A Dsmf.h89 SMFAPI MMPTR mmMalloc(DWORD request);
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOServicePM.cpp726 // Immediately stop driver callouts. Schedule an async stop request to detach
732 IOPMRequest * request; local
755 request = acquirePMRequest( this, kIOPMRequestTypePMStop );
756 if (request)
759 submitPMRequest( request );
769 void IOService::handlePMstop ( IOPMRequest * request )
977 void IOService::addPowerChild1 ( IOPMRequest * request )
1004 void IOService::addPowerChild2 ( IOPMRequest * request )
1006 IOPowerConnection * connection = (IOPowerConnection *) request->fArg0;
1060 void IOService::addPowerChild3 ( IOPMRequest * request )
1159 IOPMRequest * request; local
1182 IOPMRequest * request; local
1357 IOPMRequest * request; local
1397 IOPMRequest * request; local
1503 IOPMRequest * request; local
1650 IOPMRequest * request; local
2307 IOPMRequest * request; local
2350 IOPMRequest * request; local
2472 IOPMRequest * request; local
2497 IOPMRequest * request; local
2796 IOPMRequest * request; local
2952 IOPMRequest * request = local
2970 IOPMRequest * request = local
3086 IOPMRequest * request; local
4106 IOPMRequest * request; local
6192 IOPMRequest * request; local
6230 IOPMRequest * request; local
6465 IOPMRequest * request; local
6545 servicePMRequestQueue( IOPMRequest * request, IOPMRequestQueue * queue ) argument
6576 servicePMFreeQueue( IOPMRequest * request, IOPMCompletionQueue * queue ) argument
6598 retirePMRequest( IOPMRequest * request, IOPMWorkQueue * queue ) argument
6643 isPMBlocked( IOPMRequest * request, int count ) argument
6709 servicePMRequest( IOPMRequest * request, IOPMWorkQueue * queue ) argument
7094 servicePMReplyQueue( IOPMRequest * request, IOPMRequestQueue * queue ) argument
7599 IOPMRequest * request; local
7657 queuePMRequest( IOPMRequest * request, IOServicePM * pwrMgt ) argument
7697 IOPMRequest * request; local
7850 IOPMRequest * request; local
[all...]
H A DIOPMrootDomain.cpp1443 AggressivesRequest * request; local
1449 request = IONew(AggressivesRequest, 1);
1450 if (!request)
1453 memset(request, 0, sizeof(*request));
1454 request->options = options;
1455 request->dataType = kAggressivesRequestTypeRecord;
1456 request->data.record.type = (uint32_t) type;
1457 request->data.record.value = (uint32_t) value;
1488 queue_enter(&aggressivesQueue, request, AggressivesReques
1598 AggressivesRequest * request; local
1645 AggressivesRequest * request; local
1809 AggressivesRequest * request; local
[all...]
/darwin-on-arm/xnu/osfmk/ipc/
H A Dipc_entry.h103 ipc_table_index_t request; /* dead name request notify */ member in union:ipc_entry::__anon988
107 #define ie_request index.request
110 #define IE_REQ_NONE 0 /* no request */
H A Dipc_right.c242 * Make a dead-name request, returning the previously
244 * just cancels the previously registered request.
250 * KERN_SUCCESS Made/canceled dead-name request.
303 /* if no new request, just cancel previous */
333 * If there is a previous request, free it. Any subsequent
410 * Cancel a notification request and return the send-once right.
514 * If there was a notification request outstanding on this
526 * Once done, clear the request index so we only account
598 ipc_port_t request; local
611 request
726 ipc_port_t request; local
860 ipc_port_t request; local
893 ipc_port_t request = IP_NULL; local
1069 ipc_port_t request = IP_NULL; local
1163 ipc_port_t request; local
1249 ipc_port_t request = IP_NULL; local
1376 ipc_port_request_index_t request; local
1673 ipc_port_t request = IP_NULL; local
1779 ipc_port_t request = IP_NULL; local
1856 ipc_port_t request; local
2059 ipc_port_t request = IP_NULL; local
2361 ipc_port_request_index_t request = oentry->ie_request; local
[all...]
/darwin-on-arm/xnu/bsd/netinet/
H A Din_dhcp.c128 uint8_t request[DHCP_PACKET_MIN]; member in struct:dhcp_context
143 return ((struct dhcp_packet *)(void *)context->request);
206 make_dhcp_request(struct dhcp * request, int request_size, argument
219 bzero(request, request_size);
220 request->dp_op = BOOTREQUEST;
221 request->dp_htype = hwtype;
222 request->dp_hlen = hwlen;
223 bcopy(hwaddr, request->dp_chaddr, hwlen);
224 bcopy(rfc_magic, request->dp_options, RFC_MAGIC_SIZE);
225 dhcpoa_init(options_p, request
498 struct dhcp_packet * request; local
701 struct dhcp_packet * request; local
[all...]
/darwin-on-arm/xnu/osfmk/kern/
H A Dipc_kobject.c269 ipc_kmsg_t request)
282 register int key = request->ikm_header->msgh_id;
306 printf("ipc_kobject_server: dropping request\n");
307 ipc_kmsg_destroy(request);
315 #define InP ((mach_msg_header_t *) request->ikm_header)
350 (*ptr->routine)(request->ikm_header, reply->ikm_header);
355 if (!ipc_kobject_notify(request->ikm_header, reply->ikm_header)){
358 request->ikm_header->msgh_id);
360 _MIG_MSGID_INVALID(request->ikm_header->msgh_id);
382 destp = (ipc_port_t *) &request
268 ipc_kobject_server( ipc_kmsg_t request) argument
[all...]
H A Dpms.h139 * User request control structure passed to sysctl
142 uint32_t request; /* stepper control request */ member in struct:__anon1089
157 extern kern_return_t pmsControl(uint32_t request, user_addr_t reqaddr, uint32_t reqsize);
H A Dipc_kobject.h143 ipc_kmsg_t request);
/darwin-on-arm/xnu/libkern/
H A DOSKextLib.cpp202 char * request = NULL; // must vm_deallocate local
227 "Invalid request from user space (no data).");
241 "vm_map_copyout() failed for request from user space.");
245 request = CAST_DOWN(char *, map_addr);
247 /* Check if request is an mkext; this is always a load request
249 * an XML request, and check the request to see if that requires
253 mkextHeader = (mkext2_header *)request;
280 request, requestLengthI
[all...]
/darwin-on-arm/xnu/osfmk/arm/
H A DpmCPU.c59 pmsControl(__unused uint32_t request, __unused user_addr_t reqaddr, argument
/darwin-on-arm/xnu/iokit/IOKit/
H A DIOService.h490 @param options Options for the open. The provider family may implement options for open; IOService defines only <code>kIOServiceSeize</code> to request the device be withdrawn from its current owner.
517 @discussion IOService calls this method in its subclasses in response to the @link open open@/link method, so the subclass may implement the request. The default implementation provides single owner access to an IOService object via <code>open</code>. The object is locked via @link lockForArbitration lockForArbitration@/link before <code>handleOpen</code> is called.
528 @discussion IOService calls this method in its subclasses in response to the @link close close@/link method, so the subclass may implement the request. The default implementation provides single owner access to an IOService object via @link open open@/link. The object is locked via @link lockForArbitration lockForArbitration@/link before <code>handleClose</code> is called.
537 @discussion IOService calls this method in its subclasses in response to the @link open open@/link method, so the subclass may implement the request. The default implementation provides single owner access to an IOService object via @link open open@/link. The object is locked via @link lockForArbitration lockForArbitration@/link before <code>handleIsOpen</code> is called.
568 @param isSuccessRequired If a request for access to an IOService object should be denied if it is terminated, pass <code>false</code>, otherwise pass <code>true</code>. */
583 @result result of the terminate request on the client. */
660 @discussion IOService will deliver notifications of changes in state of an IOService object to registered clients. The type of notification is specified by a symbol, for example <code>gIOMatchedNotification</code> or <code>gIOTerminatedNotification</code>, and notifications will only include IOService objects that match the supplied matching dictionary. Notifications are ordered by a priority set with <code>addNotification</code>. When the notification is installed, its handler will be called with each of any currently existing IOService objects that are in the correct state (eg. registered) and match the supplied matching dictionary, avoiding races between finding preexisting and new IOService events. The notification request is identified by an instance of an IONotifier object, through which it can be enabled, disabled, or removed. <code>addNotification</code> consumes a retain count on the matching dictionary when the notification is removed.
672 @result An instance of an IONotifier object that can be used to control or destroy the notification request. */
683 @discussion IOService will deliver notifications of changes in state of an IOService object to registered clients. The type of notification is specified by a symbol, for example <code>gIOMatchedNotification</code> or <code>gIOTerminatedNotification</code>, and notifications will only include IOService objects that match the supplied matching dictionary. Notifications are ordered by a priority set with <code>addNotification</code>. When the notification is installed, its handler will be called with each of any currently existing IOService objects that are in the correct state (eg. registered) and match the supplied matching dictionary, avoiding races between finding preexisting and new IOService events. The notification request is identified by an instance of an IONotifier object, through which it can be enabled, disabled, or removed. <code>addMatchingNotification</code> does not consume a reference on the matching dictionary when the notification is removed, unlike addNotification.
695 @result An instance of an IONotifier object that can be used to control or destroy the notification request
[all...]
/darwin-on-arm/xnu/osfmk/chud/i386/
H A Dchud_osfmk_callback_i386.c500 chudxnu_private_cpu_signal_handler(int request) argument
513 request, x86_THREAD_STATE,
571 chudcpu_signal_request_t request; local
588 /* Fill out request */
589 request.req_sync = 0xFFFFFFFF; /* set sync flag */
590 //request.req_type = CPRQchud; /* set request type */
591 request.req_code = request_code; /* set request */
594 * Insert the new request i
[all...]
/darwin-on-arm/xnu/bsd/netat/
H A Dnbp.h67 #define NBP_BRRQ 0x01 /* Broadcast request */
148 gbuf_t *request; /* The request datagram */ member in struct:nbp_req
152 /* not the request tuple has */
/darwin-on-arm/xnu/bsd/kern/
H A Dkpi_mbuf.c658 mbuf_csum_request_flags_t request,
661 request &= mbuf_valid_csum_request_flags;
662 mbuf->m_pkthdr.csum_flags = (mbuf->m_pkthdr.csum_flags & 0xffff0000) | request;
674 mbuf_tso_request_flags_t *request,
678 request == NULL || value == NULL)
681 *request = mbuf->m_pkthdr.csum_flags;
682 *request &= mbuf_valid_tso_request_flags;
683 if (*request && value != NULL)
692 mbuf_csum_request_flags_t *request,
695 *request
656 mbuf_set_csum_requested( mbuf_t mbuf, mbuf_csum_request_flags_t request, u_int32_t value) argument
672 mbuf_get_tso_requested( mbuf_t mbuf, mbuf_tso_request_flags_t *request, u_int32_t *value) argument
690 mbuf_get_csum_requested( mbuf_t mbuf, mbuf_csum_request_flags_t *request, u_int32_t *value) argument
[all...]
/darwin-on-arm/xnu/bsd/net/altq/
H A Daltq_subr.c119 altq_deq_sc_func dequeue_sc, altq_req_func request)
128 VERIFY(request != NULL);
135 altq->altq_request = request;
117 altq_attach(struct ifaltq *altq, u_int32_t type, void *discipline, altq_enq_func enqueue, altq_deq_func dequeue, altq_deq_sc_func dequeue_sc, altq_req_func request) argument
/darwin-on-arm/xnu/bsd/sys/
H A Dkpi_mbuf.h431 the request due to the lack of jumbo clusters support based
521 pointed to by maxchunks. E.g. a request for 9018 bytes may
560 pointed to by maxchunks. E.g. a request for 9018 bytes may
1102 @param request Flags indicating which checksums are being requested
1108 mbuf_csum_request_flags_t request, u_int32_t value);
1116 @param request Flags indicating which checksums are being requested
1122 mbuf_csum_request_flags_t *request, u_int32_t *value);
1129 @param request Flags indicating which values are being requested
1135 mbuf_tso_request_flags_t *request, u_int32_t *value);
1139 @discussion This function clears the checksum request flag
[all...]

Completed in 204 milliseconds

12