Lines Matching refs:modechecks
111 def checkmodes(self, modechecks): argument
125 if "s" in modechecks and t == "file":
131 if "o" in modechecks and o != "root" and ((m & stat.S_ISUID) == 0):
147 if "w" in modechecks and t == "file" and o != "root":
153 if ("m" in modechecks and
579 def addmanifest(self, root, mfile, arch, modechecks, exceptions): argument
658 if modechecks is not None and path not in exceptions:
659 modewarnings.update(self[path].checkmodes(modechecks))
667 def adddir(self, mdir, arch, modechecks, exceptions): argument
674 self.addmanifest(mdir, mfile, arch, modechecks, exceptions)
792 modechecks = set()
812 modechecks.update(DEFAULTMODECHECKS)
824 if listonly or len(modechecks) > 0:
827 if listonly and len(modechecks) > 0:
832 if len(togglemodechecks) > 0 and len(modechecks) == 0:
838 modechecks.symmetric_difference_update((s))
840 if len(modechecks) == 0:
841 modechecks = None
851 manifesttree.adddir(mdir, arch, modechecks, exceptions)
857 if modechecks is not None: