/third_party/pulseaudio/src/modules/ |
H A D | module-pipe-sink.c | 25 #include <sys/stat.h> 417 struct stat st; in pa__init()
|
/third_party/toybox/toys/pending/ |
H A D | dhcp6.c | 433 struct stat sts; in run_script() 439 if (stat(script, &sts) == -1 && errno == ENOENT) return; in run_script()
|
H A D | strace.c | 238 } else if (strstart(&TT.fmt, "stat}")) { in print_struct() 239 struct stat sb; in print_struct() 484 SC(fstat, "f/{stat}"); in print_enter() 495 SC(lstat, "s/{stat}"); in print_enter() 501 SC(newfstatat, "fs/{stat}d"); in print_enter() 513 SC(stat, "s/{stat}"); in print_enter()
|
/third_party/python/PC/layout/ |
H A D | main.py | 70 dest_stat = os.stat(dest) 74 src_stat = os.stat(src)
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | raw_hash_set_probe_benchmark.cc | 562 auto print = [&](absl::string_view stat, double Ratios::*val) { in main() 564 absl::StrCat(result.name, "/", result.dist_name, "/", stat); in main()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | wpa_debug.c | 21 #include <sys/stat.h> 62 #include <sys/stat.h>
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | wpa_ctrl.c | 14 #include <sys/stat.h> 26 #include <sys/stat.h>
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/ |
H A D | wpa_ctrl.c | 14 #include <sys/stat.h> 26 #include <sys/stat.h>
|
/device/soc/rockchip/common/sdk_linux/drivers/gpu/drm/bridge/synopsys/ |
H A D | dw-hdmi.c | 413 u8 stat; member 771 int stat; in dw_hdmi_i2c_wait() local 773 stat = wait_for_completion_timeout(&i2c->cmp, HZ / 10); in dw_hdmi_i2c_wait() 774 if (!stat) { in dw_hdmi_i2c_wait() 781 stat = wait_for_completion_timeout(&i2c->cmp, HZ / 10); in dw_hdmi_i2c_wait() 782 if (!stat) { in dw_hdmi_i2c_wait() 788 if (i2c->stat & HDMI_IH_I2CM_STAT0_ERROR) { in dw_hdmi_i2c_wait() 3781 unsigned int stat; in dw_hdmi_i2c_irq() local 3783 stat = hdmi_readb(hdmi, HDMI_IH_I2CM_STAT0); in dw_hdmi_i2c_irq() 3784 if (!stat) { in dw_hdmi_i2c_irq() [all...] |
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/ |
H A D | sqlite_connection.cpp | 24 #include <sys/stat.h> 105 struct stat fileStat; in Collect() 106 if (stat(file.c_str(), &fileStat) != 0) { in Collect() 868 struct stat st = { 0 }; in LimitPermission() 869 if (stat(dbPath.c_str(), &st) == 0) { in LimitPermission() 877 LOG_ERROR("SqliteConnection LimitPermission stat fail, err = %{public}d", errno); in LimitPermission()
|
/third_party/libcoap/examples/ |
H A D | coap-client.c | 20 #include <sys/stat.h> 710 struct stat statbuf; in read_file_mem() 1143 struct stat statbuf; in cmdline_input_from_file() 1164 perror("cmdline_input_from_file: stat"); in cmdline_input_from_file() 1331 struct stat stbuf; in setup_pki() 1332 if ((stat(root_ca_file, &stbuf) == 0) && S_ISDIR(stbuf.st_mode)) { in setup_pki()
|
/third_party/ntfs-3g/libntfs-3g/ |
H A D | win32_io.c | 72 #include <sys/stat.h> 73 #define stat stat64 macro 1759 * ntfs_device_win32_stat - get a unix-like stat structure for an ntfs device 1761 * @buf: pointer to the stat structure to fill 1768 static int ntfs_device_win32_stat(struct ntfs_device *dev, struct stat *buf) in ntfs_device_win32_stat() 1789 memset(buf, 0, sizeof(struct stat)); in ntfs_device_win32_stat() 1954 .stat = ntfs_device_win32_stat,
|
/third_party/libabigail/src/ |
H A D | abg-tools-utils.cc | 29 #include <sys/stat.h> 174 struct stat st; \ 325 /// Get the stat struct (as returned by the lstat() function of the C 329 /// @param path the path to the function to stat. 331 /// @param s the resulting stat struct. 333 /// @return true iff the stat function completed successfully. 336 struct stat* s) in get_stat() 765 struct stat st; in ensure_dir_path_created() 770 stat_result = stat(dir_path.c_str(), &st); in ensure_dir_path_created()
|
/third_party/rust/crates/libc/src/unix/ |
H A D | mod.rs | 733 pub fn fstat(fildes: ::c_int, buf: *mut stat) -> ::c_int; in fstat() 739 link_name = "stat$INODE64" 744 link_name = "stat@FBSD_1.0" 746 pub fn stat(path: *const c_char, buf: *mut stat) -> ::c_int; in stat() functions 833 buf: *mut stat, in fstatat() 1023 pub fn lstat(path: *const c_char, buf: *mut stat) -> ::c_int; in lstat()
|
/third_party/skia/third_party/externals/libpng/contrib/tools/ |
H A D | pngcp.c | 74 #include <sys/stat.h> 1581 struct stat buf; in checkdir() 1582 return stat(pathname, &buf) == 0 && S_ISDIR(buf.st_mode); in checkdir() 1601 struct stat buf; in isdir() 1602 int ret = stat(pathname, &buf); in isdir()
|
/third_party/python/Lib/test/ |
H A D | test_http_cookiejar.py | 4 import stat namespace 382 st = os.stat(filename) 383 self.assertEqual(stat.S_IMODE(st.st_mode), 0o600) 396 st = os.stat(filename) 397 self.assertEqual(stat.S_IMODE(st.st_mode), 0o600)
|
/base/global/resource_management_lite/frameworks/resmgr_lite/src/ |
H A D | global.c | 22 #include <sys/stat.h>
|
/base/hiviewdfx/hilog/frameworks/libhilog/ |
H A D | hilog_printf.cpp | 24 #include <sys/stat.h>
|
/base/hiviewdfx/hiview/adapter/plugins/eventservice/service/idl/src/ |
H A D | data_publisher.cpp | 23 #include <sys/stat.h>
|
/base/hiviewdfx/faultloggerd/interfaces/innerkits/faultloggerd_client/ |
H A D | faultloggerd_socket.cpp | 25 #include <sys/stat.h>
|
H A D | faultloggerd_client.cpp | 27 #include <sys/stat.h>
|
/base/powermgr/battery_manager/charger/src/ |
H A D | power_supply_provider.cpp | 22 #include <sys/stat.h>
|
/base/msdp/device_status/utils/common/src/ |
H A D | util.cpp | 23 #include <sys/stat.h>
|
/base/security/access_token/services/accesstokenmanager/main/cpp/src/permission/ |
H A D | permission_definition_parser.cpp | 19 #include <sys/stat.h>
|
/base/security/code_signature/utils/src/ |
H A D | code_sign_block.cpp | 21 #include <linux/stat.h>
|