HomeSort by relevance Sort by last modified time
    Searched defs:pcb (Results 1 - 25 of 33) sorted by null

1 2

  /device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
pcb.h 1 /* $NetBSD: pcb.h,v 1.1 2006/04/07 14:21:18 cherry Exp $ */
29 * $FreeBSD: src/sys/ia64/include/pcb.h,v 1.16 2004/08/16 19:05:08 marcel Exp $
39 * PCB: process control block
42 struct pcb { struct
69 void makectx(struct trapframe *, struct pcb *);
70 /*void restorectx(struct pcb *) __dead2;*/
71 int swapctx(struct pcb *old, struct pcb *new);
73 void ia32_restorectx(struct pcb *);
74 void ia32_savectx(struct pcb *);
    [all...]
  /external/syslinux/core/lwip/src/core/
raw.c 59 * Determine if in incoming IP packet is covered by a RAW PCB
63 * finds a corresponding RAW PCB and calls the corresponding receive
66 * @param p pbuf to be demultiplexed to a RAW PCB.
68 * @return - 1 if the packet has been eaten by a RAW PCB receive
78 struct raw_pcb *pcb, *prev; local
89 pcb = raw_pcbs;
92 while ((eaten == 0) && (pcb != NULL)) {
93 if ((pcb->protocol == proto) &&
94 (ip_addr_isany(&pcb->local_ip) ||
95 ip_addr_cmp(&(pcb->local_ip), &current_iphdr_dest)))
337 struct raw_pcb *pcb; local
    [all...]
udp.c 75 * finds a corresponding UDP PCB and hands over the pbuf to the pcbs
76 * recv function. If no pcb is found or the datagram is incorrect, the
79 * @param p pbuf to be demultiplexed to a UDP PCB.
87 struct udp_pcb *pcb, *prev; local
136 pcb = NULL;
138 the dhcp module, no other UDP pcb may use the local UDP port DHCP_CLIENT_PORT */
142 if ((inp->dhcp != NULL) && (inp->dhcp->pcb != NULL)) {
145 - inp->dhcp->pcb->remote == ANY or iphdr->src */
146 if ((ip_addr_isany(&inp->dhcp->pcb->remote_ip) ||
147 ip_addr_cmp(&(inp->dhcp->pcb->remote_ip), &current_iphdr_src)))
932 struct udp_pcb *pcb; local
    [all...]
netif.c 324 struct tcp_pcb *pcb; local
331 pcb = tcp_active_pcbs;
332 while (pcb != NULL) {
333 /* PCB bound to current local interface address? */
334 if (ip_addr_cmp(&(pcb->local_ip), &(netif->ip_addr))
337 && !ip_addr_islinklocal(&(pcb->local_ip))
341 struct tcp_pcb *next = pcb->next;
342 LWIP_DEBUGF(NETIF_DEBUG | LWIP_DBG_STATE, ("netif_set_ipaddr: aborting TCP pcb %p\n", (void *)pcb));
343 tcp_abort(pcb);
    [all...]
pbuf.c 110 struct tcp_pcb* pcb; local
118 for (pcb = tcp_active_pcbs; NULL != pcb; pcb = pcb->next) {
119 if (NULL != pcb->ooseq) {
120 /** Free the ooseq pbufs of one PCB only */
122 tcp_segs_free(pcb->ooseq);
123 pcb->ooseq = NULL;
    [all...]
tcp_in.c 75 static err_t tcp_process(struct tcp_pcb *pcb);
76 static void tcp_receive(struct tcp_pcb *pcb);
77 static void tcp_parseopt(struct tcp_pcb *pcb);
79 static err_t tcp_listen_input(struct tcp_pcb_listen *pcb);
80 static err_t tcp_timewait_input(struct tcp_pcb *pcb);
94 struct tcp_pcb *pcb, *prev; local
182 for(pcb = tcp_active_pcbs; pcb != NULL; pcb = pcb->next)
    [all...]
dhcp.c 149 static void dhcp_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, ip_addr_t *addr, u16_t port);
316 udp_sendto_if(dhcp->pcb, dhcp->p_out, IP_ADDR_BROADCAST, DHCP_SERVER_PORT, netif);
663 if (dhcp->pcb != NULL) {
664 udp_remove(dhcp->pcb);
673 /* allocate UDP PCB */
674 dhcp->pcb = udp_new();
675 if (dhcp->pcb == NULL) {
676 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_start(): could not obtain pcb\n"));
679 dhcp->pcb->so_options |= SOF_BROADCAST;
680 /* set up local and remote port for the pcb */
712 struct udp_pcb *pcb; local
    [all...]
tcp.c 79 /* The TCP PCB lists. */
93 /** An array with all (non-temporary) PCB lists, mainly used for smaller code size */
122 * Closes the TX side of a connection held by the PCB.
130 * The pcb is then automatically freed in tcp_slowtmr(). It is therefore
133 * @param pcb the tcp_pcb to close
135 * another err_t if closing failed and pcb is not freed
138 tcp_close_shutdown(struct tcp_pcb *pcb, u8_t rst_on_unacked_data)
142 if (rst_on_unacked_data && (pcb->state != LISTEN)) {
143 if ((pcb->refused_data != NULL) || (pcb->rcv_wnd != TCP_WND))
612 struct tcp_pcb *pcb; local
752 struct tcp_pcb *pcb, *prev; local
995 struct tcp_pcb *pcb = tcp_active_pcbs; local
1121 struct tcp_pcb *pcb, *inactive; local
1154 struct tcp_pcb *pcb, *inactive; local
1182 struct tcp_pcb *pcb; local
1592 struct tcp_pcb *pcb; local
1622 struct tcp_pcb *pcb; local
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_state_urb.h 69 uint32_t pcb[5]; member in struct:ilo_state_urb
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_render_media.c 185 const uint32_t pcb = render->state.cs.PUSH_CONSTANT_BUFFER; local
213 gen6_MEDIA_CURBE_LOAD(render->builder, pcb, pcb_size);
ilo_render_dynamic.c 235 void *pcb; local
238 gen6_push_constant_buffer(r->builder, total_size, &pcb);
246 memcpy(pcb, cbuf->cso[0].user_buffer, cbuf0_size);
248 memcpy(pcb, cbuf->cso[0].user_buffer,
250 memset(pcb + cbuf->cso[0].info.size, 0,
254 pcb += cbuf0_size;
258 memcpy(pcb, &vec->clip, clip_state_size);
276 void *pcb; local
279 gen6_push_constant_buffer(r->builder, cbuf0_size, &pcb);
283 memcpy(pcb, cbuf->cso[0].user_buffer, cbuf0_size)
    [all...]
  /system/bt/stack/pan/
pan_api.cc 296 tPAN_CONN* pcb = pan_get_pcb_by_addr(rem_bda); local
301 if ((pan_cb.num_conns > 1) || (pan_cb.num_conns && (!pcb))) {
325 if (pan_cb.num_conns && pan_cb.active_role == PAN_ROLE_CLIENT && !pcb) {
347 if (!pcb) pcb = pan_allocate_pcb(rem_bda, BNEP_INVALID_HANDLE);
348 if (!pcb) {
355 if (pcb->con_state == PAN_STATE_IDLE) {
357 } else if (pcb->con_state == PAN_STATE_CONNECTED) {
358 pcb->con_flags |= PAN_FLAGS_CONN_COMPLETED;
363 pcb->con_state = PAN_STATE_CONN_START
398 tPAN_CONN* pcb; local
504 tPAN_CONN* pcb; local
601 tPAN_CONN* pcb; local
642 tPAN_CONN* pcb; local
    [all...]
pan_main.cc 95 * one connection active reject the connection. Allocate PCB and store the
195 tPAN_CONN* pcb = pan_get_pcb_by_handle(handle); local
196 if (pcb) {
209 if (pcb->con_state == PAN_STATE_CONNECTED) {
213 pcb->prv_src_uuid = pcb->src_uuid;
214 pcb->prv_dst_uuid = pcb->dst_uuid;
216 if (pcb->src_uuid == UUID_SERVCLASS_NAP &&
220 (*pan_cb.pan_bridge_req_cb)(pcb->rem_bda, false)
285 tPAN_CONN* pcb; local
385 tPAN_CONN* pcb; local
479 tPAN_CONN *pcb, *dst_pcb; local
    [all...]
pan_int.h 72 tPAN_CONN pcb[MAX_PAN_CONNS]; member in struct:__anon2506
  /external/libese/libese-teq1/tests/
teq1_unittests.cpp 62 const uint8_t *pcb = &kRxPCBs[0]; local
66 tx_frame_.header.PCB = TEQ1_I(0, 0);
69 while (*pcb != 255) {
70 rx_frame_.header.PCB = *pcb;
75 EXPECT_EQ(0, teq1_frame_error_check(&state_, &tx_frame_, &rx_frame_)) << teq1_pcb_to_name(rx_frame_.header.PCB);
81 pcb++;
133 tx_frame_.header.PCB = TEQ1_I(0, 0);
138 rx_frame_.header.PCB = TEQ1_I(0, 0);
148 teq1_trace_transmit(tx_frame_.header.PCB, tx_frame_.header.LEN)
    [all...]
  /external/syslinux/core/lwip/src/api/
api_msg.c 78 recv_raw(void *arg, struct raw_pcb *pcb, struct pbuf *p,
116 buf->port = pcb->protocol;
144 recv_udp(void *arg, struct udp_pcb *pcb, struct pbuf *p,
154 LWIP_UNUSED_ARG(pcb); /* only used for asserts... */
155 LWIP_ASSERT("recv_udp must have a pcb argument", pcb != NULL);
158 LWIP_ASSERT("recv_udp: recv for wrong pcb!", conn->pcb.udp == pcb);
216 recv_tcp(void *arg, struct tcp_pcb *pcb, struct pbuf *p, err_t err
415 struct tcp_pcb *pcb; local
    [all...]
  /hardware/nxp/secure_element/libese-spi/p73/lib/
phNxpEseProto7816_3.cpp 172 pcb_byte |= PH_PROTO_7816_S_BLOCK_REQ; /* PCB */
184 pcb_byte |= PH_PROTO_7816_S_BLOCK_REQ; /* PCB */
196 pcb_byte |= PH_PROTO_7816_S_BLOCK_REQ; /* PCB */
218 p_framebuff[1] = pcb_byte; /* PCB */
222 ALOGD_IF(ese_debug_enabled, "S-Frame PCB: %x\n", p_framebuff[1]);
304 /* store the pcb byte */
567 uint8_t pcb; local
572 pcb = p_data[PH_PROPTO_7816_PCB_OFFSET];
576 phNxpEse_memcpy(&pcb_bits, &pcb, sizeof(uint8_t));
    [all...]
  /frameworks/base/services/core/java/com/android/server/audio/
MediaFocusControl.java 409 for (IAudioPolicyCallback pcb : mFocusFollowers) {
410 if (pcb.asBinder().equals(ff.asBinder())) {
429 for (IAudioPolicyCallback pcb : mFocusFollowers) {
430 if (pcb.asBinder().equals(ff.asBinder())) {
431 mFocusFollowers.remove(pcb);
467 * @param pcb non null
469 void notifyExtPolicyCurrentFocusAsync(IAudioPolicyCallback pcb) {
470 final IAudioPolicyCallback pcb2 = pcb;
496 for (IAudioPolicyCallback pcb : mFocusFollowers) {
499 pcb.notifyAudioFocusGrant(afi, requestResult)
    [all...]
  /external/syslinux/core/lwip/src/include/lwip/
api.h 51 * the same byte order as in the corresponding pcb.
145 } pcb; member in struct:netconn
dhcp.h 34 struct udp_pcb *pcb; member in struct:dhcp
snmp_msg.h 224 struct udp_pcb *pcb; member in struct:snmp_msg_pstat
263 struct udp_pcb *pcb; member in struct:snmp_msg_trap
  /external/mesa3d/src/gallium/drivers/ilo/shader/
ilo_shader_internal.h 151 } pcb; member in struct:ilo_shader
  /system/bt/btif/include/
btif_hl.h 193 btif_hl_pending_chan_cb_t pcb; member in struct:__anon1725
285 &(btif_hl_cb.acb[app_idx].mcb[mcl_idx].pcb)
  /hardware/interfaces/camera/device/3.4/default/
ExternalCameraDeviceSession.cpp 1392 uint8_t *pcb = static_cast<uint8_t*>(inLayout.cb); local
    [all...]
  /external/syslinux/core/lwip/src/core/snmp/
mib2.c 3689 struct tcp_pcb *pcb = tcp_active_pcbs; local
3883 struct udp_pcb *pcb; local
    [all...]

Completed in 430 milliseconds

1 2