Searched refs:sfile (Results 1 – 5 of 5) sorted by relevance
/third_party/ltp/testcases/kernel/syscalls/madvise/ |
D | madvise01.c | 31 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/ |
D | test_i18n.py | 302 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/ |
D | linktest.sh | 67 touch hlink.$$/hfile slink.$$/sfile
|
/third_party/python/Lib/ |
D | configparser.py | 723 sfile = io.StringIO(string) 724 self.read_file(sfile, source)
|
/third_party/python/Lib/test/ |
D | test_argparse.py | 3259 sfile = StdIOBuffer() 3260 print_(sfile) 3261 parser_text = sfile.getvalue()
|