Searched refs:stat_result (Results 1 - 9 of 9) sorted by relevance
/third_party/rust/crates/nix/test/ |
H A D | test_stat.rs | 57 fn assert_stat_results(stat_result: Result<FileStat>) { in assert_stat_results() 58 let stats = stat_result.expect("stat call failed"); in assert_stat_results() 72 fn assert_lstat_results(stat_result: Result<FileStat>) { in assert_lstat_results() 73 let stats = stat_result.expect("stat call failed"); in assert_lstat_results() 103 let stat_result = stat(&filename); in test_stat_and_fstat() 104 assert_stat_results(stat_result); in test_stat_and_fstat() 139 let stat_result = stat(&filename); in test_stat_fstat_lstat() 140 assert_stat_results(stat_result); in test_stat_fstat_lstat()
|
/third_party/python/Lib/test/ |
H A D | test_structseq.py | 40 self.assertTrue(rep.startswith("os.stat_result")) 133 self.assertEqual(os.stat_result.n_unnamed_fields, 3) 134 self.assertEqual(os.stat_result.__match_args__, expected_args)
|
H A D | test_posixpath.py | 218 return posix.stat_result((0, st_ino, st_dev, 0, 0, 0, 0, 0, 0, 0)) 240 return posix.stat_result((0, st_ino, st_dev, 0, 0, 0, 0, 0, 0, 0))
|
H A D | test_os.py | 583 # Use the stat_result constructor with a too-short tuple. 585 result2 = os.stat_result((10,)) 592 result2 = os.stat_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14)) 610 self.assertIn(b'stat_result', p)
|
/third_party/node/deps/v8/src/d8/ |
H A D | d8-posix.cc | 524 int stat_result = stat(directory, &stat_buf); in CheckItsADirectory() local 525 if (stat_result != 0) { in CheckItsADirectory()
|
/third_party/python/Tools/c-analyzer/c_common/ |
H A D | fsutil.py | 353 elif isinstance(file, os.stat_result):
|
/third_party/lz4/programs/ |
H A D | lz4io.c | 1319 int stat_result = 0; in LZ4IO_decompressDstFile() local 1325 stat_result = 1; in LZ4IO_decompressDstFile() 1333 if ( stat_result != 0 in LZ4IO_decompressDstFile()
|
/third_party/libabigail/src/ |
H A D | abg-tools-utils.cc | 768 int stat_result = 0; in ensure_dir_path_created() local 770 stat_result = stat(dir_path.c_str(), &st); in ensure_dir_path_created() 771 if (stat_result == 0) in ensure_dir_path_created()
|
/third_party/python/Lib/ |
H A D | shutil.py | 566 if hasattr(os.stat_result, 'st_file_attributes'):
|
Completed in 19 milliseconds