Home
last modified time | relevance | path

Searched refs:modified_file (Results 1 – 2 of 2) sorted by relevance

/external/AFLplusplus/src/
Dafl-as.c60 static u8 *modified_file; /* Instrumented file for the real 'as' */ variable
204 modified_file = input_file; in edit_params()
241 modified_file = alloc_printf("%s/.afl-%u-%u-%u.s", tmp_dir, (u32)getpid(), in edit_params()
246 as_params[as_par_cnt++] = modified_file; in edit_params()
283 outfd = open(modified_file, O_WRONLY | O_EXCL | O_CREAT, DEFAULT_PERMISSION);
285 if (outfd < 0) { PFATAL("Unable to write to '%s'", modified_file); }
652 if (!getenv("AFL_KEEP_ASSEMBLY")) { unlink(modified_file); }
/external/python/cpython3/Lib/test/
Dtest_linecache.py247 self.modified_file = os_helper.TESTFN + '.2'
251 self.modified_file,
262 with open(self.modified_file, 'w', encoding='utf-8') as source:
268 self.assertIn(self.modified_file, linecache.cache)
272 linecache.checkcache(self.modified_file)
274 self.assertNotIn(self.modified_file, linecache.cache)
280 self.assertNotIn(self.modified_file, linecache.cache)