Searched refs:find_by_type_and_name (Results 1 - 2 of 2) sorted by relevance

/fuchsia/zircon/system/ulib/chromeos-disk-setup/
H A Dchromeos-disk-setup.c77 // find_by_type_and_name finds the first partition matching the given type guid and name.
78 static gpt_partition_t* find_by_type_and_name(const gpt_device_t* gpt, const uint8_t type_guid[GPT_GUID_LEN], const char *name) { function
265 if ((p = find_by_type_and_name(gpt, kern_guid, "ZIRCON-A")) != NULL) {
268 if ((p = find_by_type_and_name(gpt, kern_guid, "ZIRCON-B")) != NULL) {
271 if ((p = find_by_type_and_name(gpt, kern_guid, "ZIRCON-R")) != NULL) {
277 if ((p = find_by_type_and_name(gpt, syscfg_guid, "SYSCFG")) != NULL) {
297 if ((p = find_by_type_and_name(gpt, kern_guid, "KERN-C")) != NULL) {
300 if ((p = find_by_type_and_name(gpt, root_guid, "ROOT-C")) != NULL) {
308 if (!found_hole && (p = find_by_type_and_name(gpt, state_guid, "STATE")) != NULL) {
/fuchsia/zircon/system/utest/chromeos-disk-setup/
H A Dchromeos-disk-setup.cpp150 gpt_partition_t* find_by_type_and_name(const gpt_device_t* gpt, function in namespace:__anon1298
326 part = find_by_type_and_name(gpt, kFvmGUID, "fvm");
330 part = find_by_type_and_name(gpt, kCrosKernGUID, "ZIRCON-A");
334 part = find_by_type_and_name(gpt, kCrosKernGUID, "ZIRCON-B");
338 part = find_by_type_and_name(gpt, kCrosKernGUID, "ZIRCON-R");
342 part = find_by_type_and_name(gpt, kCrosKernGUID, "SYSCFG");

Completed in 25 milliseconds