Home | History | Annotate | Download | only in gpt

Lines Matching defs:mbr_dict

77 	prop_dictionary_t mbr_dict;
83 mbr_dict = prop_dictionary_create();
84 PROP_ERR(mbr_dict);
86 PROP_ERR(prop_dictionary_set_int(mbr_dict, "index", (int)i));
87 PROP_ERR(prop_dictionary_set_uint(mbr_dict, "flag", par->part_flag));
88 PROP_ERR(prop_dictionary_set_uint(mbr_dict, "start_head",
90 PROP_ERR(prop_dictionary_set_uint(mbr_dict, "start_sector",
92 PROP_ERR(prop_dictionary_set_uint(mbr_dict, "start_cylinder",
94 PROP_ERR(prop_dictionary_set_uint(mbr_dict, "type", par->part_typ));
95 PROP_ERR(prop_dictionary_set_uint(mbr_dict, "end_head", par->part_ehd));
96 PROP_ERR(prop_dictionary_set_uint(mbr_dict, "end_sector",
98 PROP_ERR(prop_dictionary_set_uint(mbr_dict, "end_cylinder",
100 PROP_ERR(prop_dictionary_set_uint(mbr_dict, "lba_start_low",
102 PROP_ERR(prop_dictionary_set_uint(mbr_dict, "lba_start_high",
104 PROP_ERR(prop_dictionary_set_uint(mbr_dict, "lba_size_low",
106 PROP_ERR(prop_dictionary_set_uint(mbr_dict, "lba_size_high",
113 PROP_ERR(prop_array_add_and_rel(*mbr_array, mbr_dict));
116 if (mbr_dict)
117 prop_object_release(mbr_dict);