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

1 2

  /external/valgrind/main/auxprogs/
aix5_proc_self_sysent.c 15 int nbuf = 0; variable
24 nbuf = fread(buf, 1, NN, f);
25 assert(nbuf > 0 && nbuf <= NN);
valgrind-listener.c 128 static void copyout ( char* buf, int nbuf )
131 for (i = 0; i < nbuf; i++) {
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
wpabuf.c 37 unsigned char *nbuf; local
39 nbuf = os_realloc(buf->ext_data, buf->used + add_len);
40 if (nbuf == NULL)
42 os_memset(nbuf + buf->used, 0, add_len);
43 buf->ext_data = nbuf;
45 nbuf = os_realloc(buf, sizeof(struct wpabuf) +
47 if (nbuf == NULL)
49 buf = (struct wpabuf *) nbuf;
50 os_memset(nbuf + sizeof(struct wpabuf) + buf->used, 0,
  /external/wpa_supplicant_8/src/utils/
wpabuf.c 76 unsigned char *nbuf; local
78 nbuf = os_realloc(buf->ext_data, buf->used + add_len);
79 if (nbuf == NULL)
81 os_memset(nbuf + buf->used, 0, add_len);
82 buf->ext_data = nbuf;
85 nbuf = os_realloc(trace, sizeof(struct wpabuf_trace) +
88 if (nbuf == NULL)
90 trace = (struct wpabuf_trace *) nbuf;
92 os_memset(nbuf + sizeof(struct wpabuf_trace) +
96 nbuf = os_realloc(buf, sizeof(struct wpabuf)
    [all...]
  /external/oprofile/daemon/liblegacy/
init.c 47 static struct op_note * nbuf; variable in typeref:struct:op_note
117 * @param nbuf note buffer area
120 static void opd_shutdown(struct op_buffer_head * buf, size_t size, struct op_note * nbuf, size_t nsize)
134 ncount = op_read_device(notedevfd, nbuf, nsize);
137 opd_do_notes(nbuf, ncount);
159 * @param nbuf note buffer
165 static void opd_do_read(struct op_buffer_head * buf, size_t size, struct op_note * nbuf, size_t nsize)
176 ncount = op_read_device(notedevfd, nbuf, nsize);
178 opd_do_notes(nbuf, ncount);
199 opd_shutdown(buf, size, nbuf, nsize)
    [all...]
  /external/valgrind/main/coregrind/
pub_core_debuginfo.h 102 Bool VG_(get_fnname_raw) ( Addr a, Char* buf, Int nbuf );
107 Bool VG_(get_fnname_no_cxx_demangle) ( Addr a, Char* buf, Int nbuf );
  /external/dropbear/libtomcrypt/src/prngs/
sober128.c 238 c->nbuf = 0;
262 c->nbuf = 0;
306 while (c->nbuf != 0 && outlen != 0) {
309 c->nbuf -= 8;
351 c->nbuf = 32;
352 while (c->nbuf != 0 && outlen != 0) {
355 c->nbuf -= 8;
  /bionic/libc/netbsd/resolv/
res_query.c 375 char nbuf[MAXDNAME]; local
376 const char *longname = nbuf;
396 strncpy(nbuf, name, (size_t)n);
397 nbuf[n] = '\0';
407 sprintf(nbuf, "%s.%s", name, domain);
res_debug.c 611 static char nbuf[40]; local
644 default: sprintf(nbuf, "?0x%lx?", (u_long)option);
645 return (nbuf);
654 static char nbuf[40]; /* XXX nonreentrant */ local
656 if (ns_format_ttl((u_long)value, nbuf, sizeof nbuf) < 0)
657 sprintf(nbuf, "%u", value);
658 return (nbuf);
  /external/valgrind/main/coregrind/m_aspacemgr/
aspacemgr-common.c 318 Bool ML_(am_resolve_filename) ( Int fd, /*OUT*/HChar* buf, Int nbuf )
323 for (i = 0; i < nbuf; i++) buf[i] = 0;
325 if (ML_(am_readlink)(tmp, buf, nbuf) > 0 && buf[0] == '/')
337 if (nbuf > 0) {
338 VG_(strncpy)( buf, tmp, nbuf < sizeof(tmp) ? nbuf : sizeof(tmp) );
339 buf[nbuf-1] = 0;
priv_aspacemgr.h 122 Bool ML_(am_resolve_filename) ( Int fd, /*OUT*/HChar* buf, Int nbuf );
  /external/iproute2/lib/
ll_map.c 107 static char nbuf[16]; local
109 return ll_idx_n2a(idx, nbuf);
  /external/wpa_supplicant_8/src/crypto/
tls_nss.c 114 u8 *nbuf; local
119 nbuf = os_realloc(conn->push_buf, conn->push_buf_len + amount);
120 if (nbuf == NULL) {
125 os_memcpy(nbuf + conn->push_buf_len, buf, amount);
126 conn->push_buf = nbuf;
  /external/valgrind/main/coregrind/m_debuginfo/
debuginfo.c     [all...]
  /external/dhcpcd/
if-linux.c 145 char *buf = NULL, *nbuf; local
171 nbuf = realloc(buf, buflen);
172 if (nbuf == NULL)
174 buf = nbuf;
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_prng.h 43 int nbuf, /* number of part-word stream bits buffered */ member in struct:sober128_prng
  /external/mksh/src/
shf.c 336 unsigned char *nbuf; local
345 nbuf = aresize(shf->buf, 2 * shf->wbsize, shf->areap);
346 shf->rp = nbuf + (shf->rp - shf->buf);
347 shf->wp = nbuf + (shf->wp - shf->buf);
351 shf->buf = nbuf;
  /external/wpa_supplicant/
radius.c 418 unsigned char *nbuf; local
424 nbuf = os_realloc(msg->buf, nlen);
425 if (nbuf == NULL)
427 diff = nbuf - msg->buf;
428 msg->buf = nbuf;
tls_gnutls.c 268 u8 *nbuf; local
270 nbuf = os_realloc(conn->push_buf, conn->push_buf_len + len);
271 if (nbuf == NULL) {
275 os_memcpy(nbuf + conn->push_buf_len, buf, len);
276 conn->push_buf = nbuf;
    [all...]
eap_sim_common.c 676 u8 *nbuf = os_realloc(msg->buf, msg->used + add_len); local
677 if (nbuf == NULL)
679 msg->buf = nbuf;
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
tls_gnutls.c 273 u8 *nbuf; local
275 nbuf = os_realloc(conn->push_buf, conn->push_buf_len + len);
276 if (nbuf == NULL) {
280 os_memcpy(nbuf + conn->push_buf_len, buf, len);
281 conn->push_buf = nbuf;
    [all...]
  /external/wpa_supplicant_8/src/ap/
sta_info.c 710 u8 *trans_id, *nbuf; local
716 nbuf = os_realloc(sta->sa_query_trans_id,
718 if (nbuf == NULL)
724 trans_id = nbuf + sta->sa_query_count * WLAN_SA_QUERY_TR_ID_LEN;
725 sta->sa_query_trans_id = nbuf;
  /external/wpa_supplicant_8/wpa_supplicant/
sme.c 641 u8 *trans_id, *nbuf; local
647 nbuf = os_realloc(wpa_s->sme.sa_query_trans_id,
650 if (nbuf == NULL)
656 trans_id = nbuf + wpa_s->sme.sa_query_count * WLAN_SA_QUERY_TR_ID_LEN;
657 wpa_s->sme.sa_query_trans_id = nbuf;
  /bionic/libc/netbsd/net/
getaddrinfo.c 2386 char nbuf[MAXDNAME]; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/radius/
radius.c 427 unsigned char *nbuf; local
432 nbuf = os_realloc(msg->buf, nlen);
433 if (nbuf == NULL)
435 msg->buf = nbuf;

Completed in 587 milliseconds

1 2