Lines Matching refs:spec
211 static int open_fip(const uintptr_t spec);
212 static int open_memmap(const uintptr_t spec);
214 static int open_enc_fip(const uintptr_t spec);
220 int (*check)(const uintptr_t spec);
425 static int open_fip(const uintptr_t spec) in open_fip() argument
432 if (result == 0 && spec != (uintptr_t)NULL) { in open_fip()
433 result = io_open(fip_dev_handle, spec, &local_image_handle); in open_fip()
443 static int open_enc_fip(const uintptr_t spec) in open_enc_fip() argument
451 result = io_open(enc_dev_handle, spec, &local_image_handle); in open_enc_fip()
461 static int open_memmap(const uintptr_t spec) in open_memmap() argument
468 result = io_open(memmap_dev_handle, spec, &local_image_handle); in open_memmap()
477 static int open_semihosting(const uintptr_t spec) in open_semihosting() argument
485 result = io_open(sh_dev_handle, spec, &local_image_handle); in open_semihosting()
537 const io_file_spec_t *spec = get_io_file_spec(image_id); in get_alt_image_source() local
540 result = open_semihosting((const uintptr_t)spec); in get_alt_image_source()
543 *image_spec = (uintptr_t)spec; in get_alt_image_source()