/src/distrib/utils/embedded/conf/ |
octeon.conf | 7 gpt=true key
|
riscv32.conf | 7 gpt=true key
|
riscv64.conf | 7 gpt=true key
|
arm64.conf | 7 gpt=true key
|
/src/sbin/gpt/ |
gpt_private.h | 37 struct gpt { struct 44 struct map *tbl, *lbt, *gpt, *tpg; member in struct:gpt
|
uuid.c | 33 __FBSDID("$FreeBSD: src/sbin/gpt/remove.c,v 1.10 2006/10/04 18:20:25 marcel Exp $"); 49 #include "gpt.h" 69 gpt_t gpt; member in struct:uuidctx 83 gpt_uuid_generate(ctx->gpt, uuidstore); 95 gpt_uuid_generate(ctx->gpt, uuidstore); 100 cmd_uuid(gpt_t gpt, int argc, char *argv[]) 107 if (gpt == NULL) 114 ctx.gpt = gpt; 129 if (gpt_add_find(gpt, &find, ch) == -1 [all...] |
main.c | 51 #include "gpt.h" 89 if (strcmp(p, "gpt") == 0) 147 gpt_t gpt; local in function:main 151 if (strcmp(getprogname(), "gpt") == 0) { 220 gpt = gpt_open(dev, flags | cmdsw[i]->flags, 222 if (gpt == NULL) 229 gpt = NULL; 232 if ((*cmdsw[i]->fptr)(gpt, argc, argv) == -1) 235 if (gpt) 236 gpt_close(gpt); [all...] |
gpt.c | 35 __FBSDID("$FreeBSD: src/sbin/gpt/gpt.c,v 1.16 2006/07/07 02:44:23 marcel Exp $"); 38 __RCSID("$NetBSD: gpt.c,v 1.91 2025/02/23 20:47:19 christos Exp $"); 60 #include "gpt.h" 247 gpt_read(gpt_t gpt, off_t lba, size_t count) 252 count *= gpt->secsz; 257 ofs = lba * gpt->secsz; 258 if (lseek(gpt->fd, ofs, SEEK_SET) == ofs && 259 read(gpt->fd, buf, count) == (ssize_t)count) 267 gpt_write(gpt_t gpt, map_t map 485 gpt_t gpt; local in function:gpt_open [all...] |
/src/sys/stand/efiboot/ |
efiblock.h | 69 struct efi_block_part_gpt gpt; member in union:efi_block_part::__anon8dda5cf0010a
|
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
imx31.dtsi | 255 gpt: timer@53f90000 { label 256 compatible = "fsl,imx31-gpt";
|
imx35.dtsi | 216 gpt: timer@53f90000 { label in label:aips2 217 compatible = "fsl,imx35-gpt", "fsl,imx31-gpt";
|
imx50.dtsi | 277 gpt: timer@53fa0000 { label 278 compatible = "fsl,imx50-gpt", "fsl,imx31-gpt";
|
imx51.dtsi | 388 gpt: timer@73fa0000 { label 389 compatible = "fsl,imx51-gpt", "fsl,imx31-gpt";
|
imx53.dtsi | 445 gpt: timer@53fa0000 { label 446 compatible = "fsl,imx53-gpt", "fsl,imx31-gpt";
|
imx6sl.dtsi | 379 gpt: timer@2098000 { label in label:aips1 380 compatible = "fsl,imx6sl-gpt";
|
imx6qdl.dtsi | 574 gpt: timer@2098000 { label 575 compatible = "fsl,imx6q-gpt", "fsl,imx31-gpt";
|
imx6sx.dtsi | 484 gpt: timer@2098000 { label 485 compatible = "fsl,imx6sx-gpt", "fsl,imx6dl-gpt";
|
/src/sbin/efi/ |
gptsubr.c | 52 #include "gpt.h" 117 uint32_t hdr_revision; /* GPT specification revision */ 118 uint32_t hdr_size; /* size of GPT Header */ 119 uint32_t hdr_crc_self; /* CRC32 of GPT Header */ 122 uint64_t hdr_lba_alt; /* LBA of backup GPT Header */ 131 * The remainder of the block that contains the GPT Header 132 * is reserved by EFI for future GPT Header expansion, and 145 get_map_widths(gpt_t gpt) 153 for (m = map_first(gpt); m != NULL; m = m->map_next) { 242 * Use the gpt.c code here rather than ou 295 gpt_t gpt; local in function:find_gpt_map 368 gpt_t gpt; local in function:mbr_sig_write 418 gpt_t gpt; local in function:show_gpt [all...] |