Home
last modified time | relevance | path

Searched refs:test_stat (Results 1 – 14 of 14) sorted by relevance

/external/mksh/src/
Dfuncs.c2758 #define test_stat(name,buffer) stat_ex(stat, (name), (buffer)) macro
2762 #define test_stat(name,buffer) stat((name), (buffer)) macro
2872 return (test_stat(opnd1, &b1) == 0); in test_eval()
2876 return (test_stat(opnd1, &b1) == 0 && S_ISREG(b1.st_mode)); in test_eval()
2880 return (test_stat(opnd1, &b1) == 0 && S_ISDIR(b1.st_mode)); in test_eval()
2884 return (test_stat(opnd1, &b1) == 0 && S_ISCHR(b1.st_mode)); in test_eval()
2888 return (test_stat(opnd1, &b1) == 0 && S_ISBLK(b1.st_mode)); in test_eval()
2892 return (test_stat(opnd1, &b1) == 0 && S_ISFIFO(b1.st_mode)); in test_eval()
2904 return (test_stat(opnd1, &b1) == 0 && S_ISSOCK(b1.st_mode)); in test_eval()
2923 i = (test_stat(nv, &b1) == 0 && S_ISCDF(b1.st_mode)); in test_eval()
[all …]
/external/rust/android-crates-io/crates/nix/test/sys/
Dmod.rs32 mod test_stat; module
/external/cronet/stable/third_party/apache-portable-runtime/src/test/
Dtestfileinfo.c131 static void test_stat(abts_case *tc, void *data) in test_stat() function
256 abts_run_test(suite, test_stat, NULL); in testfileinfo()
Dtestlfs.c129 static void test_stat(abts_case *tc, void *data) in test_stat() function
357 abts_run_test(suite, test_stat, NULL); in testlfs()
/external/cronet/tot/third_party/apache-portable-runtime/src/test/
Dtestfileinfo.c131 static void test_stat(abts_case *tc, void *data) in test_stat() function
256 abts_run_test(suite, test_stat, NULL); in testfileinfo()
Dtestlfs.c129 static void test_stat(abts_case *tc, void *data) in test_stat() function
357 abts_run_test(suite, test_stat, NULL); in testlfs()
/external/rust/android-crates-io/crates/nix/test/
Dtest.rs36 mod test_stat; module
/external/compiler-rt/test/dfsan/
Dcustom.cc48 void test_stat() { in test_stat() function
944 test_stat(); in main()
/external/python/cpython3/Lib/test/
Dtest_poplib.py289 def test_stat(self): member in TestPOP3Class
Dtest_posix.py643 def test_stat(self): member in PosixTester
2155 def test_stat(self): member in TestPosixWeaklinking
Dtest_os.py2629 def test_stat(self): member in Pep383Tests
/external/python/pyfakefs/pyfakefs/tests/
Dfake_pathlib_test.py535 def test_stat(self): member in FakePathlibFileObjectPropertyTest
1309 def test_stat(self): member in FakePathlibUsageInOsFunctionsTest
Dfake_os_test.py282 def test_stat(self): member in FakeOsModuleTest
3184 def test_stat(self): member in FakeOsModuleTestCaseInsensitiveFS
5027 def test_stat(self): member in FakeOsModuleDirFdTest
/external/python/cpython3/Lib/test/test_pathlib/
Dtest_pathlib_abc.py2103 def test_stat(self): member in DummyPathTest