Lines Matching refs:request_ptr
77 NX_PACKET *request_ptr; in _nx_rarp_packet_send() local
110 …if (_nx_packet_allocate(ip_ptr -> nx_ip_auxiliary_packet_pool, &request_ptr, (NX_PHYSICAL_HEADER +… in _nx_rarp_packet_send()
115 …if (_nx_packet_allocate(ip_ptr -> nx_ip_default_packet_pool, &request_ptr, (NX_PHYSICAL_HEADER + N… in _nx_rarp_packet_send()
133 NX_PACKET_DEBUG(__FILE__, __LINE__, request_ptr); in _nx_rarp_packet_send()
140 request_ptr -> nx_packet_address.nx_packet_interface_ptr = &(ip_ptr -> nx_ip_interface[i]); in _nx_rarp_packet_send()
144 request_ptr -> nx_packet_length = NX_RARP_MESSAGE_SIZE; in _nx_rarp_packet_send()
147 request_ptr -> nx_packet_prepend_ptr -= NX_RARP_MESSAGE_SIZE; in _nx_rarp_packet_send()
151 message_ptr = (ULONG *)request_ptr -> nx_packet_prepend_ptr; in _nx_rarp_packet_send()
156 …*(message_ptr + 2) = (ULONG)(request_ptr -> nx_packet_address.nx_packet_interface_ptr -> nx_inter… in _nx_rarp_packet_send()
157 …(request_ptr -> nx_packet_address.nx_packet_interface_ptr -> nx_interface_physical_address_lsw >> … in _nx_rarp_packet_send()
158 …*(message_ptr + 3) = (ULONG)(request_ptr -> nx_packet_address.nx_packet_interface_ptr -> nx_inter… in _nx_rarp_packet_send()
159 …*(message_ptr + 4) = (ULONG)(request_ptr -> nx_packet_address.nx_packet_interface_ptr -> nx_inter… in _nx_rarp_packet_send()
160 …*(message_ptr + 5) = (ULONG)(request_ptr -> nx_packet_address.nx_packet_interface_ptr -> nx_inter… in _nx_rarp_packet_send()
164 …NX_TRACE_IN_LINE_INSERT(NX_TRACE_INTERNAL_RARP_SEND, ip_ptr, 0, request_ptr, *(message_ptr + 1), N… in _nx_rarp_packet_send()
179 driver_request.nx_ip_driver_packet = request_ptr; in _nx_rarp_packet_send()
182 …driver_request.nx_ip_driver_interface = request_ptr -> nx_packet_address.nx_packet_int… in _nx_rarp_packet_send()
185 …E_IN_LINE_INSERT(NX_TRACE_INTERNAL_IO_DRIVER_RARP_SEND, ip_ptr, request_ptr, request_ptr -> nx_pac… in _nx_rarp_packet_send()
187 …(request_ptr -> nx_packet_address.nx_packet_interface_ptr -> nx_interface_link_driver_entry)(&driv… in _nx_rarp_packet_send()