Home
last modified time | relevance | path

Searched refs:bundleScanStart_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/src/
H A Dperf_profile.cpp55 return bundleScanStart_; in GetBundleScanStartTime()
60 bundleScanStart_ = (time > 0) ? time : 0; in SetBundleScanStartTime()
70 bundleScanEnd_ = (time > 0 && time > bundleScanStart_) ? time : bundleScanStart_; in SetBundleScanEndTime()
238 bundleScanStart_ = 0; in Reset()
273 if ((bundleScanEnd_ > bundleScanStart_) || (bundleInstallTime_ > 0) || in Dump()
280 if (bundleScanEnd_ > bundleScanStart_) { in Dump()
281 … APP_LOGD("BundleScanTime: %{public}" PRId64 "(ms) \n", (bundleScanEnd_ - bundleScanStart_)); in Dump()
/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/include/
H A Dperf_profile.h95 int64_t bundleScanStart_ = 0; variable