Searched refs:S_IROTH (Results 1 - 8 of 8) sorted by relevance
/commonlibrary/c_utils/base/src/rust/ |
H A D | directory_ex.rs | 35 pub const S_IROTH: u32 = 0o004; consts
|
/commonlibrary/c_utils/base/test/unittest/common/ |
H A D | utils_directory_test.cpp | 220 EXPECT_EQ(mkdir("/data/test_dir", S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH), 0); in HWTEST_F() 224 EXPECT_EQ(mkdir("./0", S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH), 0); in HWTEST_F() 471 mode = S_IRUSR | S_IRGRP | S_IROTH; in HWTEST_F() 498 mode_t mode = S_IRUSR | S_IRGRP | S_IROTH; in HWTEST_F()
|
H A D | utils_file_test.cpp | 393 int fd = open(filename.c_str(), O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); in HWTEST_F() 415 int fd = open(filename.c_str(), O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); in HWTEST_F() 437 int fd = open(filename.c_str(), O_RDONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); in HWTEST_F()
|
/commonlibrary/c_utils/base/test/unittest/rust/ |
H A D | rust_utils_directory_test.rs | 185 mode = directory_ex::S_IRUSR | directory_ex::S_IRGRP | directory_ex::S_IROTH; in test_get_folder_size_001() 206 let mode = directory_ex::S_IRUSR | directory_ex::S_IRGRP | directory_ex::S_IROTH; in test_change_mode_directory_001()
|
/commonlibrary/c_utils/base/test/benchmarktest/directory_benchmark_test/ |
H A D | directory_benchmark_test.cpp | 374 mode = S_IRUSR | S_IRGRP | S_IROTH; in BENCHMARK_F() 409 mode_t mode = S_IRUSR | S_IRGRP | S_IROTH; in BENCHMARK_F()
|
/commonlibrary/c_utils/base/test/benchmarktest/file_benchmark_test/ |
H A D | file_benchmark_test.cpp | 96 int fd = open(filename.c_str(), O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); in SaveString() 521 int fd = open(filename.c_str(), O_RDONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); in BENCHMARK_F()
|
/commonlibrary/c_utils/base/src/ |
H A D | directory_ex.cpp | 219 if (mkdir(subPath.c_str(), (S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)) != 0 && errno != EEXIST) { in ForceCreateDirectory()
|
H A D | mapped_file.cpp | 166 int fd = open(path_.c_str(), openFlag_, S_IRWXU | S_IRGRP | S_IROTH); in OpenFile()
|
Completed in 8 milliseconds