Home
last modified time | relevance | path

Searched refs:hex_ptr (Results 1 – 1 of 1) sorted by relevance

/device/google/cuttlefish/guest/hals/ril/reference-ril/
Dreference-ril.c441 void convertBytesToHexString(char *bin_ptr, int length, unsigned char *hex_ptr) { in convertBytesToHexString() argument
445 if (bin_ptr == NULL || hex_ptr == NULL) { in convertBytesToHexString()
451 *hex_ptr = (unsigned char)(tmp + '0'); in convertBytesToHexString()
453 *hex_ptr = (unsigned char)(tmp + 'A' - 10); in convertBytesToHexString()
455 hex_ptr++; in convertBytesToHexString()
458 *hex_ptr = (unsigned char)(tmp + '0'); in convertBytesToHexString()
460 *hex_ptr = (unsigned char)(tmp + 'A' - 10); in convertBytesToHexString()
462 hex_ptr++; in convertBytesToHexString()