Searched defs:new_buf (Results 1 - 3 of 3) sorted by relevance
| /vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/ |
| H A D | dt_buf.c | 102 uchar_t *new_buf; local 110 if ((new_buf = dt_zalloc(dtp, new_len)) == NULL) { 115 bcopy(bp->dbu_buf, new_buf, off); 118 bp->dbu_buf = new_buf; 119 bp->dbu_ptr = new_buf + off;
|
| /vbox/src/VBox/Devices/Network/lwip-new/src/api/ |
| H A D | api_lib.c | 350 * @param new_buf pointer where a new pbuf/netbuf is stored when received data 355 netconn_recv_data(struct netconn *conn, void **new_buf) argument 364 LWIP_ERROR("netconn_recv: invalid pointer", (new_buf != NULL), return ERR_ARG;); 365 *new_buf = NULL; 434 *new_buf = buf; 443 * @param new_buf pointer where a new pbuf is stored when received data 449 netconn_recv_tcp_pbuf(struct netconn *conn, struct pbuf **new_buf) argument 454 return netconn_recv_data(conn, (void **)new_buf); 461 * @param new_buf pointer where a new netbuf is stored when received data 466 netconn_recv(struct netconn *conn, struct netbuf **new_buf) argument [all...] |
| /vbox/src/libs/libxml2-2.6.31/ |
| H A D | parser.c | 4029 xmlChar *new_buf; local 4031 new_buf = (xmlChar *) xmlRealloc(buf, size * sizeof(xmlChar)); 4032 if (new_buf == NULL) { 4037 buf = new_buf; 4164 xmlChar *new_buf; local 4166 new_buf = (xmlChar *) xmlRealloc(buf, 4168 if (new_buf == NULL) { 4174 buf = new_buf;
|
Completed in 335 milliseconds