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

12

/xnu-2782.1.97/libsyscall/wrappers/
H A Dioctl.c36 ioctl(int d, unsigned long request, ...) argument
41 va_start(ap, request);
44 return (__ioctl(d, request, arg));
/xnu-2782.1.97/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.c192 #define ARPOP_REQUEST 1 /* request to resolve address */
193 #define ARPOP_REPLY 2 /* response to previous request */
194 #define ARPOP_REVREQUEST 3 /* request protocol address given hardware */
196 #define ARPOP_INVREQUEST 8 /* request to identify peer */
966 /* Create and transmit an ARP resolution request for the target IP address.
976 KDP_DEBUG("Transmitting ARP request\n");
1077 if (hdr->request == KDP_REATTACH)
1080 // check for retransmitted request
1087 (hdr->request != KDP_CONNECT)) {
1095 * a request, se
1430 create_panic_header(unsigned int request, const char *corename, unsigned length, unsigned int block) argument
1543 kdp_send_crashdump_data(unsigned int request, char *corename, int64_t length, caddr_t txstart) argument
1567 kdp_send_crashdump_pkt(unsigned int request, char *corename, uint64_t length, void *panic_data) argument
[all...]
/xnu-2782.1.97/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)
/xnu-2782.1.97/osfmk/prng/YarrowCoreLib/port/
H A Dsmf.c52 SMFAPI MMPTR mmMalloc(DWORD request) argument
55 size_t memsize = sizeof (*hdr) + request;
/xnu-2782.1.97/tools/lldbmacros/plugins/
H A Dspeedtracer.py27 request = urllib2.Request(submiturl, encoded_data, {"Accept":"application/xml"})
28 response = urllib2.urlopen(request)
/xnu-2782.1.97/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...]
/xnu-2782.1.97/iokit/Kernel/
H A DIOServicePM.cpp599 // Immediately stop driver callouts. Schedule an async stop request to detach
605 IOPMRequest * request; local
628 request = acquirePMRequest( this, kIOPMRequestTypePMStop );
629 if (request)
632 submitPMRequest( request );
642 void IOService::handlePMstop( IOPMRequest * request )
852 void IOService::addPowerChild1( IOPMRequest * request )
880 void IOService::addPowerChild2( IOPMRequest * request )
882 IOPowerConnection * connection = (IOPowerConnection *) request->fArg0;
936 void IOService::addPowerChild3( IOPMRequest * request )
1035 IOPMRequest * request; local
1058 IOPMRequest * request; local
1273 IOPMRequest * request; local
1313 IOPMRequest * request; local
1419 IOPMRequest * request; local
1551 IOPMRequest * request; local
2256 IOPMRequest * request; local
2312 IOPMRequest * request; local
2441 IOPMRequest * request; local
2466 IOPMRequest * request; local
2757 IOPMRequest * request; local
2937 IOPMRequest * request = local
2955 IOPMRequest * request = local
3097 IOPMRequest * request; local
4181 IOPMRequest * request; local
6428 IOPMRequest * request; local
6466 IOPMRequest * request; local
6903 IOPMRequest * request; local
6985 servicePMRequestQueue( IOPMRequest * request, IOPMRequestQueue * queue ) argument
7016 servicePMFreeQueue( IOPMRequest * request, IOPMCompletionQueue * queue ) argument
7038 retirePMRequest( IOPMRequest * request, IOPMWorkQueue * queue ) argument
7077 isPMBlocked( IOPMRequest * request, int count ) argument
7145 servicePMRequest( IOPMRequest * request, IOPMWorkQueue * queue ) argument
7530 servicePMReplyQueue( IOPMRequest * request, IOPMRequestQueue * queue ) argument
8039 IOPMRequest * request; local
8097 queuePMRequest( IOPMRequest * request, IOServicePM * pwrMgt ) argument
8137 IOPMRequest * request; local
8290 IOPMRequest * request; local
[all...]
/xnu-2782.1.97/osfmk/prng/YarrowCoreLib/src/
H A Dsmf.h89 SMFAPI MMPTR mmMalloc(DWORD request);
/xnu-2782.1.97/osfmk/kern/
H A Dipc_kobject.c262 ipc_kmsg_t request)
275 register int key = request->ikm_header->msgh_id;
299 printf("ipc_kobject_server: dropping request\n");
300 ipc_kmsg_destroy(request);
308 #define InP ((mach_msg_header_t *) request->ikm_header)
338 (*ptr->routine)(request->ikm_header, reply->ikm_header);
342 if (!ipc_kobject_notify(request->ikm_header, reply->ikm_header)){
345 request->ikm_header->msgh_id);
347 _MIG_MSGID_INVALID(request->ikm_header->msgh_id);
369 destp = (ipc_port_t *) &request
261 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:__anon1064
157 extern kern_return_t pmsControl(uint32_t request, user_addr_t reqaddr, uint32_t reqsize);
H A Dipc_kobject.h146 ipc_kmsg_t request);
/xnu-2782.1.97/osfmk/ipc/
H A Dipc_right.c250 * Make a dead-name request, returning the previously
252 * just cancels the previously registered request.
258 * KERN_SUCCESS Made/canceled dead-name request.
315 /* if no new request, just cancel previous */
345 * If there is a previous request, free it. Any subsequent
437 * Cancel a notification request and return the send-once right.
549 * If there was a notification request outstanding on this
561 * Once done, clear the request index so we only account
633 ipc_port_t request; local
646 request
763 ipc_port_t request; local
915 ipc_port_t request; local
948 ipc_port_t request = IP_NULL; local
1124 ipc_port_t request = IP_NULL; local
1229 ipc_port_t request; local
1321 ipc_port_t request = IP_NULL; local
1459 ipc_port_t request = IP_NULL; local
1631 ipc_port_request_index_t request; local
1851 ipc_port_t request = IP_NULL; local
1956 ipc_port_t request = IP_NULL; local
2022 ipc_port_t request; local
2214 ipc_port_t request = IP_NULL; local
2655 ipc_port_request_index_t request = oentry->ie_request; local
[all...]
H A Dipc_entry.h103 ipc_table_index_t request; /* dead name request notify */ member in union:ipc_entry::__anon954
107 #define ie_request index.request
110 #define IE_REQ_NONE 0 /* no request */
/xnu-2782.1.97/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
697 struct dhcp_packet * request; local
[all...]
/xnu-2782.1.97/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...]
/xnu-2782.1.97/iokit/IOKit/
H A DIOService.h411 @abstract request current data for the specified channels
538 @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.
565 @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.
576 @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.
585 @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.
625 @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>. */
640 @result result of the terminate request on the client. */
717 @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.
729 @result An instance of an IONotifier object that can be used to control or destroy the notification request. */
740 @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 i
[all...]
/xnu-2782.1.97/bsd/netinet6/
H A Dipsec6.h68 caddr_t request, size_t len, int priv);
/xnu-2782.1.97/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...]
/xnu-2782.1.97/tools/lldbmacros/
H A Dkdp.py5 def GetKDPPacketHeaderInt(request=0, is_reply=False, seq=0, length=0, key=0):
8 request:int - 7 bit kdp_req_t request type
9 is_reply:bool - False => request, True => reply
16 retval = request
51 header_value =GetKDPPacketHeaderInt(request=GetEnumValue('kdp_req_t::KDP_DUMPINFO'), length=kdp_pkt_size)
/xnu-2782.1.97/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
/xnu-2782.1.97/bsd/kern/
H A Dkpi_mbuf.c685 mbuf_csum_request_flags_t request,
688 request &= mbuf_valid_csum_request_flags;
689 mbuf->m_pkthdr.csum_flags = (mbuf->m_pkthdr.csum_flags & 0xffff0000) | request;
701 mbuf_tso_request_flags_t *request,
705 request == NULL || value == NULL)
708 *request = mbuf->m_pkthdr.csum_flags;
709 *request &= mbuf_valid_tso_request_flags;
710 if (*request && value != NULL)
719 mbuf_csum_request_flags_t *request,
722 *request
683 mbuf_set_csum_requested( mbuf_t mbuf, mbuf_csum_request_flags_t request, u_int32_t value) argument
699 mbuf_get_tso_requested( mbuf_t mbuf, mbuf_tso_request_flags_t *request, u_int32_t *value) argument
717 mbuf_get_csum_requested( mbuf_t mbuf, mbuf_csum_request_flags_t *request, u_int32_t *value) argument
[all...]
/xnu-2782.1.97/bsd/sys/
H A Dkpi_mbuf.h429 the request due to the lack of jumbo clusters support based
519 pointed to by maxchunks. E.g. a request for 9018 bytes may
558 pointed to by maxchunks. E.g. a request for 9018 bytes may
1115 @param request Flags indicating which checksums are being requested
1121 mbuf_csum_request_flags_t request, u_int32_t value);
1129 @param request Flags indicating which checksums are being requested
1135 mbuf_csum_request_flags_t *request, u_int32_t *value);
1142 @param request Flags indicating which values are being requested
1148 mbuf_tso_request_flags_t *request, u_int32_t *value);
1152 @discussion This function clears the checksum request flag
[all...]
H A Dkpi_socket.h199 @param request The ioctl name.
203 extern errno_t sock_ioctl(socket_t so, unsigned long request, void *argp);
H A Dkpi_socketfilter.h67 only when request by the application using the SO_NKE socket
439 @param request The ioctl name.
451 unsigned long request, const char* argp);
494 all new sockets or just those that request the filter be

Completed in 197 milliseconds

12