Home
last modified time | relevance | path

Searched refs:stat (Results 2726 - 2750 of 7199) sorted by relevance

1...<<101102103104105106107108109110>>...288

/kernel/linux/linux-6.6/drivers/s390/net/
H A Dqeth_ethtool.c68 char *stat; in qeth_add_stat_data() local
71 stat = (char *)src + stats[i].offset; in qeth_add_stat_data()
72 **dst = *(u64 *)stat; in qeth_add_stat_data()
/kernel/linux/linux-6.6/tools/iio/
H A Diio_generic_buffer.c23 #include <sys/stat.h>
351 struct stat st; in main()
615 if (stat(buf_dir_name, &st)) { in main()
616 fprintf(stderr, "Could not stat() '%s', got error %d: %s\n", in main()
/kernel/linux/linux-6.6/samples/nitro_enclaves/
H A Dne_ioctl_sample.c87 #include <sys/stat.h>
297 struct stat image_stat_buf = {}; in ne_load_enclave_image()
304 rc = stat(enclave_image_path, &image_stat_buf); in ne_load_enclave_image()
306 printf("Error in get image stat info [%m]\n"); in ne_load_enclave_image()
/kernel/liteos_a/testsuites/unittest/process/plimits/
H A Dprocess_plimits_test.cpp39 #include <sys/stat.h>
544 struct stat statbuf; in IsFile()
550 struct stat statbuf; in IsDir()
/test/testfwk/developer_test/local_coverage/interface_coverage/
H A Dinterface_coverage_gcov_lcov.py25 import stat namespace
32 MODES = stat.S_IWUSR | stat.S_IRUSR
/test/testfwk/developer_test/local_coverage/resident_service/
H A Dinit_gcov.py27 import stat namespace
30 MODES = stat.S_IWUSR | stat.S_IRUSR
/test/testfwk/developer_test/libs/benchmark/report/
H A Dgenerate_report.py23 import stat namespace
26 MODES = stat.S_IWUSR | stat.S_IRUSR
/test/testfwk/developer_test/aw/python/distributed/distribute/
H A Ddistribute.py24 import stat namespace
27 MODES = stat.S_IWUSR | stat.S_IRUSR
/test/testfwk/xdevice/src/xdevice/_core/executor/
H A Dabs.py21 import stat namespace
305 fd = os.open(device_log_back_fill_path, os.O_RDONLY, stat.S_IWUSR | stat.S_IRUSR)
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/
H A Dmmanndk.cpp30 #include <sys/stat.h>
121 struct stat statbuff; in Mmap()
124 stat(ptr, &statbuff); in Mmap()
/third_party/eudev/src/libudev/
H A Dlibudev-hwdb.c51 struct stat st;
355 struct stat st; in udev_hwdb_validate()
361 if (stat("/etc/udev/hwdb.bin", &st) < 0) in udev_hwdb_validate()
/third_party/glslang/StandAlone/
H A Dspirv-remap.cpp43 #include <sys/stat.h>
375 struct stat info; in IsDirectory()
376 if (stat(path.c_str(), &info) != 0) { in IsDirectory()
/third_party/alsa-utils/nhlt/
H A Dnhlt-dmic-info.c35 #include <sys/stat.h>
233 struct stat st; in nhlt_to_json()
239 if (stat(nhlt_file, &st)) in nhlt_to_json()
/third_party/icu/icu4c/source/test/perf/ubrkperf/
H A Dubrkperfold.cpp62 #include <sys/stat.h>
500 struct stat buf; in UCharFile()
501 int32_t result = stat(fileName, &buf); in UCharFile()
/third_party/libsnd/tests/
H A Dmisc_test.c27 #include <sys/stat.h>
271 struct stat buf ; in filesystem_full_test()
280 if (stat (filename, &buf) != 0) in filesystem_full_test()
/third_party/libcoap/examples/
H A Detsi_iot_01.c22 #include <sys/stat.h>
404 struct stat statbuf; in make_large()
410 if (stat(filename, &statbuf) < 0) { in make_large()
411 coap_log_warn("cannot stat file %s\n", filename); in make_large()
/third_party/ltp/testcases/kernel/fs/inode/
H A Dinode02.c26 CALLS: mkdir, stat, open
57 #include <sys/stat.h>
754 struct stat buf; in mode()
757 ret_val = stat(path_string, &buf); in mode()
/third_party/ninja/src/
H A Dbuild_log_test.cc20 #include <sys/stat.h>
142 struct stat statbuf; in TEST_F()
143 ASSERT_EQ(0, stat(kTestFilename, &statbuf)); in TEST_F()
/third_party/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_vp3_video.c24 #include <sys/stat.h>
419 struct stat s; in firmware_present()
424 ret = stat(path, &s); in firmware_present()
/third_party/libfuse/example/
H A Dpassthrough_fh.c41 #include <sys/stat.h>
71 static int xmp_getattr(const char *path, struct stat *stbuf, in xmp_getattr()
161 struct stat st; in xmp_readdir()
H A Dpassthrough.c40 #include <sys/stat.h>
76 static int xmp_getattr(const char *path, struct stat *stbuf, in xmp_getattr()
129 struct stat st; in xmp_readdir()
/third_party/lwip/src/apps/http/makefsdata/
H A Dtinydir.h56 # include <sys/stat.h>
191 struct stat _s;
541 if (stat( in tinydir_open()
/third_party/ltp/testcases/realtime/func/rt-migrate/
H A Drt-migrate.c61 #include <sys/stat.h>
86 struct stat st; in setup_ftrace_marker()
96 ret = stat(files[i], &st); in setup_ftrace_marker()
/third_party/mesa3d/src/util/tests/
H A Dcache_test.cpp50 const struct stat *sb, in remove_entry()
87 struct stat sb; in check_directories_created()
88 if (stat(full_path, &sb) != -1 && S_ISDIR(sb.st_mode)) in check_directories_created()
/third_party/musl/Benchmark/musl/
H A Dbenchmark_framework.cpp22 #include <sys/stat.h>
407 struct stat st; in IsRegularFileExists()
408 return stat(file.c_str(), &st) != -1 && S_ISREG(st.st_mode); in IsRegularFileExists()

Completed in 27 milliseconds

1...<<101102103104105106107108109110>>...288