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

  /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/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 610 static char nbuf[40]; local
643 default: sprintf(nbuf, "?0x%lx?", (u_long)option);
644 return (nbuf);
653 static char nbuf[40]; /* XXX nonreentrant */ local
655 if (ns_format_ttl((u_long)value, nbuf, sizeof nbuf) < 0)
656 sprintf(nbuf, "%u", value);
657 return (nbuf);
  /external/iproute2/lib/
ll_map.c 107 static char nbuf[16]; local
109 return ll_idx_n2a(idx, 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/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;
eap_fast.c 482 char *nbuf = os_realloc(*buf, *buf_len + need); local
483 if (nbuf == NULL) {
488 *buf = nbuf;
    [all...]
  /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...]
  /bionic/libc/netbsd/net/
getaddrinfo.c 2129 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;
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_peap.c 1091 struct wpabuf *nbuf = local
1094 if (nbuf == NULL) {
1100 nhdr = wpabuf_put(nbuf, sizeof(*nhdr));
1105 wpabuf_put_buf(nbuf, in_decrypted);
1108 in_decrypted = nbuf;
    [all...]
  /external/tcpdump/
smbutil.c 693 char nbuf[255]; local
700 maxbuf, nbuf);
707 printf("%-15.15s NameType=0x%02X (%s)", nbuf, name_type,
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_fast_pac.c 492 char *nbuf = os_realloc(*buf, *buf_len + need); local
493 if (nbuf == NULL) {
498 *buf = nbuf;
  /external/libxml2/
HTMLparser.c 1854 char nbuf[16]; local
1953 char nbuf[16]; local
    [all...]

Completed in 839 milliseconds