Home
last modified time | relevance | path

Searched refs:WaitForFile (Results 1 – 23 of 23) sorted by relevance

/system/core/fs_mgr/tests/
Dfile_wait_test.cpp26 using android::fs_mgr::WaitForFile;
46 ASSERT_TRUE(WaitForFile(test_file_, 500ms)); in TEST_F()
51 ASSERT_FALSE(WaitForFile(test_file_, 500ms)); in TEST_F()
60 EXPECT_TRUE(WaitForFile(test_file_, 3s)); in TEST_F()
69 EXPECT_FALSE(WaitForFile(test_file_ + ".wontexist", 2s)); in TEST_F()
89 ASSERT_FALSE(WaitForFile("/this/path/does/not/exist", 5ms)); in TEST_F()
/system/core/fs_mgr/libfs_avb/tests/
Dutil_test.cpp36 using android::fs_mgr::WaitForFile;
153 TEST(BasicUtilTest, WaitForFile) { in TEST() argument
163 EXPECT_TRUE(WaitForFile(wait_path.value(), 1s)); in TEST()
171 EXPECT_FALSE(WaitForFile(wait_path.value(), 200ms)); in TEST()
182 auto wait_file = std::async(WaitForFile, wait_path.value(), 500ms, FileWaitMode::Exists); in TEST()
203 auto wait_file = std::async(WaitForFile, wait_path.value(), 50ms, FileWaitMode::Exists); in TEST()
/system/core/fs_mgr/include/fs_mgr/
Dfile_wait.h26 bool WaitForFile(const std::string& path, const std::chrono::milliseconds relative_timeout);
/system/core/fs_mgr/libdm/
Dutility.h25 bool WaitForFile(const std::string& path, const std::chrono::milliseconds& timeout_ms);
Dutility.cpp45 bool WaitForFile(const std::string& path, const std::chrono::milliseconds& timeout_ms) { in WaitForFile() function
Dloop_control.cpp53 if (!WaitForFile(*loopdev, timeout_ms - time_elapsed)) { in Attach()
Ddm.cpp178 if (!WaitForFile(unique_path, timeout_ms)) { in CreateDevice()
/system/core/fs_mgr/libfs_avb/
Davb_ops.cpp177 if (!WaitForFile(path, 1s)) { in ReadFromPartition()
185 if (path.empty() || !WaitForFile(path, 1s)) return AVB_IO_RESULT_ERROR_NO_SUCH_PARTITION; in ReadFromPartition()
Dutil.h62 bool WaitForFile(const std::string& filename, const std::chrono::milliseconds relative_timeout,
Dutil.cpp89 bool WaitForFile(const std::string& filename, const std::chrono::milliseconds relative_timeout, in WaitForFile() function
Dfs_avb.cpp517 if (!path.empty() && !WaitForFile(path, 1000ms, FileWaitMode::DoesNotExist)) { in TearDownAvbHashtree()
Davb_util.cpp555 if (!WaitForFile(image_path, 1s)) { in LoadAndVerifyVbmetaByPath()
/system/core/fs_mgr/libfiemap/
Dimage_test.cpp43 using android::fs_mgr::WaitForFile;
/system/vold/
DLoop.cpp81 if (!android::fs_mgr::WaitForFile(out_device, 2s)) { in create()
DUtils.h145 status_t WaitForFile(const char* filename, std::chrono::nanoseconds timeout);
DUtils.cpp961 status_t WaitForFile(const char* filename, std::chrono::nanoseconds timeout) { in WaitForFile() function
Dcryptfs.cpp1126 if (android::vold::WaitForFile(crypto_blk_name->c_str(), 1s) < 0) { in create_crypto_blk_dev()
/system/apex/apexd/
Dapexd_loop.cpp95 Result<void> loopReady = WaitForFile("/dev/loop-control", 20s); in preAllocateLoopDevices()
Dapexd_utils.h208 inline Result<void> WaitForFile(const std::string& path, in WaitForFile() function
/system/core/fs_mgr/
Dfile_wait.cpp215 bool WaitForFile(const std::string& path, const std::chrono::milliseconds relative_timeout) { in WaitForFile() function
Dfs_mgr_verity.cpp533 if (wait_for_verity_dev && !WaitForFile(entry->blk_device, 1s)) { in fs_mgr_setup_verity()
Dfs_mgr.cpp1385 if (current_entry.fs_mgr_flags.wait && !WaitForFile(current_entry.blk_device, 20s)) { in fs_mgr_mount_all()
1787 if (entry.fs_mgr_flags.wait && !WaitForFile(entry.blk_device, 20s)) { in fs_mgr_do_mount_one()
1849 if (fstab_entry.fs_mgr_flags.wait && !WaitForFile(n_blk_device, 20s)) { in fs_mgr_do_mount_helper()
2036 if (entry.fs_mgr_flags.wait && !WaitForFile(entry.blk_device, 20s)) { in fs_mgr_swapon_all()
Dfs_mgr_overlayfs.cpp1217 if (!WaitForFile(scratch_device, 10s)) { in TryMountScratch()