Lines Matching refs:bit
20 or an ELF header. If this does not match the executable bit on the file, the
39 # Files with these extensions must have executable bit set.
49 # These files must have executable bit set.
61 # These files must not have the executable bit set. This is mainly a performance
138 # These files must not have executable bit set.
245 """The file name represents a file type that must have the executable bit
254 bit set.
261 """Returns if any executable bit is set."""
283 must_not_be_executable(), only its executable bit is checked.
285 shebang or ELF header and compares this with the executable bit on the file.
295 bit = has_executable_bit(full_path)
303 if not bit:
304 return result_dict('Must have executable bit set')
307 if bit:
308 return result_dict('Must not have executable bit set')
313 if bit != (shebang or elf):
314 if bit:
315 return result_dict('Has executable bit but not shebang or ELF header')
317 return result_dict('Has shebang but not executable bit')
318 return result_dict('Has ELF header but not executable bit')