Home
last modified time | relevance | path

Searched refs:sfile (Results 1 – 5 of 5) sorted by relevance

/third_party/ltp/testcases/kernel/syscalls/madvise/
Dmadvise01.c31 static char *sfile; variable
40 {MADV_NORMAL, "MADV_NORMAL", &sfile},
41 {MADV_RANDOM, "MADV_RANDOM", &sfile},
42 {MADV_SEQUENTIAL, "MADV_SEQUENTIAL", &sfile},
43 {MADV_WILLNEED, "MADV_WILLNEED", &sfile},
44 {MADV_DONTNEED, "MADV_DONTNEED", &sfile},
45 {MADV_REMOVE, "MADV_REMOVE", &sfile}, /* since Linux 2.6.16 */
46 {MADV_DONTFORK, "MADV_DONTFORK", &sfile}, /* since Linux 2.6.16 */
47 {MADV_DOFORK, "MADV_DOFORK", &sfile}, /* since Linux 2.6.16 */
48 {MADV_HWPOISON, "MADV_HWPOISON", &sfile}, /* since Linux 2.6.32 */
[all …]
/third_party/python/Lib/test/test_tools/
Dtest_i18n.py302 with open(os.path.join(sdir, 'pypkg', 'pymod.py'), 'w') as sfile:
303 sfile.write(f'_({text1!r})')
305 with open(os.path.join(sdir, 'pkg.py', 'pymod2.py'), 'w') as sfile:
306 sfile.write(f'_({text2!r})')
308 with open(os.path.join(sdir, 'CVS', 'pymod3.py'), 'w') as sfile:
309 sfile.write(f'_({text3!r})')
/third_party/ltp/testcases/kernel/fs/linktest/
Dlinktest.sh67 touch hlink.$$/hfile slink.$$/sfile
/third_party/python/Lib/
Dconfigparser.py723 sfile = io.StringIO(string)
724 self.read_file(sfile, source)
/third_party/python/Lib/test/
Dtest_argparse.py3259 sfile = StdIOBuffer()
3260 print_(sfile)
3261 parser_text = sfile.getvalue()