OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VBNV_BLOCK_SIZE
(Results
1 - 7
of
7
) sorted by null
/external/vboot_reference/firmware/include/
vboot_nvstorage.h
12
#define
VBNV_BLOCK_SIZE
16 /* Size of NV storage block in bytes */
16
uint8_t raw[
VBNV_BLOCK_SIZE
];
vboot_api.h
490
#define
VBNV_BLOCK_SIZE
16 /* Size of NV storage block in bytes */
493
* Read the
VBNV_BLOCK_SIZE
-byte non-volatile storage into buf.
498
* Write the
VBNV_BLOCK_SIZE
-byte non-volatile storage from buf.
[
all
...]
/external/vboot_reference/firmware/lib/
vboot_nvstorage_rollback.c
26
BUILD_ASSERT(
VBNV_BLOCK_SIZE
<= BACKUP_NV_SIZE);
vboot_nvstorage.c
73
Memset(raw, 0,
VBNV_BLOCK_SIZE
);
vboot_display.c
544
for (i = 0; i <
VBNV_BLOCK_SIZE
; i++) {
/external/vboot_reference/host/arch/arm/lib/
crossystem_arch.c
348
char hexstring[
VBNV_BLOCK_SIZE
* 2 + 32]; /* Reserve extra 32 bytes */
358
for (i = 0; i <
VBNV_BLOCK_SIZE
; i++) {
367
char hexstring[
VBNV_BLOCK_SIZE
* 2 + 1];
373
for (i = 0; i <
VBNV_BLOCK_SIZE
; i++)
/external/vboot_reference/host/arch/x86/lib/
crossystem_arch.c
179
if (
VBNV_BLOCK_SIZE
> blksz)
182
if (0 != VbCmosRead(offs,
VBNV_BLOCK_SIZE
, vnc->raw))
200
if (
VBNV_BLOCK_SIZE
> blksz)
203
if (0 != VbCmosWrite(offs,
VBNV_BLOCK_SIZE
, vnc->raw))
Completed in 205 milliseconds