Lines Matching refs:fn
28 char *fn; member
84 zfree(&sf->fn); in free_srcfile()
89 static struct srcfile *find_srcfile(char *fn) in find_srcfile() argument
95 size_t hval = str_hash(fn) % SRC_HTAB_SZ; in find_srcfile()
98 if (!strcmp(fn, h->fn)) { in find_srcfile()
113 fd = open(fn, O_RDONLY); in find_srcfile()
115 pr_debug("cannot open source file %s\n", fn); in find_srcfile()
123 h->fn = strdup(fn); in find_srcfile()
124 if (!h->fn) in find_srcfile()
132 pr_debug("cannot mmap source file %s\n", fn); in find_srcfile()
149 zfree(&h->fn); in find_srcfile()
156 char *find_sourceline(char *fn, unsigned line, int *lenp) in find_sourceline() argument
159 struct srcfile *sf = find_srcfile(fn); in find_sourceline()