Searched refs:next_blob_offset (Results 1 – 3 of 3) sorted by relevance
/system/keymint/common/src/tag/ |
D | legacy.rs | 266 next_blob_offset: &mut usize, in consume_blob() 272 if data_offset != *next_blob_offset { in consume_blob() 277 next_blob_offset in consume_blob() 292 *next_blob_offset += data_len; in consume_blob() 302 let mut next_blob_offset = 0; in deserialize() localVariable 447 KeyParam::ApplicationId(consume_blob(data, &mut next_blob_offset, blob_data)?) in deserialize() 450 KeyParam::ApplicationData(consume_blob(data, &mut next_blob_offset, blob_data)?) in deserialize() 454 &mut next_blob_offset, in deserialize() 459 &mut next_blob_offset, in deserialize() 463 KeyParam::AttestationIdBrand(consume_blob(data, &mut next_blob_offset, blob_data)?) in deserialize() [all …]
|
/system/update_engine/payload_generator/ |
D | payload_file.cc | 130 uint64_t next_blob_offset = 0; in WritePayload() local 135 if (aop.op.data_offset() != next_blob_offset) { in WritePayload() 137 << " != " << next_blob_offset; in WritePayload() 139 next_blob_offset += aop.op.data_length(); in WritePayload() 201 next_blob_offset, signature_blob_length, &manifest_); in WritePayload()
|
/system/security/keystore2/src/ |
D | sw_keyblob.rs | 368 next_blob_offset: &mut usize, in consume_blob() 374 if data_offset != *next_blob_offset { in consume_blob() 375 return Err(bloberr!("got blob offset {} instead of {}", data_offset, next_blob_offset)); in consume_blob() 388 *next_blob_offset += data_len; in consume_blob() 405 let mut next_blob_offset = 0; in deserialize_params() localVariable 452 KeyParameterValue::Blob(consume_blob(data, &mut next_blob_offset, blob_data)?) in deserialize_params()
|