Searched refs:ad_len (Results 1 – 3 of 3) sorted by relevance
/system/bt/stack/include/ |
D | advertise_data_parser.h | 31 size_t ad_len = ad.size(); in IsValid() local 32 while (position != ad_len) { in IsValid() 41 if (position + len >= ad_len) { in IsValid() 55 static const uint8_t* GetFieldByType(const uint8_t* ad, size_t ad_len, in GetFieldByType() argument 59 while (position != ad_len) { in GetFieldByType() 63 if (position + len >= ad_len) break; in GetFieldByType()
|
/system/keymaster/ |
D | ae.h | 95 int ad_len, void* ct, void* tag, int final); 125 int ad_len, void* pt, const void* tag, int final);
|
D | ocb.c | 789 static void process_ad(ae_ctx* ctx, const void* ad, int ad_len, int final) { in process_ad() argument 801 i = ad_len / (BPI * 16); in process_ad() 851 remaining = ((unsigned)ad_len) % (BPI * 16); in process_ad() 919 int ad_len, void* ct, void* tag, int final) { in ae_encrypt() argument 935 if (ad_len >= 0) in ae_encrypt() 940 if (ad_len > 0) in ae_encrypt() 941 process_ad(ctx, ad, ad_len, final); in ae_encrypt() 1130 int ad_len, void* pt, const void* tag, int final) { in ae_decrypt() argument 1154 if (ad_len >= 0) in ae_decrypt() 1159 if (ad_len > 0) in ae_decrypt() [all …]
|