Lines Matching refs:path
314 char path[200]; in bootmeth_try_file() local
318 snprintf(path, sizeof(path), "%s%s", prefix ? prefix : "", fname); in bootmeth_try_file()
319 log_debug("trying: %s\n", path); in bootmeth_try_file()
322 bflow->fname = strdup(path); in bootmeth_try_file()
329 ret = fs_size(path, &size); in bootmeth_try_file()
330 log_debug(" %s - err=%d\n", path, ret); in bootmeth_try_file()
380 char path[200]; in bootmeth_alloc_other() local
385 snprintf(path, sizeof(path), "%s%s", bflow->subdir, fname); in bootmeth_alloc_other()
386 log_debug("trying: %s\n", path); in bootmeth_alloc_other()
395 ret = fs_size(path, &size); in bootmeth_alloc_other()
396 log_debug(" %s - err=%d\n", path, ret); in bootmeth_alloc_other()
402 ret = fs_read_alloc(path, size, 0, &buf); in bootmeth_alloc_other()