Home | History | Annotate | Download | only in toolchain-utils

Lines Matching refs:tmp_dir

58 def VerifyArgs(compiler, filename, tmp_dir, root_dir, options, parser):
81 if not os.path.exists(tmp_dir):
82 os.makedirs(tmp_dir)
85 def CheckFile(filename, compiler, tmp_dir, options, cmd_executer):
98 dwarf_file = os.path.join(tmp_dir, tmp_name)
148 '--tmp_dir',
149 dest='tmp_dir',
179 tmp_dir = '/tmp'
180 if options.tmp_dir:
181 tmp_dir = os.path.realpath(os.path.expanduser(options.tmp_dir))
186 VerifyArgs(compiler, filename, tmp_dir, root_dir, options, parser)
198 result = CheckFile(f, compiler, tmp_dir, options, cmd_executer)