Home
last modified time | relevance | path

Searched refs:WaitForProperty (Results 1 – 15 of 15) sorted by relevance

/system/core/base/
Dproperties_test.cpp130 TEST(properties, WaitForProperty) { in TEST() argument
140 ASSERT_TRUE(android::base::WaitForProperty("debug.libbase.WaitForProperty_test", "a", 1s)); in TEST()
142 ASSERT_TRUE(android::base::WaitForProperty("debug.libbase.WaitForProperty_test", "b", 1s)); in TEST()
152 ASSERT_FALSE(android::base::WaitForProperty("debug.libbase.WaitForProperty_timeout_test", "a", in TEST()
174 ASSERT_TRUE(android::base::WaitForProperty("debug.libbase.WaitForProperty_test", "a", 1s)); in TEST()
177 ASSERT_TRUE(android::base::WaitForProperty("debug.libbase.WaitForProperty_test", "b")); in TEST()
194 ASSERT_TRUE(android::base::WaitForProperty("debug.libbase.WaitForProperty_test", "a", 1s)); in TEST()
197 ASSERT_FALSE(android::base::WaitForProperty("debug.libbase.WaitForProperty_test", "b", -100ms)); in TEST()
Dproperties.cpp167 bool WaitForProperty(const std::string& key, const std::string& expected_value, in WaitForProperty() function
/system/apex/apexd/
Dapexd_prop.cpp36 if (android::base::WaitForProperty("ro.init.updatable_crashing", "1", in waitForBootStatus()
/system/core/init/
Dsubcontext_test.cpp37 using android::base::WaitForProperty;
83 WaitForProperty("init.test.subcontext", "fail"); in TEST()
93 EXPECT_TRUE(WaitForProperty("init.test.subcontext", "success", 10s)); in TEST()
/system/linkerconfig/modules/tests/
Dvariables_test.cc36 ASSERT_TRUE(android::base::WaitForProperty("debug.linkerconfig.test_prop_key", in TEST()
/system/core/adb/daemon/
Dmdns.cpp45 if (! android::base::WaitForProperty("init.svc.mdnsd", "running", 5s)) { in start_mdns()
/system/core/base/include/android-base/
Dproperties.h61 bool WaitForProperty(const std::string& key, const std::string& expected_value,
/system/libhidl/adapter/
DHidlBinderAdapter.cpp35 using android::base::WaitForProperty;
118 while (!WaitForProperty(property, "true", 30s)) { in waitForAdaptersDeactivated()
/system/netd/server/
Dmain.cpp115 while (!android::base::WaitForProperty("bpf.progs_loaded", "1", in main()
/system/vold/
DMetadataCrypt.cpp89 while (!android::base::WaitForProperty("vold.checkpoint_committed", "1")) { in commit_key()
DKeyStorage.cpp178 while (!android::base::WaitForProperty("vold.checkpoint_committed", "1")) { in deferedKmDeleteKey()
DUtils.cpp769 android::base::WaitForProperty(kRestoreconString, path); in RestoreconRecursive()
Dcryptfs.cpp1514 … while (!android::base::WaitForProperty("vold.post_fs_data_done", "1", std::chrono::seconds(15))) { in prep_data_fs()
/system/libhidl/transport/
DServiceManagement.cpp58 using android::base::WaitForProperty;
80 while (!WaitForProperty(kHwServicemanagerReadyProperty, "true", 1s)) { in waitForHwServiceManager()
/system/gsid/
Dgsi_tool.cpp65 !android::base::WaitForProperty("init.svc.gsid", "running", 5s)) { in GetGsiService()