/third_party/vk-gl-cts/framework/common/ |
H A D | tcuLibDrm.cpp | 35 #include <sys/stat.h> 120 struct stat statBuf; in findDeviceNode() 122 int res = stat(devices[i]->nodes[j], &statBuf); in findDeviceNode()
|
/vendor/hisilicon/hispark_aries/hals/security/permission_lite/ |
H A D | hal_pms.c | 21 #include <sys/stat.h>
200 struct stat buf;
in HalIsValidPath() 201 stat(path, &buf);
in HalIsValidPath()
|
/vendor/hisilicon/hispark_taurus/hals/security/permission_lite/ |
H A D | hal_pms.c | 21 #include <sys/stat.h>
200 struct stat buf;
in HalIsValidPath() 201 stat(path, &buf);
in HalIsValidPath()
|
/vendor/hisilicon/hispark_taurus_linux/hals/security/permission_lite/ |
H A D | hal_pms.c | 21 #include <sys/stat.h>
200 struct stat buf;
in HalIsValidPath() 201 stat(path, &buf);
in HalIsValidPath()
|
/vendor/hisilicon/hispark_taurus_mini_system/hals/security/permission_lite/ |
H A D | hal_pms.c | 21 #include <sys/stat.h>
200 struct stat buf;
in HalIsValidPath() 201 stat(path, &buf);
in HalIsValidPath()
|
/vendor/ohemu/qemu_small_system_demo/hals/security/permission_lite/ |
H A D | hal_pms.c | 21 #include <sys/stat.h>
202 struct stat buf;
in HalIsValidPath() 203 stat(path, &buf);
in HalIsValidPath()
|
/third_party/mesa3d/src/broadcom/vulkan/ |
H A D | v3dv_pipeline.c | 3633 vk_outarray_append_typed(VkPipelineExecutableStatisticKHR, &out, stat) { in v3dv_GetPipelineExecutableStatisticsKHR() 3634 WRITE_STR(stat->name, "Compile Strategy"); in v3dv_GetPipelineExecutableStatisticsKHR() 3635 WRITE_STR(stat->description, "Chosen compile strategy index"); in v3dv_GetPipelineExecutableStatisticsKHR() 3636 stat->format = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR; in v3dv_GetPipelineExecutableStatisticsKHR() 3637 stat->value.u64 = prog_data->compile_strategy_idx; in v3dv_GetPipelineExecutableStatisticsKHR() 3640 vk_outarray_append_typed(VkPipelineExecutableStatisticKHR, &out, stat) { in v3dv_GetPipelineExecutableStatisticsKHR() 3641 WRITE_STR(stat->name, "Instruction Count"); in v3dv_GetPipelineExecutableStatisticsKHR() 3642 WRITE_STR(stat->description, "Number of QPU instructions"); in v3dv_GetPipelineExecutableStatisticsKHR() 3643 stat->format = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR; in v3dv_GetPipelineExecutableStatisticsKHR() 3644 stat in v3dv_GetPipelineExecutableStatisticsKHR() [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | file.c | 38 #include <sys/stat.h> 156 struct stat st; in file_check() 157 ret = stat(filename, &st); in file_check() 211 struct stat st; in file_open() 254 struct stat st; in file_seek() 307 struct stat st; in file_read_dir()
|
/third_party/curl/lib/ |
H A D | curl_setup.h | 389 # include <sys/stat.h> 394 # undef stat macro 395 # define stat(fname,stp) curlx_win32_stat(fname, stp) macro 414 # include <sys/stat.h> 419 # define stat(fname,stp) curlx_win32_stat(fname, stp) macro 433 # define struct_stat struct stat
|
/third_party/node/src/ |
H A D | node_file.h | 126 virtual void ResolveStat(const uv_stat_t* stat) = 0; 127 virtual void ResolveStatFs(const uv_statfs_t* stat) = 0; 183 void ResolveStat(const uv_stat_t* stat) override; 184 void ResolveStatFs(const uv_statfs_t* stat) override; 221 inline void ResolveStat(const uv_stat_t* stat) override; 222 inline void ResolveStatFs(const uv_statfs_t* stat) override;
|
/third_party/toybox/kconfig/ |
H A D | conf.c | 12 #include <sys/stat.h> 497 struct stat tmpstat; in main() 558 if (stat(".config", &tmpstat)) { in main() 576 if (name && !stat(name, &tmpstat)) { in main() 587 if (!stat(name, &tmpstat)) in main() 589 else if (!stat("all.config", &tmpstat)) in main()
|
H A D | confdata.c | 6 #include <sys/stat.h> 80 struct stat buf; in conf_get_default_confname() 88 if (!stat(fullname, &buf)) in conf_get_default_confname() 412 struct stat st; in conf_write() 415 if (!stat(name, &st) && S_ISDIR(st.st_mode)) { in conf_write() 580 struct stat sb; in conf_split_config() 666 if (stat(path, &sb) && mkdir(path, 0755)) { in conf_split_config()
|
/third_party/toybox/toys/posix/ |
H A D | cp.c | 111 struct stat top; 132 struct stat cst; in cp_node() 193 struct stat st2; in cp_node() 369 int i, destdir = !stat(destname, &TT.top) && S_ISDIR(TT.top.st_mode); in cp_main() 432 struct stat st; in cp_main() 433 int exists = !stat(TT.destname, &st); in cp_main()
|
/third_party/lzma/CPP/7zip/UI/Console/ |
H A D | Main.cpp | 1316 CDecompressStat stat;
1337 hashCalc, errorMessage, stat);
1417 if (stat.NumFolders != 0)
1418 *so << "Folders: " << stat.NumFolders << endl;
1419 if (stat.NumFiles != 1 || stat.NumFolders != 0 || stat.NumAltStreams != 0)
1420 *so << "Files: " << stat.NumFiles << endl;
1421 if (stat.NumAltStreams != 0)
1423 *so << "Alternate Streams: " << stat [all...] |
/third_party/python/Lib/test/ |
H A D | test_tarfile.py | 11 import stat namespace 661 os.stat(path).st_mode & 0o777, 690 self.assertEqual(os.stat(extracted).st_mode & 0o777, 0o755) 1086 s = os.stat(filename) 1103 # Return True if the platform knows the st_blocks stat attribute and 1117 s = os.stat(name) 1602 mode = os.stat(tmpname).st_mode & 0o777 3075 now = pathlib.Path(TEMPDIR).stat().st_mtime 3080 mtime = path.stat().st_mtime 3082 # Some systems can't stat symlink [all...] |
/third_party/lz4/programs/ |
H A D | util.h | 38 #include <sys/types.h> /* stat, utime */ 39 #include <sys/stat.h> /* stat */ 44 # include <unistd.h> /* chown, stat */ 49 # include <sys/stat.h> /* for utimensat */ 126 * stat() functions 139 # define UTIL_TYPE_stat stat 140 # define UTIL_stat stat 348 typedef struct stat stat_t; 409 r = stat(infilenam in UTIL_getFileStat() [all...] |
/device/soc/rockchip/rk2206/adapter/hals/utils/file/ |
H A D | hal_file.c | 18 #include <sys/stat.h> 105 struct stat st_buf = { 0 }; in HalFileStat()
|
/third_party/elfutils/libelf/ |
H A D | elf_readall.c | 35 #include <sys/stat.h> 92 struct stat st; in __libelf_readall()
|
/third_party/elfutils/lib/ |
H A D | crc32_file.c | 36 #include <sys/stat.h> 48 struct stat st; in crc32_file()
|
/third_party/curl/docs/examples/ |
H A D | anyauthput.c | 32 #include <sys/stat.h> 88 struct stat file_info; in main()
|
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/ |
H A D | common.h | 44 struct stat st; \ 69 stat(fullpath, &st); \
|
/third_party/ntfs-3g/include/ntfs-3g/ |
H A D | plugin.h | 38 struct stat; 53 * into a struct stat. The returned st_mode must at least 60 struct stat *stbuf);
|
/third_party/musl/src/linux/ |
H A D | statx.c | 3 #include <sys/stat.h> 19 struct stat st; in statx()
|
/third_party/ltp/testcases/kernel/syscalls/creat/ |
H A D | creat09.c | 70 struct stat buf; in setup() 98 struct stat buf; in file_test()
|
/third_party/ltp/testcases/kernel/syscalls/lchown/ |
H A D | lchown01.c | 36 #include <sys/stat.h> 74 struct stat stat_buf; in main()
|