HomeSort by relevance Sort by last modified time
    Searched refs:netbuf (Results 1 - 25 of 47) sorted by null

1 2

  /external/syslinux/core/lwip/src/include/lwip/
netbuf.h 43 /** This netbuf has dest-addr/port set */
45 /** This netbuf includes a checksum */
48 struct netbuf { struct
64 struct netbuf * netbuf_new (void);
65 void netbuf_delete (struct netbuf *buf);
66 void * netbuf_alloc (struct netbuf *buf, u16_t size);
67 void netbuf_free (struct netbuf *buf);
68 err_t netbuf_ref (struct netbuf *buf,
70 void netbuf_chain (struct netbuf *head,
71 struct netbuf *tail)
    [all...]
api_msg.h 71 struct netbuf *b;
  /external/syslinux/core/lwip/src/api/
netbuf.c 43 #include "lwip/netbuf.h"
49 * Create (allocate) and initialize a new netbuf.
50 * The netbuf doesn't yet contain a packet buffer!
52 * @return a pointer to a new netbuf
56 netbuf *netbuf_new(void)
58 struct netbuf *buf;
60 buf = (struct netbuf *)memp_malloc(MEMP_NETBUF);
82 * Deallocate a netbuf allocated by netbuf_new().
84 * @param buf pointer to a netbuf allocated by netbuf_new()
87 netbuf_delete(struct netbuf *buf
    [all...]
api_lib.c 333 * Receive data: actual implementation that doesn't care whether pbuf or netbuf
337 * @param new_buf pointer where a new pbuf/netbuf is stored when received data
407 len = netbuf_len((struct netbuf *)buf);
443 * Receive data (in form of a netbuf containing a packet buffer) from a netconn
446 * @param new_buf pointer where a new netbuf is stored when received data
451 netconn_recv(struct netconn *conn, struct netbuf **new_buf)
454 struct netbuf *buf = NULL;
468 buf = (struct netbuf *)memp_malloc(MEMP_NETBUF);
530 * Send data (in form of a netbuf) to a specific remote IP address and port.
534 * @param buf a netbuf containing the data to sen
    [all...]
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_addrmanagmt_rpcb_getaddr/
tirpc_rpcb_getaddr.c 56 struct netbuf svcaddr;
tirpc_rpcb_getaddr_limits.c 53 struct netbuf svcaddr;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_bottomlevel_clnt_call/
tirpc_bottomlevel_clnt_call.c 53 struct netbuf svcaddr;
tirpc_bottomlevel_clnt_call_stress.c 58 struct netbuf svcaddr;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_bottomlevel_clnt_dg_create/
tirpc_clnt_dg_create.c 53 struct netbuf svcaddr;
tirpc_clnt_dg_create_limits.c 65 struct netbuf svcaddr;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_bottomlevel_clnt_vc_create/
tirpc_clnt_vc_create.c 56 struct netbuf svcaddr;
tirpc_clnt_vc_create_limits.c 65 struct netbuf svcaddr;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_err_svcerr_noproc/
tirpc_svcerr_noproc.c 57 struct netbuf svcaddr;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_err_svcerr_noprog/
tirpc_svcerr_noprog.c 57 struct netbuf svcaddr;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_err_svcerr_progvers/
tirpc_svcerr_progvers.c 57 struct netbuf svcaddr;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_err_svcerr_systemerr/
tirpc_svcerr_systemerr.c 57 struct netbuf svcaddr;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_err_svcerr_weakauth/
tirpc_svcerr_weakauth.c 57 struct netbuf svcaddr;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_expertlevel_clnt_call/
tirpc_expertlevel_clnt_call.c 57 struct netbuf svcaddr;
tirpc_expertlevel_clnt_call_stress.c 58 struct netbuf svcaddr;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_expertlevel_clnt_tli_create/
tirpc_clnt_tli_create.c 57 struct netbuf svcaddr;
tirpc_clnt_tli_create_limits.c 65 struct netbuf svcaddr;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_expertlevel_rpcb_rmtcall/
tirpc_rpcb_rmtcall.c 56 struct netbuf svcaddr;
tirpc_rpcb_rmtcall_stress.c 58 struct netbuf svcaddr;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_interlevel_clnt_control/
tirpc_clnt_control_limits.c 74 clnt_control(client, CLGET_SVC_ADDR, (struct netbuf *)&tst_nconf);
  /external/syslinux/core/fs/pxe/
pxe.h 109 struct netbuf;
124 struct netbuf *buf; /* lwip cached buffer */

Completed in 316 milliseconds

1 2