HomeSort by relevance Sort by last modified time
    Searched defs:disk_type (Results 1 - 7 of 7) sorted by null

  /onnv/onnv-gate/usr/src/cmd/format/
add_definition.c 30 * This file contains the code to add new disk_type and partition
184 * Add a disk_type definition to the file fd
192 struct disk_type *disk_type; local
194 disk_type = disk_info->disk_type;
196 (void) fprintf(fd, "disk_type = \"%s\" \\\n",
197 disk_type->dtype_asciilabel);
201 col = add_entry(col, fd, " : ncyl = %d", disk_type->dtype_ncyl);
203 col = add_entry(col, fd, " : acyl = %d", disk_type->dtype_acyl)
311 struct disk_type *disk_type; local
    [all...]
hardware_structs.h 52 struct disk_type *disk_type; /* ptr to physical info */ member in struct:disk_info
77 struct disk_type { struct
106 struct disk_type *dtype_next; /* ptr to next drive type */
156 struct disk_type *ctype_dlist; /* list of disk types */
menu_command.c 352 struct disk_type *type, *tptr, *oldtype;
355 struct disk_type disk_type; local
356 struct disk_type *d = &disk_type;
373 oldtype = cur_disk->disk_type;
478 if (delete_disk_type(cur_disk->disk_type) != 0) {
482 cur_disk->disk_type = tptr;
513 bzero((char *)d, sizeof (struct disk_type));
549 tptr = (struct disk_type *)zalloc(sizeof (struct disk_type))
    [all...]
auto_sense.c 176 static struct disk_type *generic_disk_sense(
188 struct disk_type *disk_type,
192 static struct disk_type *find_scsi_disk_type(
195 static struct disk_type *find_scsi_disk_by_name(
200 static struct disk_type *new_scsi_disk_type(
207 static struct disk_type *new_direct_disk_type(int fd, char *disk_name,
248 struct disk_type *
255 struct disk_type *disk, *dp;
265 return ((struct disk_type *)NULL)
797 struct disk_type *disk_type; local
826 struct disk_type *disk_type; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libparted/common/libparted/
disk.c 65 ped_disk_type_register (PedDiskType* disk_type)
67 PED_ASSERT (disk_type != NULL, return);
68 PED_ASSERT (disk_type->ops != NULL, return);
69 PED_ASSERT (disk_type->name != NULL, return);
72 ((struct _PedDiskType*) disk_type)->next = disk_types;
73 disk_types = (struct _PedDiskType*) disk_type;
77 ped_disk_type_unregister (PedDiskType* disk_type)
83 PED_ASSERT (disk_type != NULL, return);
85 for (walk = disk_types; walk && walk != disk_type;
90 ((struct _PedDiskType*) last)->next = disk_type->next
706 const PedDiskType* disk_type; local
722 const PedDiskType* disk_type; local
1220 const PedDiskType* disk_type; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/parted/
parted.c 1969 PedDiskType* disk_type; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libparted/common/libparted/labels/
dos.c 185 PedDiskType* disk_type; local
231 disk_type = ped_disk_type_get ("pc98");
232 if (disk_type && disk_type->ops->probe (dev))
    [all...]

Completed in 1320 milliseconds