Lines Matching defs:path
71 /* Initialize symbol maps and path of vmlinux/modules */
98 pr_warning("Failed to init vmlinux path.\n");
156 /* A file path -- this is an offline module */
265 * @module can be module name of module file path. In case of path,
472 char *path;
480 0, &path);
490 pr_debug("Load debuginfo from debuginfod (%s)\n", path);
493 ret = debuginfo__new((const char *)path);
511 const char *path = module;
532 pr_err("Module %s is not loaded, please specify its full path name.\n", module);
534 pr_err("Failed to find the path for the kernel: %s\n", reason);
538 path = dso->long_name;
541 ret = debuginfo__new(path);
543 pr_warning("The %s file has no debug information.\n", path);
544 if (!module || !strtailcmp(path, ".ko"))
560 const char *path = module;
564 path = "kernel";
566 if (debuginfo_cache_path && !strcmp(debuginfo_cache_path, path))
569 /* Copy module path */
571 debuginfo_cache_path = strdup(path);
943 /* Error path : ntevs < 0 */
1044 /* Convert source file path */
1045 tmp = lr->path;
1046 ret = find_source_path(tmp, sbuild_id, lr->comp_dir, &lr->path);
1048 /* Free old path when new path is assigned */
1049 if (tmp != lr->path)
1053 pr_warning("Failed to find source file path.\n");
1060 fprintf(stdout, "<%s@%s:%d>\n", lr->function, lr->path,
1063 fprintf(stdout, "<%s:%d>\n", lr->path, lr->start);
1065 fp = fopen(lr->path, "r");
1067 pr_warning("Failed to open %s: %s\n", lr->path,
1259 zfree(&lr->path);