Home
last modified time | relevance | path

Searched refs:out_time_of_oobe (Results 1 – 7 of 7) sorted by relevance

/system/update_engine/common/
Dfake_hardware.h71 bool IsOOBEComplete(base::Time* out_time_of_oobe) const override { in IsOOBEComplete() argument
72 if (out_time_of_oobe != nullptr) in IsOOBEComplete()
73 *out_time_of_oobe = oobe_timestamp_; in IsOOBEComplete()
Dhardware_interface.h62 virtual bool IsOOBEComplete(base::Time* out_time_of_oobe) const = 0;
Dmock_hardware.h86 MOCK_CONST_METHOD1(IsOOBEComplete, bool(base::Time* out_time_of_oobe));
/system/update_engine/aosp/
Dhardware_android.cc165 bool HardwareAndroid::IsOOBEComplete(base::Time* out_time_of_oobe) const { in IsOOBEComplete()
167 if (out_time_of_oobe) in IsOOBEComplete()
168 *out_time_of_oobe = base::Time(); in IsOOBEComplete()
Dhardware_android.h43 bool IsOOBEComplete(base::Time* out_time_of_oobe) const override;
/system/update_engine/cros/
Dhardware_chromeos.cc139 bool HardwareChromeOS::IsOOBEComplete(base::Time* out_time_of_oobe) const { in IsOOBEComplete()
151 if (out_time_of_oobe != nullptr) in IsOOBEComplete()
152 *out_time_of_oobe = base::Time::FromTimeT(statbuf.st_mtime); in IsOOBEComplete()
Dhardware_chromeos.h47 bool IsOOBEComplete(base::Time* out_time_of_oobe) const override;