Lines Matching refs:file
21 static struct objtool_file file; variable
25 if (file.elf) { in objtool_open_read()
30 file.elf = elf_open_read(filename, O_RDWR); in objtool_open_read()
31 if (!file.elf) in objtool_open_read()
34 hash_init(file.insn_hash); in objtool_open_read()
35 INIT_LIST_HEAD(&file.retpoline_call_list); in objtool_open_read()
36 INIT_LIST_HEAD(&file.return_thunk_list); in objtool_open_read()
37 INIT_LIST_HEAD(&file.static_call_list); in objtool_open_read()
38 INIT_LIST_HEAD(&file.mcount_loc_list); in objtool_open_read()
39 INIT_LIST_HEAD(&file.endbr_list); in objtool_open_read()
40 INIT_LIST_HEAD(&file.call_list); in objtool_open_read()
41 file.ignore_unreachables = opts.no_unreachable; in objtool_open_read()
42 file.hints = false; in objtool_open_read()
44 return &file; in objtool_open_read()