/external/vboot_reference/host/include/ |
cgpt_params.h | 18 uint64_t drive_size; member in struct:CgptCreateParams 25 uint64_t drive_size; member in struct:CgptAddParams 48 uint64_t drive_size; member in struct:CgptShowParams 60 uint64_t drive_size; member in struct:CgptRepairParams 66 uint64_t drive_size; member in struct:CgptBootParams 74 uint64_t drive_size; member in struct:CgptPrioritizeParams 86 uint64_t drive_size; member in struct:CgptFindParams 110 uint64_t drive_size; member in struct:CgptLegacyParams
|
/external/vboot_reference/cgpt/ |
cgpt_repair.c | 19 params->drive_size))
|
cmd_boot.c | 45 params.drive_size = strtoull(optarg, &e, 0);
|
cmd_create.c | 41 params.drive_size = strtoull(optarg, &e, 0);
|
cmd_legacy.c | 39 params.drive_size = strtoull(optarg, &e, 0);
|
cmd_repair.c | 39 params.drive_size = strtoull(optarg, &e, 0);
|
cgpt_wrapper.c | 87 uint64_t drive_size = 0; local 88 if (GetMtdSize(mtd_device, &drive_size) != 0) { 116 snprintf(size, sizeof(size), "%" PRIu64, drive_size);
|
cgpt_legacy.c | 19 params->drive_size))
|
cmd_prioritize.c | 54 params.drive_size = strtoull(optarg, &e, 0);
|
cmd_show.c | 54 params.drive_size = strtoull(optarg, &e, 0);
|
cgpt_boot.c | 24 params->drive_size)) 78 params->drive_size)) {
|
cgpt_find.c | 157 if (CGPT_OK != DriveOpen(fileName, &drive, O_RDONLY, params->drive_size)) 258 if (params->drive_size == 0) { 259 if (GetMtdSize("/dev/mtd0", ¶ms->drive_size) != 0) {
|
cgpt_add.c | 179 params->drive_size)) 217 params->drive_size)) 304 params->drive_size))
|
cgpt_create.c | 112 params->drive_size))
|
cmd_add.c | 53 params.drive_size = strtoull(optarg, &e, 0);
|
cmd_find.c | 82 params.drive_size = strtoull(optarg, &e, 0);
|
cgpt.h | 54 // If 'drive_size' is 0, both the partitions and GPT structs reside on the same 56 // Otherwise, 'drive_size' is taken as the size of the device that all 62 uint64_t drive_size);
|
cgpt_common.c | 290 uint64_t drive_size) { 318 if (drive_size == 0) { 322 drive->size = drive_size; 976 params->drive_size)) [all...] |
cgpt_prioritize.c | 110 params->drive_size))
|
cgpt_show.c | 341 params->drive_size))
|