OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nvdata
(Results
1 - 4
of
4
) sorted by null
/external/vboot_reference/tests/
vb2_nvstorage_tests.c
75
memset(c.
nvdata
, 0xA6, sizeof(c.
nvdata
));
80
TEST_EQ(c.
nvdata
[0], 0x70, "vb2_nv_init() reset header byte");
81
TEST_NEQ(c.
nvdata
[15], 0, "vb2_nv_init() CRC");
85
goodcrc = c.
nvdata
[15];
93
TEST_EQ(c.
nvdata
[15], goodcrc, "vb2_nv_init() CRC same");
97
c.
nvdata
[0] ^= 0x40;
101
TEST_EQ(c.
nvdata
[0], 0x70, "vb2_nv_init() reset header byte again");
103
TEST_EQ(c.
nvdata
[15], goodcrc, "vb2_nv_init() CRC same again");
106
TEST_EQ(c.
nvdata
[11], 0, "Kernel byte starts at 0")
[
all
...]
/external/vboot_reference/firmware/2lib/
2nvstorage.c
17
ctx->
nvdata
[VB2_NV_OFFS_CRC] = vb2_crc8(ctx->
nvdata
, VB2_NV_OFFS_CRC);
34
const uint8_t *p = ctx->
nvdata
;
51
uint8_t *p = ctx->
nvdata
;
77
const uint8_t *p = ctx->
nvdata
;
171
uint8_t *p = ctx->
nvdata
;
/external/vboot_reference/firmware/2lib/include/
2api.h
56
* Verified boot has changed
nvdata
[]. Caller must save
nvdata
[] back
122
uint8_t
nvdata
[VB2_NVDATA_SIZE];
member in struct:vb2_context
179
* call, examine vb2_context.flags to determine whether
nvdata
or secdata
186
* Load
nvdata
from wherever you keep it.
270
* should check for updates to secdata and/or
nvdata
, then reboot.
292
*
nvdata
, then reboot.
303
*
nvdata
, then reboot.
/external/vboot_reference/firmware/lib/tpm_lite/
tlcl.c
405
uint8_t*
nvdata
;
local
415
nvdata
= response + kTpmResponseHeaderLength + sizeof(size);
416
FromTpmUint32(
nvdata
+ kNvDataPublicPermissionsOffset, permissions);
Completed in 690 milliseconds