Lines Matching refs:fh
301 with io.open(f, encoding='utf-8', errors='replace') as fh:
302 ret |= Copyright.copyright(fh, output=output)
311 with io.open(f, mode='rb') as fh:
312 ret |= CStyle.cstyle(fh, output=output, picky=True,
323 with io.open(f, encoding='utf-8', errors='replace') as fh:
324 ret |= HdrChk.hdrchk(fh, lenient=True, output=output)
335 with io.open(f, mode='rb') as fh:
336 ret |= JStyle.jstyle(fh, output=output, picky=True)
352 with io.open(f, encoding='utf-8', errors='replace') as fh:
353 ret |= Keywords.keywords(fh, output=output)
364 with io.open(f, mode='rb') as fh:
365 ret |= ManLint.manlint(fh, output=output, picky=True)
366 ret |= SpellCheck.spellcheck(fh, output=output)
392 with io.open(f, encoding='utf-8', errors='replace') as fh:
393 ret |= Mapfile.mapfilechk(fh, output=output)
407 with io.open(x, mode='r', errors='ignore') as fh:
408 if re.match(r'^#.*\bk?sh\b', fh.readline()):
413 with io.open(f, mode='rb') as fh:
414 ret |= ShellLint.lint(fh, output=output)
425 with io.open(f, mode='rb') as fh:
426 ret |= PkgFmt.check(fh, output=output)
476 with io.open(f, encoding='utf-8', errors='replace') as fh:
477 ret |= WsCheck.wscheck(fh, output=output)