/third_party/musl/libc-test/src/functionalext/supplement/legacy/ |
H A D | lutimes.c | 17 #include <sys/stat.h> 34 struct stat s; in lutimes_0100() 76 struct stat s; in lutimes_time64_0100()
|
H A D | futimes.c | 17 #include <sys/stat.h> 35 struct stat s; in futimes_0100() 83 struct stat s; in futimes_time64_0100()
|
/third_party/musl/libc-test/src/functionalext/supplement/mman/ |
H A D | mincore.c | 19 #include <sys/stat.h> 33 struct stat st; in mincore_0100() 37 int ret = stat(pathname, &st); in mincore_0100()
|
/third_party/musl/libc-test/src/functionalext/supplement/stat/stat_gtest/ |
H A D | stat_fstatat_test.cpp | 3 #include <sys/stat.h> 24 struct stat st; in HWTEST_F() 46 struct stat st; in HWTEST_F()
|
/third_party/weex-loader/ |
H A D | module-source.js | 34 stat = fs.stat; 45 stat(_src, function(err, st) {
|
/third_party/mesa3d/src/freedreno/vulkan/ |
H A D | tu_pipeline.c | 4340 vk_outarray_append_typed(VkPipelineExecutableStatisticKHR, &out, stat) { in tu_GetPipelineExecutableStatisticsKHR() 4341 WRITE_STR(stat->name, "Max Waves Per Core"); in tu_GetPipelineExecutableStatisticsKHR() 4342 WRITE_STR(stat->description, in tu_GetPipelineExecutableStatisticsKHR() 4344 stat->format = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR; in tu_GetPipelineExecutableStatisticsKHR() 4345 stat->value.u64 = exe->stats.max_waves; in tu_GetPipelineExecutableStatisticsKHR() 4348 vk_outarray_append_typed(VkPipelineExecutableStatisticKHR, &out, stat) { in tu_GetPipelineExecutableStatisticsKHR() 4349 WRITE_STR(stat->name, "Instruction Count"); in tu_GetPipelineExecutableStatisticsKHR() 4350 WRITE_STR(stat->description, in tu_GetPipelineExecutableStatisticsKHR() 4353 stat->format = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR; in tu_GetPipelineExecutableStatisticsKHR() 4354 stat in tu_GetPipelineExecutableStatisticsKHR() [all...] |
/third_party/python/Lib/test/ |
H A D | test_pathlib.py | 10 import stat namespace 1536 self.assertEqual(p.stat(), os.stat('.')) 1917 mode = p.stat().st_mode 1921 self.assertEqual(p.stat().st_mode, new_mode) 1925 self.assertEqual(p.stat().st_mode, new_mode) 1933 mode = q.stat().st_mode 1937 self.assertEqual(q.stat().st_mode, new_mode) 1941 self.assertEqual(q.stat().st_mode, new_mode) 1948 st = p.stat() [all...] |
H A D | test__osx_support.py | 7 import stat namespace 46 os.chmod(self.prog_name, stat.S_IRWXU) 58 os.chmod(self.prog_name, stat.S_IRWXU) 149 os.chmod(c_name, stat.S_IRWXU) 228 os.chmod(c_name, stat.S_IRWXU)
|
/third_party/f2fs-tools/tools/ |
H A D | fibmap.c | 29 #include <sys/stat.h> 68 void print_stat(struct stat *st) in print_stat() 94 static void stat_bdev(struct stat *st, unsigned int *start_lba) in stat_bdev() 97 struct stat bdev_stat; in stat_bdev() 145 struct stat st;
|
/third_party/ntfs-3g/libntfs-3g/ |
H A D | unix_io.c | 45 #include <sys/stat.h> 120 struct stat sbuf; in ntfs_device_unix_io_open() 127 if (stat(dev->d_name, &sbuf)) { in ntfs_device_unix_io_open() 357 static int ntfs_device_unix_io_stat(struct ntfs_device *dev, struct stat *buf) in ntfs_device_unix_io_stat() 390 .stat = ntfs_device_unix_io_stat,
|
/third_party/skia/src/ports/ |
H A D | SkOSFile_posix.cpp | 19 #include <sys/stat.h> 57 struct stat status; in sk_ino() 78 struct stat status; in sk_fdmmap() 185 struct stat s; in next() 193 if (0 == stat(str.c_str(), &s)) { in next()
|
/third_party/toybox/toys/other/ |
H A D | lsattr.c | 83 static int ext2_getflag(int fd, struct stat *sb, unsigned long *flag) in ext2_getflag() 96 struct stat sb; in print_file_attr() 98 if (!stat(path, &sb) && !S_ISREG(sb.st_mode) && !S_ISDIR(sb.st_mode)) { in print_file_attr() 173 struct stat sb; in lsattr_main() 175 if (lstat(*toys.optargs, &sb)) perror_msg("stat '%s'", *toys.optargs); in lsattr_main() 193 static inline int ext2_setflag(int fd, struct stat *sb, unsigned long flag) in ext2_setflag()
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_dir_util.py | 4 import stat namespace 68 stat.S_IMODE(os.stat(self.target).st_mode), 0o700 & ~umask) 71 stat.S_IMODE(os.stat(self.target2).st_mode), 0o555 & ~umask)
|
/third_party/curl/docs/examples/ |
H A D | ftpupload.c | 29 #include <sys/stat.h> 74 struct stat file_info; in main() 82 if(stat(LOCAL_FILE, &file_info)) { in main()
|
/third_party/NuttX/fs/driver/ |
H A D | fs_blockproxy.c | 26 #include <sys/stat.h> 71 struct stat statbuf; in unique_chardev() 110 ret = stat(devbuf, &statbuf); in unique_chardev()
|
/third_party/libsnd/tests/ |
H A D | stdio_test.c | 37 #include <sys/stat.h> 130 { struct stat buf ; in file_length() 132 if (stat (filename, &buf)) in file_length()
|
/third_party/json/tests/thirdparty/Fuzzer/ |
H A D | FuzzerIOPosix.cpp | 22 #include <sys/stat.h> 29 struct stat St; in IsFile() 30 if (stat(Path.c_str(), &St)) in IsFile()
|
/third_party/ltp/testcases/kernel/device-drivers/usb/user_usb/ |
H A D | user_tusb.c | 24 #include <sys/stat.h> 36 struct stat st; in tusbopen() 49 ("ERROR: Problem with Base dev directory. Error code from stat() is %d\n\n", in tusbopen() 68 rc = stat(DEVICE_NAME, &st); in tusbopen() 77 ("ERROR:Problem with tbase device node directory. Error code form stat() is %d\n\n", in tusbopen()
|
/third_party/ltp/testcases/kernel/device-drivers/dev_sim_framework/user_space/ |
H A D | user_tmod.c | 40 #include <sys/stat.h> 55 struct stat st; in tmodopen() 68 ("ERROR: Problem with Base dev directory. Error code from stat() is %d\n\n", in tmodopen() 87 rc = stat(DEVICE_NAME, &st); in tmodopen() 96 ("ERROR:Problem with tbase device node directory. Error code form stat() is %d\n\n", in tmodopen()
|
/third_party/musl/src/time/ |
H A D | __map_file.c | 5 #include <sys/stat.h> 14 struct stat st; in __map_file() 42 struct stat st; in __map_tzdata_file()
|
/third_party/ltp/testcases/kernel/pty/ |
H A D | pty07.c | 81 struct vt_stat stat; in setup() local 89 SAFE_IOCTL(fd, VT_GETSTATE, &stat); in setup() 90 vt_active = stat.v_active; in setup()
|
/third_party/ltp/testcases/kernel/syscalls/chown/ |
H A D | chown03.c | 31 static void check_owner(struct stat *s, uid_t exp_uid, gid_t exp_gid) in check_owner() 39 static void check_mode(struct stat *s, mode_t exp_mode) in check_mode() 58 struct stat stat_buf; in run()
|
/third_party/ltp/testcases/kernel/syscalls/fchownat/ |
H A D | fchownat02.c | 26 #include <sys/stat.h> 72 struct stat c_buf, l_buf; in setup() 115 struct stat c_buf, l_buf; in test_verify()
|
/third_party/ltp/testcases/kernel/syscalls/fstat/ |
H A D | fstat03.c | 12 * 2) Calls fstat() with an invalid address for stat structure 21 #include <sys/stat.h> 29 static struct stat stat_buf; 33 struct stat *stat_buf;
|
/third_party/node/deps/openssl/openssl/fuzz/ |
H A D | test-corpus.c | 20 #include <sys/stat.h> 39 struct stat st; in testfile() 44 if (stat(pathname, &st) < 0 || !S_ISREG(st.st_mode)) in testfile()
|