Lines Matching refs:spec
202 static int open_fip(const uintptr_t spec);
203 static int open_memmap(const uintptr_t spec);
205 static int open_enc_fip(const uintptr_t spec);
211 int (*check)(const uintptr_t spec);
410 static int open_fip(const uintptr_t spec) in open_fip() argument
417 if (result == 0 && spec != (uintptr_t)NULL) { in open_fip()
418 result = io_open(fip_dev_handle, spec, &local_image_handle); in open_fip()
428 static int open_enc_fip(const uintptr_t spec) in open_enc_fip() argument
436 result = io_open(enc_dev_handle, spec, &local_image_handle); in open_enc_fip()
446 static int open_memmap(const uintptr_t spec) in open_memmap() argument
453 result = io_open(memmap_dev_handle, spec, &local_image_handle); in open_memmap()
462 static int open_semihosting(const uintptr_t spec) in open_semihosting() argument
470 result = io_open(sh_dev_handle, spec, &local_image_handle); in open_semihosting()
522 const io_file_spec_t *spec = get_io_file_spec(image_id); in get_alt_image_source() local
525 result = open_semihosting((const uintptr_t)spec); in get_alt_image_source()
528 *image_spec = (uintptr_t)spec; in get_alt_image_source()