Lines Matching defs: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)
417 if (result == 0 && spec != (uintptr_t)NULL) {
418 result = io_open(fip_dev_handle, spec, &local_image_handle);
428 static int open_enc_fip(const uintptr_t spec)
436 result = io_open(enc_dev_handle, spec, &local_image_handle);
446 static int open_memmap(const uintptr_t spec)
453 result = io_open(memmap_dev_handle, spec, &local_image_handle);
462 static int open_semihosting(const uintptr_t spec)
470 result = io_open(sh_dev_handle, spec, &local_image_handle);
522 const io_file_spec_t *spec = get_io_file_spec(image_id);
525 result = open_semihosting((const uintptr_t)spec);
528 *image_spec = (uintptr_t)spec;