Searched refs:id_hex (Results 1 – 3 of 3) sorted by relevance
/aosp_15_r20/external/pciutils/lib/ |
H A D | names-parse.c | 62 static int id_hex(char *p, int cnt) in id_hex() function 124 if ((id1 = id_hex(p+2, 2)) < 0 || !id_white_p(p[4])) in id_parse_list() 131 if ((id1 = id_hex(p+2, 4)) < 0 || p[6]) in id_parse_list() 145 if ((id1 = id_hex(p, 4)) < 0 || !id_white_p(p[4])) in id_parse_list() 160 if ((id2 = id_hex(p, 4)) < 0 || !id_white_p(p[4])) in id_parse_list() 167 if ((id2 = id_hex(p, 4)) < 0 || !id_white_p(p[4])) in id_parse_list() 175 if ((id2 = id_hex(p, 2)) < 0 || !id_white_p(p[2])) in id_parse_list() 189 …if ((id3 = id_hex(p, 4)) < 0 || !id_white_p(p[4]) || (id4 = id_hex(p+5, 4)) < 0 || !id_white_p(p[9… in id_parse_list() 197 if ((id3 = id_hex(p, 2)) < 0 || !id_white_p(p[2])) in id_parse_list()
|
/aosp_15_r20/external/open-dice/src/ |
H A D | test_utils.cc | 162 uint8_t id_hex[40]; in CreateX509UdsCertificate() local 163 DiceHexEncode(id, DICE_ID_SIZE, id_hex, sizeof(id_hex)); in CreateX509UdsCertificate() 166 id_hex, sizeof(id_hex), 0, 0); in CreateX509UdsCertificate() 282 char id_hex[41]; in CreateEd25519CborUdsCertificate() local 283 DiceHexEncode(id, DICE_ID_SIZE, id_hex, sizeof(id_hex)); in CreateEd25519CborUdsCertificate() 284 id_hex[40] = '\0'; in CreateEd25519CborUdsCertificate() 287 cn_cbor_string_create(id_hex, &error), &error); in CreateEd25519CborUdsCertificate() 289 cn_cbor_string_create(id_hex, &error), &error); in CreateEd25519CborUdsCertificate() 370 char id_hex[41]; in CreateEcdsaCborUdsCertificate() local 371 DiceHexEncode(id, DICE_ID_SIZE, id_hex, sizeof(id_hex)); in CreateEcdsaCborUdsCertificate() [all …]
|
H A D | boringssl_cert_op.c | 117 uint8_t id_hex[40]; variable 118 DiceHexEncode(authority_id, DICE_ID_SIZE, id_hex, sizeof(id_hex)); 120 id_hex, sizeof(id_hex), 0, 0)) { 129 DiceHexEncode(subject_id, DICE_ID_SIZE, id_hex, sizeof(id_hex)); 131 id_hex, sizeof(id_hex), 0, 0)) {
|