Searched refs:partition (Results 26 - 50 of 76) sorted by relevance

1234

/osnet-11/usr/src/grub/grub2/grub-core/commands/
H A Dprobe.c26 #include <grub/partition.h>
42 {"partmap", 'p', 0, N_("Determine partition map type."), 0, 0},
89 if (dev->disk && dev->disk->partition)
90 val = dev->disk->partition->partmap->name;
H A Dsearch.c33 #include <grub/partition.h>
170 auto int part_hook (grub_disk_t disk, const grub_partition_t partition);
171 int part_hook (grub_disk_t disk, const grub_partition_t partition) argument
176 partition_name = grub_partition_get_name (partition);
H A Dloadenv.c26 #include <grub/partition.h>
243 part_start = grub_partition_get_start (disk->partition);
273 part_start = grub_partition_get_start (disk->partition);
/osnet-11/usr/src/lib/libdiskmgt/
H A DMakefile.com29 media.o slice.o partition.o findevs.o events.o \
/osnet-11/usr/src/grub/grub2/grub-core/partmap/
H A Dacorn.c1 /* acorn.c - Read Linux/ADFS partition tables. */
23 #include <grub/partition.h>
97 "Linux/ADFS partition map not found");
105 const grub_partition_t partition))
103 acorn_partition_map_iterate(grub_disk_t disk, int (*hook) (grub_disk_t disk, const grub_partition_t partition)) argument
H A Damiga.c1 /* amiga.c - Read amiga partition tables (RDB). */
23 #include <grub/partition.h>
92 const grub_partition_t partition))
119 "Amiga partition map not found");
121 /* The end of the partition list is marked using "-1". */
134 "invalid Amiga partition map");
135 /* Calculate the first block and the size of the partition. */
89 amiga_partition_map_iterate(grub_disk_t disk, int (*hook) (grub_disk_t disk, const grub_partition_t partition)) argument
H A Dapple.c1 /* apple.c - Read macintosh partition tables. */
23 #include <grub/partition.h>
32 /* The magic number to identify the partition map, it should have
40 /* The magic number to identify this as a partition, it should have
47 /* The size of the partition map in blocks. */
50 /* The first physical block of the partition. */
56 /* The partition name. */
59 /* The partition type. */
62 /* The first datablock of the partition. */
68 /* The status of the partition
103 apple_partition_map_iterate(grub_disk_t disk, int (*hook) (grub_disk_t disk, const grub_partition_t partition)) argument
[all...]
H A Dsun.c1 /* sun.c - Read SUN style partition tables. */
21 #include <grub/partition.h>
91 const grub_partition_t partition))
109 return grub_error (GRUB_ERR_BAD_PART_TABLE, "not a sun partition table");
114 /* Maybe another error value would be better, because partition
89 sun_partition_map_iterate(grub_disk_t disk, int (*hook) (grub_disk_t disk, const grub_partition_t partition)) argument
/osnet-11/usr/src/grub/grub2/include/grub/
H A Dfs.h30 #include <grub/partition.h>
H A Ddisk.h119 /* The partition information. This is machine-specific. */
120 struct grub_partition *partition; member in struct:grub_disk
/osnet-11/usr/src/grub/grub2/include/grub/i386/
H A Dnetbsd_bootinfo.h85 grub_uint32_t partition; member in struct:grub_netbsd_btinfo_bootdisk
/osnet-11/usr/src/grub/grub2/grub-core/kern/ieee1275/
H A Dopenfw.c366 IEEE1275 bindings: "[partition][,[filename]]". */
401 OpenBOOT traditionally uses alphabetical partition
442 char *partition = grub_ieee1275_parse_args (path, GRUB_PARSE_PARTITION); local
445 if (partition && partition[0])
447 unsigned int partno = grub_strtoul (partition, 0, 0);
450 /* GRUB partition 1 is OF partition 0. */
458 grub_free (partition);
/osnet-11/usr/src/lib/libuefi_rt/common/
H A Dlibuefi_rt_path.c364 dm_descriptor_t *partition, *drive, *media; local
447 partition = dm_get_associated_descriptors(media[0],
452 "problem getting partition descr"
453 " partition=%p err=%d drive[%d]=%"PRIx64"\n",
454 (void *)partition, err, di, drive[di]);
461 if ((partition == NULL) || (partition[0] == NULL)) {
463 "NULL partition descriptor: partition = %p\n",
464 (void *)partition);
603 dm_descriptor_t *partition, *drive, *media; local
2042 get_mbr_sig(dm_descriptor_t partition, uint32_t *mbrsig) argument
2092 dm_descriptor_t partition; local
3608 uefirt_var_boot_get_bootopt(uefirt_hdl_t hdl, char *partition, int **bootopt) argument
[all...]
/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Ddisk_io.c101 /* The register ESI should contain the address of the partition to be
120 /* these are the translated numbers for the open partition */
310 * Check partition boundaries
320 * Get the read to the beginning of a partition.
385 embed a Stage 1.5 into a partition instead of a MBR, use system
451 /* Turn on the active flag for the partition SAVED_PARTITION in the
464 /* If the partition is not a primary partition, the active flag is
476 /* If the partition is an extended partition, settin
588 next_partition(unsigned long drive, unsigned long dest, unsigned long *partition, int *type, unsigned long *start, unsigned long *len, unsigned long *offset, int *entry, unsigned long *ext_offset, char *buf) argument
1023 int partition = dev & 0xFFFFFF; local
[all...]
/osnet-11/usr/src/grub/grub2/util/
H A Dgrub-setup.c29 #include <grub/partition.h>
69 * of a partition.
275 grub_partition_t container = dest_dev->disk->partition;
283 /* Unlike root_dev, with dest_dev we're interested in the partition map even
292 /* NetBSD and OpenBSD subpartitions have metadata inside a partition,
317 if (dest_dev->disk->partition &&
318 strcmp(dest_dev->disk->partition->partmap->name, "sunpc") == 0)
320 if (dest_dev->disk->partition->parent &&
321 strcmp(dest_dev->disk->partition->parent->partmap->name, "msdos") == 0)
323 dest_partmap = dest_dev->disk->partition
[all...]
H A Dgrub-probe.c29 #include <grub/partition.h>
80 if (disk->partition == NULL)
82 grub_util_info ("no partition map found for %s", disk->name);
85 for (part = disk->partition; part; part = part->parent)
263 if (dev->disk->partition)
265 char *pname = grub_partition_get_name (dev->disk->partition);
628 print filesystem module, GRUB drive, system device, partition map module, abstraction module or CRYPTO UUID [default=fs]\n\
/osnet-11/usr/src/lib/libadutils/common/
H A Dadutils_impl.h65 /* A set of DSs for a given AD partition */
72 adutils_ad_partition_t partition; /* Data or global catalog? */ member in struct:adutils_ad
/osnet-11/usr/src/lib/pybootmgmt/i386/
H A Dbootmgmt-helper-chain.ksh35 # every non-understood partition type that is potentially bootable a
37 # partition type as well as the GRUB device name to give an educated user
55 # process a FAT partition
65 # process an IFS partition
82 # process a Solaris partition - this only deals with DCA based Solaris
118 # process a Solaris x86-boot partition
133 mount -o ro -F pcfs ${dev}p$partition $tmp 2> /dev/null
165 # process a diag (usually DOS based) partition
174 # generate a comment for an unsupported partition
179 partition
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/loader/i386/
H A Dmultiboot_mbi.c33 #include <grub/partition.h>
754 if (dev && dev->disk && dev->disk->partition)
756 if (dev->disk->partition->parent)
758 part = dev->disk->partition->number;
759 slice = dev->disk->partition->parent->number;
762 slice = dev->disk->partition->number;
/osnet-11/usr/src/grub/grub2/grub-core/disk/
H A Dgeli.c56 #include <grub/partition.h>
425 if (source->partition)
426 tmp = grub_partition_get_name (source->partition);
428 source->partition ? "," : "", tmp ? : "",
H A Dluks.c27 #include <grub/partition.h>
333 if (source->partition)
334 tmp = grub_partition_get_name (source->partition);
336 source->partition ? "," : "", tmp ? : "",
/osnet-11/usr/src/grub/grub2/grub-core/kern/emu/
H A Dmain.c42 #include <grub/partition.h>
/osnet-11/usr/src/grub/grub2/grub-core/loader/i386/pc/
H A Dfreedos.c27 #include <grub/partition.h>
H A Dntldr.c27 #include <grub/partition.h>
/osnet-11/usr/src/lib/libdiskmgt/common/
H A Dpartition.c44 #include "partition.h"
96 * we just get the active solaris partition.
133 * If this is a slice desc. we need the first active solaris partition
134 * and if there isn't one then we need the first solaris partition.
158 /* we found a solaris partition to use */
195 * format so that it refers to the fdisk partition
198 * physical disk partition.
255 * Look for the partition by the partition number (which is not too useful).
262 descriptor_t *partition local
[all...]

Completed in 79 milliseconds

1234