Home | History | Annotate | Download | only in libdwfl

Lines Matching defs:check

86 validate (Dwfl_Module *mod, int fd, bool check, GElf_Word debuglink_crc)
88 /* For alt debug files always check the build-id from the Dwarf and alt. */
99 /* We need to open an Elf handle on the file so we can check its
127 /* If we have a build ID, check only that. */
130 /* We need to open an Elf handle on the file so we can check its
154 return !check || check_crc (fd, debuglink_crc);
198 /* A leading - or + in the whole path sets whether to check file CRCs. */
228 /* A leading - or + says whether to check file CRCs for this element. */
229 bool check = defcheck;
231 check = *p++ == '+';
232 check = check && cancheck;
310 if (validate (mod, fd, check, debuglink_crc))