Searched defs:verity_params (Results 1 - 2 of 2) sorted by relevance

/system/core/fs_mgr/
H A Dfs_mgr_avb.cpp308 // The buffer consists of [dm_ioctl][dm_target_spec][verity_params].
320 char* verity_params = buffer + sizeof(struct dm_ioctl) + sizeof(struct dm_target_spec); local
321 size_t bufsize = DM_BUF_SIZE - (verity_params - buffer);
325 // Copies verity_table to verity_params (including the terminating null byte).
331 memcpy(verity_params, verity_table.c_str(), verity_table.size() + 1);
334 verity_params += verity_table.size() + 1;
335 verity_params = (char*)(((unsigned long)verity_params + 7) & ~7);
336 dm_target->next = verity_params - buffer;
H A Dfs_mgr_verity.cpp257 char *verity_params; local
273 verity_params = buffer + sizeof(struct dm_ioctl) + sizeof(struct dm_target_spec);
274 bufsize = DM_BUF_SIZE - (verity_params - buffer);
276 if (!format(verity_params, bufsize, params)) {
281 LINFO << "loading verity table: '" << verity_params << "'"; local
284 verity_params += strlen(verity_params) + 1;
285 verity_params = (char*)(((uintptr_t)verity_params + 7) & ~7);
286 tgt->next = verity_params
[all...]

Completed in 179 milliseconds