Home
last modified time | relevance | path

Searched refs:beginTime (Results 1 - 25 of 80) sorted by relevance

1234

/foundation/resourceschedule/device_usage_statistics/test/unittest/
H A Dpackage_usage_test.cpp227 int64_t beginTime = 0; in HWTEST_F() local
229 eventTracker->AddToEventStats(eventStatsList, eventId, beginTime, endTime); in HWTEST_F()
233 eventTracker->AddToEventStats(eventStatsList, eventId, beginTime, endTime); in HWTEST_F()
237 eventTracker->AddToEventStats(eventStatsList, eventId, beginTime, endTime); in HWTEST_F()
359 int64_t beginTime = 0; in HWTEST_F() local
362 bundleUserService->QueryDeviceEventStats(beginTime, endTime, eventStats, userId); in HWTEST_F()
365 bundleUserService->QueryDeviceEventStats(beginTime, endTime, eventStats, userId); in HWTEST_F()
367 beginTime = -1; in HWTEST_F()
368 bundleUserService->QueryDeviceEventStats(beginTime, endTime, eventStats, userId); in HWTEST_F()
371 beginTime in HWTEST_F()
390 int64_t beginTime = 0; HWTEST_F() local
426 int64_t beginTime = 0; HWTEST_F() local
485 int64_t beginTime = 0; HWTEST_F() local
529 int64_t beginTime = 0; HWTEST_F() local
654 int64_t beginTime = 0; HWTEST_F() local
[all...]
/foundation/resourceschedule/device_usage_statistics/interfaces/innerkits/include/
H A Dbundle_active_proxy.h47 * parameters: intervalType, beginTime, endTime, errCode
51 const int32_t intervalType, const int64_t beginTime, const int64_t endTime, int32_t userId) override;
55 * parameters: beginTime, endTime, errCode
58 ErrCode QueryBundleEvents(std::vector<BundleActiveEvent>& bundleActiveEvents, const int64_t beginTime,
70 * parameters: intervalType, beginTime, endTime
74 const int32_t intervalType, const int64_t beginTime, const int64_t endTime) override;
78 * parameters: beginTime, endTime
81 ErrCode QueryCurrentBundleEvents(std::vector<BundleActiveEvent>& bundleActiveEvents, const int64_t beginTime,
102 * parameters: beginTime, endTime, eventStats, userId, default userId is -1 for JS API,
106 ErrCode QueryDeviceEventStats(int64_t beginTime, int64_
[all...]
H A Dbundle_active_client.h62 * @param beginTime .
68 const int32_t intervalType, const int64_t beginTime, const int64_t endTime, int32_t userId = -1);
74 * @param beginTime .
79 ErrCode QueryBundleEvents(std::vector<BundleActiveEvent>& bundleActiveEvents, const int64_t beginTime,
97 * @param beginTime .
102 const int32_t intervalType, const int64_t beginTime, const int64_t endTime);
108 * @param beginTime .
113 const int64_t beginTime, const int64_t endTime);
155 * @param beginTime .
161 ErrCode QueryDeviceEventStats(int64_t beginTime, int64_
[all...]
/foundation/resourceschedule/device_usage_statistics/interfaces/kits/bundlestats/napi/include/
H A Dbundle_state_data.h85 int64_t beginTime = -1; member
93 int64_t beginTime = -1; member
100 int64_t beginTime = -1; member
107 int64_t beginTime = -1; member
149 int64_t beginTime = -1; member
157 int64_t beginTime = -1; member
164 int64_t beginTime = -1; member
194 int64_t beginTime = -1; member
/foundation/resourceschedule/device_usage_statistics/services/common/include/
H A Dibundle_active_service.h67 * parameters: intervalType, beginTime, endTime, errCode
71 const int32_t intervalType, const int64_t beginTime, const int64_t endTime, int32_t userId) = 0;
75 * parameters: beginTime, endTime, errCode
78 virtual ErrCode QueryBundleEvents(std::vector<BundleActiveEvent>& bundleActiveEvents, const int64_t beginTime,
83 * parameters: intervalType, beginTime, endTime
87 const int32_t intervalType, const int64_t beginTime, const int64_t endTime) = 0;
91 * parameters: beginTime, endTime
95 const int64_t beginTime, const int64_t endTime) = 0;
136 * parameters: beginTime, endTime, eventStats, userId, default userId is -1 for JS API,
140 virtual ErrCode QueryDeviceEventStats(int64_t beginTime, int64_
[all...]
H A Dbundle_active_service.h79 * @param beginTime .
85 const int32_t intervalType, const int64_t beginTime, const int64_t endTime, int32_t userId) override;
91 * @param beginTime .
96 ErrCode QueryBundleEvents(std::vector<BundleActiveEvent>& bundleActiveEvents, const int64_t beginTime,
114 * @param beginTime .
119 const int32_t intervalType, const int64_t beginTime, const int64_t endTime) override;
125 * @param beginTime .
130 const int64_t beginTime, const int64_t endTime) override;
156 * @param beginTime .
162 ErrCode QueryDeviceEventStats(int64_t beginTime, int64_
[all...]
H A Dbundle_active_usage_database.h55 int32_t GetOptimalIntervalType(int64_t beginTime, int64_t endTime);
57 std::vector<BundleActivePackageStats> QueryDatabaseUsageStats(int32_t databaseType, int64_t beginTime,
59 std::vector<BundleActiveEvent> QueryDatabaseEvents(int64_t beginTime, int64_t endTime, int32_t userId,
79 void QueryDeviceEventStats(int32_t eventId, int64_t beginTime, int64_t endTime,
81 void QueryNotificationEventStats(int32_t eventId, int64_t beginTime, int64_t endTime,
118 int32_t JudgeQueryCondition(const int64_t beginTime, const int64_t endTime, const int64_t eventTableTime);
122 void GetQuerySqlCommand(const int64_t beginTime,
126 bool GetDbIndex(const int64_t beginTime, const int64_t endTime,
H A Dbundle_active_core.h158 * parameters: userId, intervalType, beginTime, endTime, bundleName
162 const int32_t intervalType, const int64_t beginTime, const int64_t endTime, std::string bundleName);
166 const int64_t beginTime, const int64_t endTime, std::string bundleName);
178 * parameters: beginTime, endTime, eventStats, userId, default userId is -1 for JS API,
182 ErrCode QueryDeviceEventStats(int64_t beginTime, int64_t endTime,
187 * parameters: beginTime, endTime, eventStats, userId, default userId is -1 for JS API,
191 ErrCode QueryNotificationEventStats(int64_t beginTime, int64_t endTime,
/foundation/resourceschedule/device_usage_statistics/interfaces/innerkits/src/
H A Dbundle_active_client.cpp87 const int32_t intervalType, const int64_t beginTime, const int64_t endTime, int32_t userId) in QueryBundleStatsInfoByInterval()
94 return bundleActiveProxy_->QueryBundleStatsInfoByInterval(PackageStats, intervalType, beginTime, endTime, userId); in QueryBundleStatsInfoByInterval()
98 const int64_t beginTime, const int64_t endTime, int32_t userId) in QueryBundleEvents()
105 auto err = bundleActiveProxy_->QueryBundleEvents(bundleActiveEvents, beginTime, endTime, userId); in QueryBundleEvents()
121 const int32_t intervalType, const int64_t beginTime, const int64_t endTime) in QueryBundleStatsInfos()
128 return bundleActiveProxy_->QueryBundleStatsInfos(bundleActivePackageStats, intervalType, beginTime, endTime); in QueryBundleStatsInfos()
132 const int64_t beginTime, const int64_t endTime) in QueryCurrentBundleEvents()
139 return bundleActiveProxy_->QueryCurrentBundleEvents(bundleActiveEvents, beginTime, endTime); in QueryCurrentBundleEvents()
195 ErrCode BundleActiveClient::QueryDeviceEventStats(int64_t beginTime, int64_t endTime, in QueryDeviceEventStats() argument
203 return bundleActiveProxy_->QueryDeviceEventStats(beginTime, endTim in QueryDeviceEventStats()
86 QueryBundleStatsInfoByInterval(std::vector<BundleActivePackageStats>& PackageStats, const int32_t intervalType, const int64_t beginTime, const int64_t endTime, int32_t userId) QueryBundleStatsInfoByInterval() argument
97 QueryBundleEvents(std::vector<BundleActiveEvent>& bundleActiveEvents, const int64_t beginTime, const int64_t endTime, int32_t userId) QueryBundleEvents() argument
120 QueryBundleStatsInfos(std::vector<BundleActivePackageStats>& bundleActivePackageStats, const int32_t intervalType, const int64_t beginTime, const int64_t endTime) QueryBundleStatsInfos() argument
131 QueryCurrentBundleEvents(std::vector<BundleActiveEvent>& bundleActiveEvents, const int64_t beginTime, const int64_t endTime) QueryCurrentBundleEvents() argument
206 QueryNotificationEventStats(int64_t beginTime, int64_t endTime, std::vector<BundleActiveEventStats>& eventStats, int32_t userId) QueryNotificationEventStats() argument
[all...]
H A Dbundle_active_proxy.cpp56 const int32_t intervalType, const int64_t beginTime, const int64_t endTime, int32_t userId) in QueryBundleStatsInfoByInterval()
65 data.WriteInt64(beginTime); in QueryBundleStatsInfoByInterval()
95 const int64_t beginTime, const int64_t endTime, int32_t userId) in QueryBundleEvents()
103 data.WriteInt64(beginTime); in QueryBundleEvents()
145 const int32_t intervalType, const int64_t beginTime, const int64_t endTime) in QueryBundleStatsInfos()
154 data.WriteInt64(beginTime); in QueryBundleStatsInfos()
185 const int64_t beginTime, const int64_t endTime) in QueryCurrentBundleEvents()
193 data.WriteInt64(beginTime); in QueryCurrentBundleEvents()
322 ErrCode BundleActiveProxy::QueryDeviceEventStats(int64_t beginTime, int64_t endTime, in QueryDeviceEventStats() argument
325 ErrCode errCode = IPCCommunication(beginTime, endTim in QueryDeviceEventStats()
55 QueryBundleStatsInfoByInterval(std::vector<BundleActivePackageStats>& PackageStats, const int32_t intervalType, const int64_t beginTime, const int64_t endTime, int32_t userId) QueryBundleStatsInfoByInterval() argument
94 QueryBundleEvents(std::vector<BundleActiveEvent>& bundleActiveEvents, const int64_t beginTime, const int64_t endTime, int32_t userId) QueryBundleEvents() argument
144 QueryBundleStatsInfos(std::vector<BundleActivePackageStats>& bundleActivePackageStats, const int32_t intervalType, const int64_t beginTime, const int64_t endTime) QueryBundleStatsInfos() argument
184 QueryCurrentBundleEvents(std::vector<BundleActiveEvent>& bundleActiveEvents, const int64_t beginTime, const int64_t endTime) QueryCurrentBundleEvents() argument
334 QueryNotificationEventStats(int64_t beginTime, int64_t endTime, std::vector<BundleActiveEventStats>& eventStats, int32_t userId) QueryNotificationEventStats() argument
346 IPCCommunication(int64_t beginTime, int64_t endTime, std::vector<BundleActiveEventStats>& eventStats, int32_t userId, int32_t communicationFlag) IPCCommunication() argument
[all...]
/foundation/resourceschedule/device_usage_statistics/services/packageusage/include/
H A Dbundle_active_stats_combiner.h29 int64_t beginTime = 0);
35 std::vector<BundleActivePackageStats>& accumulatedResult, int64_t beginTime = 0);
41 std::vector<BundleActiveEvent>& accumulatedResult, int64_t beginTime = 0);
H A Dbundle_active_user_service.h70 const int64_t beginTime, const int64_t endTime, const int32_t userId, const std::string& bundleName);
71 ErrCode QueryBundleEvents(std::vector<BundleActiveEvent>& bundleActiveEvent, const int64_t beginTime,
74 int32_t QueryDeviceEventStats(int64_t beginTime, int64_t endTime,
76 int32_t QueryNotificationEventStats(int64_t beginTime, int64_t endTime,
94 void UpdateContinueAbilitiesMemory(const int64_t& beginTime,
97 void UpdateContinueServicesMemory(const int64_t& beginTime,
103 void GetCachedSystemEvents(std::shared_ptr<BundleActivePeriodStats> currentStats, int64_t beginTime,
105 void GetCachedNotificationEvents(std::shared_ptr<BundleActivePeriodStats> currentStats, int64_t beginTime,
/foundation/resourceschedule/device_usage_statistics/frameworks/src/
H A Dbundle_state_query.cpp234 // argv[0] : beginTime in ParseStatesParameters()
235 if (BundleStateCommon::GetInt64NumberValue(env, argv[0], params.beginTime) == nullptr) { in ParseStatesParameters()
236 BUNDLE_ACTIVE_LOGE("ParseStatesParameters failed, beginTime type is invalid."); in ParseStatesParameters()
240 && (params.beginTime < TIME_NUMBER_MIN)) { in ParseStatesParameters()
241 BUNDLE_ACTIVE_LOGE("ParseStatesParameters failed, beginTime value is invalid."); in ParseStatesParameters()
256 if ((params.errorCode == ERR_OK) && (params.endTime <= params.beginTime)) { in ParseStatesParameters()
257 BUNDLE_ACTIVE_LOGE("ParseStatesParameters endTime(%{public}lld) <= beginTime(%{public}lld)", in ParseStatesParameters()
258 (long long)params.endTime, (long long)params.beginTime); in ParseStatesParameters()
279 asyncCallbackInfo->beginTime, asyncCallbackInfo->endTime); in QueryCurrentBundleEventsAsync()
317 callbackPtr->beginTime in QueryCurrentBundleActiveStates()
[all...]
H A Dbundle_state_query_napi.cpp304 // argv[0] : beginTime in ParseQueryCurrentBundleEventsParameters()
305 if (BundleStateCommon::GetInt64NumberValue(env, argv[0], params.beginTime) == nullptr) { in ParseQueryCurrentBundleEventsParameters()
306 BUNDLE_ACTIVE_LOGE("ParseQueryCurrentBundleEventsParameters failed, beginTime type is invalid."); in ParseQueryCurrentBundleEventsParameters()
310 if (params.beginTime < TIME_NUMBER_MIN) { in ParseQueryCurrentBundleEventsParameters()
311 BUNDLE_ACTIVE_LOGE("ParseQueryCurrentBundleEventsParameters failed, beginTime value is invalid."); in ParseQueryCurrentBundleEventsParameters()
321 if (params.endTime <= params.beginTime) { in ParseQueryCurrentBundleEventsParameters()
322 BUNDLE_ACTIVE_LOGE("ParseQueryCurrentBundleEventsParameters endTime(%{public}lld) <= beginTime(%{public}lld)", in ParseQueryCurrentBundleEventsParameters()
323 (long long)params.endTime, (long long)params.beginTime); in ParseQueryCurrentBundleEventsParameters()
347 asyncCallbackInfo->beginTime, asyncCallbackInfo->endTime); in QueryCurrentBundleEventsAsync()
375 callbackPtr->beginTime in QueryCurrentBundleEvents()
[all...]
/foundation/resourceschedule/device_usage_statistics/services/packageusage/src/
H A Dbundle_active_stats_combiner.cpp23 int64_t beginTime) in combine()
34 std::vector<BundleActiveEvent>& accumulatedResult, int64_t beginTime) in combine()
37 int32_t startIndex = stats->events_.FindBestIndex(beginTime); in combine()
21 combine( const std::shared_ptr<BundleActivePeriodStats>& stats, std::vector<BundleActivePackageStats>& accumulatedResult, int64_t beginTime) combine() argument
33 combine(const std::shared_ptr<BundleActivePeriodStats>& stats, std::vector<BundleActiveEvent>& accumulatedResult, int64_t beginTime) combine() argument
H A Dbundle_active_user_service.cpp369 void BundleActiveUserService::UpdateContinueAbilitiesMemory(const int64_t& beginTime, in UpdateContinueAbilitiesMemory() argument
387 (*itInterval)->Update(continueBundleName, "", beginTime, it->second, it->first, uid); in UpdateContinueAbilitiesMemory()
392 void BundleActiveUserService::UpdateContinueServicesMemory(const int64_t& beginTime, in UpdateContinueServicesMemory() argument
408 (*itInterval)->Update(continueBundleName, it->first, beginTime, it->second, "", uid); in UpdateContinueServicesMemory()
426 int64_t beginTime = currentStats_[BundleActivePeriodStats::PERIOD_DAILY]->beginTime_; in RenewStatsInMemory() local
429 UpdateContinueAbilitiesMemory(beginTime, continueAbilities, continueBundleName, itInterval); in RenewStatsInMemory()
430 UpdateContinueServicesMemory(beginTime, continueServices, continueBundleName, itInterval); in RenewStatsInMemory()
437 int32_t intervalType, const int64_t beginTime, const int64_t endTime, const int32_t userId, in QueryBundleStatsInfos()
441 intervalType = database_.GetOptimalIntervalType(beginTime, endTime); in QueryBundleStatsInfos()
455 if (beginTime > currentStat in QueryBundleStatsInfos()
436 QueryBundleStatsInfos(std::vector<BundleActivePackageStats>& PackageStats, int32_t intervalType, const int64_t beginTime, const int64_t endTime, const int32_t userId, const std::string& bundleName) QueryBundleStatsInfos() argument
486 QueryBundleEvents(std::vector<BundleActiveEvent>& bundleActiveEvent, const int64_t beginTime, const int64_t endTime, const int32_t userId, const std::string& bundleName) QueryBundleEvents() argument
542 QueryDeviceEventStats(int64_t beginTime, int64_t endTime, std::vector<BundleActiveEventStats>& eventStats, int32_t userId) QueryDeviceEventStats() argument
573 GetCachedSystemEvents(std::shared_ptr<BundleActivePeriodStats> currentStats, int64_t beginTime, int64_t endTime, std::map<std::string, BundleActiveEventStats>& systemEventStats) GetCachedSystemEvents() argument
600 QueryNotificationEventStats(int64_t beginTime, int64_t endTime, std::vector<BundleActiveEventStats>& eventStats, int32_t userId) QueryNotificationEventStats() argument
629 GetCachedNotificationEvents(std::shared_ptr<BundleActivePeriodStats> currentStats, int64_t beginTime, int64_t endTime, std::map<std::string, BundleActiveEventStats>& notificationEventStats) GetCachedNotificationEvents() argument
[all...]
H A Dbundle_active_event_tracker.cpp47 int64_t beginTime, int64_t endTime) in AddToEventStats()
55 newEvent.beginTimeStamp_ = beginTime; in AddToEventStats()
46 AddToEventStats(std::vector<BundleActiveEventStats>& eventStatsList, int32_t eventId, int64_t beginTime, int64_t endTime) AddToEventStats() argument
/foundation/resourceschedule/device_usage_statistics/test/fuzztest/bundleactivepowerstatecallbackproxy_fuzzer/
H A Dbundleactivepowerstatecallbackproxy_fuzzer.cpp109 int64_t beginTime = GetData<int64_t>(); in BundleActiveClientFuzzTest() local
122 intervalType, beginTime, endTime, userId); in BundleActiveClientFuzzTest()
126 beginTime, endTime, userId); in BundleActiveClientFuzzTest()
133 DelayedSingleton<BundleActiveClient>::GetInstance()->QueryDeviceEventStats(beginTime, endTime, in BundleActiveClientFuzzTest()
135 DelayedSingleton<BundleActiveClient>::GetInstance()->QueryNotificationEventStats(beginTime, endTime, in BundleActiveClientFuzzTest()
172 int64_t beginTime = GetData<int64_t>(); in BundleActiveStatsCombinerFuzzTest() local
174 combiner->combine(stats, accumulatedResult, beginTime); in BundleActiveStatsCombinerFuzzTest()
178 eventCombiner->combine(stats, activeEventResult, beginTime); in BundleActiveStatsCombinerFuzzTest()
/foundation/multimedia/camera_framework/services/deferred_processing_service/src/session/photo_session/
H A Ddeferred_photo_processing_session.cpp178 uint64_t beginTime = SteadyClock::GetTimestampMilli(); in ReportEvent() local
181 dpsEventInfo.synchronizeTimeBeginTime = beginTime; in ReportEvent()
186 dpsEventInfo.synchronizeTimeEndTime = beginTime; in ReportEvent()
191 dpsEventInfo.dispatchTimeBeginTime = beginTime; in ReportEvent()
195 dpsEventInfo.removeTimeBeginTime = beginTime; in ReportEvent()
199 dpsEventInfo.restoreTimeBeginTime = beginTime; in ReportEvent()
203 dpsEventInfo.processTimeBeginTime = beginTime; in ReportEvent()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/kvdb/
H A Dkvstore_sync_manager.cpp39 auto beginTime = std::chrono::steady_clock::now() + std::chrono::milliseconds(delayMs); in AddSyncOperation() local
40 KvSyncOperation syncOp{ syncId, opSeq, delayMs, syncFunc, endFunc, beginTime }; in AddSyncOperation()
54 scheduleSyncOps_.emplace(beginTime, syncOp); in AddSyncOperation()
57 (nextScheduleTime_ > beginTime + std::chrono::milliseconds(GetExpireTimeRange(delayMs)))) { in AddSyncOperation()
58 AddTimer(beginTime); in AddSyncOperation()
127 if (currentTime < realtimeSyncingOps_.rbegin()->beginTime + priorSyncingTime) { in GetTimeoutSyncOps()
150 return op.beginTime + std::chrono::milliseconds(SYNCING_TIMEOUT_MS) < std::chrono::steady_clock::now(); in DoCheckSyncingTimeout()
/foundation/resourceschedule/device_usage_statistics/services/common/src/
H A Dbundle_active_stub.cpp115 int64_t beginTime = data.ReadInt64(); in HandleQueryBundleStatsInfoByInterval() local
118 ErrCode errCode = QueryBundleStatsInfoByInterval(result, intervalType, beginTime, endTime, userId); in HandleQueryBundleStatsInfoByInterval()
140 int64_t beginTime = data.ReadInt64(); in HandleQueryBundleEvents() local
143 ErrCode errCode = QueryBundleEvents(result, beginTime, endTime, userId); in HandleQueryBundleEvents()
166 int64_t beginTime = data.ReadInt64(); in HandleQueryBundleStatsInfos() local
168 ErrCode errCode = QueryBundleStatsInfos(result, intervalType, beginTime, endTime); in HandleQueryBundleStatsInfos()
198 int64_t beginTime = data.ReadInt64(); in HandleQueryCurrentBundleEvents() local
200 ErrCode errCode = QueryCurrentBundleEvents(result, beginTime, endTime); in HandleQueryCurrentBundleEvents()
277 int64_t beginTime = data.ReadInt64(); in HandleQueryDeviceEventStats() local
280 ErrCode errCode = QueryDeviceEventStats(beginTime, endTim in HandleQueryDeviceEventStats()
301 int64_t beginTime = data.ReadInt64(); HandleQueryNotificationEventStats() local
[all...]
H A Dbundle_active_service.cpp313 const int32_t intervalType, const int64_t beginTime, const int64_t endTime, int32_t userId) in QueryBundleStatsInfoByInterval()
330 PackageStats, userId, convertedIntervalType, beginTime, endTime, ""); in QueryBundleStatsInfoByInterval()
336 const int64_t beginTime, const int64_t endTime, int32_t userId) in QueryBundleEvents()
350 ret = bundleActiveCore_->QueryBundleEvents(bundleActiveEvents, userId, beginTime, endTime, ""); in QueryBundleEvents()
385 const int32_t intervalType, const int64_t beginTime, const int64_t endTime) in QueryBundleStatsInfos()
402 beginTime, endTime, bundleName); in QueryBundleStatsInfos()
409 const int64_t beginTime, const int64_t endTime) in QueryCurrentBundleEvents()
427 ret = bundleActiveCore_->QueryBundleEvents(bundleActiveEvents, userId, beginTime, endTime, bundleName); in QueryCurrentBundleEvents()
581 ErrCode BundleActiveService::QueryDeviceEventStats(int64_t beginTime, int64_t endTime, in QueryDeviceEventStats() argument
596 errCode = bundleActiveCore_->QueryDeviceEventStats(beginTime, endTim in QueryDeviceEventStats()
312 QueryBundleStatsInfoByInterval(std::vector<BundleActivePackageStats>& PackageStats, const int32_t intervalType, const int64_t beginTime, const int64_t endTime, int32_t userId) QueryBundleStatsInfoByInterval() argument
335 QueryBundleEvents(std::vector<BundleActiveEvent>& bundleActiveEvents, const int64_t beginTime, const int64_t endTime, int32_t userId) QueryBundleEvents() argument
384 QueryBundleStatsInfos(std::vector<BundleActivePackageStats>& bundleActivePackageStats, const int32_t intervalType, const int64_t beginTime, const int64_t endTime) QueryBundleStatsInfos() argument
408 QueryCurrentBundleEvents(std::vector<BundleActiveEvent>& bundleActiveEvents, const int64_t beginTime, const int64_t endTime) QueryCurrentBundleEvents() argument
602 QueryNotificationEventStats(int64_t beginTime, int64_t endTime, std::vector<BundleActiveEventStats>& eventStats, int32_t userId) QueryNotificationEventStats() argument
727 int64_t beginTime = std::stoll(dumpOption[2]); ShellDump() local
740 int64_t beginTime = std::stoll(dumpOption[3]); ShellDump() local
[all...]
/foundation/resourceschedule/ffrt/src/queue/
H A Deventhandler_adapter_queue.h37 HistoryTask(uint64_t beginTime, QueueTask* task) in HistoryTask()
39 beginTime_ = beginTime; in HistoryTask()
/foundation/deviceprofile/device_info_manager/services/core/src/deviceprofilemanager/listener/
H A Dkv_sync_completed_listener.cpp88 int64_t beginTime = GetTickCount(); in NotifySyncCompleted() local
101 HILOGI("spend %{public}" PRId64 " ms", endTime - beginTime); in NotifySyncCompleted()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/relational/
H A Dsqlite_single_ver_relational_continue_token.cpp65 timeRange_.beginTime = nextBeginTime; in SetNextBeginTime()
87 return timeRange_.beginTime >= timeRange_.endTime && timeRange_.deleteBeginTime >= timeRange_.deleteEndTime; in IsGetAllDataFinished()
101 return helper.GetRelationalQueryStatement(db, timeRange_.beginTime, timeRange_.endTime, fieldNames_, stmt); in GetQuerySyncStatement()

Completed in 17 milliseconds

1234