Lines Matching defs:search_dtype

1584 	struct disk_type	*search_dtype, *efi_disk;
1965 search_dtype = (struct disk_type *)
1970 search_dtype;
1975 type->dtype_next = search_dtype;
1977 search_dtype->dtype_next = NULL;
1979 search_dtype->vendor = strdup(efi_info.vendor);
1980 search_dtype->product = strdup(efi_info.product);
1981 search_dtype->revision = strdup(efi_info.revision);
1983 if (search_dtype->vendor == NULL ||
1984 search_dtype->product == NULL ||
1985 search_dtype->revision == NULL) {
1986 free(search_dtype->vendor);
1987 free(search_dtype->product);
1988 free(search_dtype->revision);
1989 free(search_dtype);
1993 search_dtype->capacity = efi_info.capacity;
1994 search_disk->disk_type = search_dtype;
1998 search_dtype->dtype_plist = search_parts;
2035 for (search_dtype = search_ctlr->ctlr_ctype->ctype_dlist;
2036 search_dtype != NULL;
2037 search_dtype = search_dtype->dtype_next)
2038 if (dtype_match(&search_label, search_dtype))
2044 if (search_dtype == NULL) {
2049 search_dtype = (struct disk_type *)
2054 search_dtype;
2058 type->dtype_next = search_dtype;
2063 search_dtype->dtype_next = NULL;
2068 search_dtype->dtype_asciilabel = (char *)
2070 (void) strcpy(search_dtype->dtype_asciilabel,
2073 search_dtype->dtype_asciilabel = (char *)
2075 (void) strcpy(search_dtype->dtype_asciilabel,
2078 search_dtype->dtype_pcyl = search_label.dkl_pcyl;
2079 search_dtype->dtype_ncyl = search_label.dkl_ncyl;
2080 search_dtype->dtype_acyl = search_label.dkl_acyl;
2081 search_dtype->dtype_nhead = search_label.dkl_nhead;
2082 search_dtype->dtype_nsect = search_label.dkl_nsect;
2083 search_dtype->dtype_rpm = search_label.dkl_rpm;
2098 search_dtype->dtype_flags |= DT_NEED_SPEFS;
2105 search_disk->disk_type = search_dtype;
2116 for (search_parts = search_dtype->dtype_plist;
2133 parts = search_dtype->dtype_plist;
2135 search_dtype->dtype_plist = search_parts;