Searched defs:hexbuf (Results 1 - 4 of 4) sorted by relevance

/external/openssl/crypto/x509v3/
H A Dv3_utl.c394 unsigned char *hexbuf, *q; local
400 if(!(hexbuf = OPENSSL_malloc(strlen(str) >> 1))) goto err;
401 for(p = (unsigned char *)str, q = hexbuf; *p;) {
413 OPENSSL_free(hexbuf);
430 if(len) *len = q - hexbuf;
432 return hexbuf;
435 if(hexbuf) OPENSSL_free(hexbuf);
440 OPENSSL_free(hexbuf);
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_hh.c1545 UINT8 *hexbuf; local
1548 hexbuf = GKI_getbuf(len);
1549 if (hexbuf == NULL) {
1556 memset(hexbuf, 0, len);
1558 hex_bytes_filled = ascii_2_hex(report, len, hexbuf);
1561 BT_HDR* p_buf = create_pbuf(hex_bytes_filled, hexbuf);
1565 GKI_freebuf(hexbuf);
1569 GKI_freebuf(hexbuf);
1572 GKI_freebuf(hexbuf);
1611 UINT8 *hexbuf; local
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_utl.c396 unsigned char *hexbuf, *q; local
402 if(!(hexbuf = OPENSSL_malloc(strlen(str) >> 1))) goto err;
403 for(p = (unsigned char *)str, q = hexbuf; *p;) {
409 OPENSSL_free(hexbuf);
426 if(len) *len = q - hexbuf;
428 return hexbuf;
431 if(hexbuf) OPENSSL_free(hexbuf);
436 OPENSSL_free(hexbuf);
/external/lldb/tools/debugserver/source/
H A DRNBRemote.cpp303 char hexbuf[5]; local
313 snprintf (hexbuf, sizeof hexbuf, "%02x", cksum & 0xff);
314 sendpacket += hexbuf;
2665 char hexbuf[3]; local
2666 hexbuf[0] = *p;
2667 hexbuf[1] = *(p + 1);
2668 hexbuf[2] = '\0';
2670 uint8_t byte = strtoul (hexbuf, NULL, 16);

Completed in 148 milliseconds