Home
last modified time | relevance | path

Searched refs:appList_ (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/tools/qt/simulator/jsfwk/targets/simulator/mock/vsyncthread/
H A Dvsync_dispatch_manager.cpp31 appList_.append(app); in RegisterVsyncReceiver()
37 appList_.removeOne(app); in UnregisterVsyncReceiver()
44 if (!appList_.isEmpty()) { in DispatchVsyncEvent()
45 for (int i = 0; i < appList_.size(); i++) { in DispatchVsyncEvent()
46 JSThread *app = appList_.at(i); in DispatchVsyncEvent()
H A Dvsync_dispatch_manager.h42 QList<JSThread *> appList_;
/ohos5.0/foundation/resourceschedule/memmgr/services/memmgrservice/src/purgeable_mem_manager/
H A Dpurgeable_mem_manager.cpp49 appList_.clear(); in PurgeableMemManager()
207 if (appList_.find(pid) != appList_.end()) { in RegisterActiveAppsInner()
213 appList_[pid] = appinfo; in RegisterActiveAppsInner()
233 if (appList_.find(pid) == appList_.end()) { in DeregisterActiveAppsInner()
242 appList_.erase(pid); in DeregisterActiveAppsInner()
263 if (appList_.find(pid) == appList_.end()) { in ChangeAppStateInner()
273 appList_[pid].second = state; in ChangeAppStateInner()
328 auto appListIter = appList_.begin(); in ReclaimSubscriberAll()
346 if (appList_.find(pid) == appList_.end()) { in ReclaimSubscriberProc()
705 auto appListIter = appList_.begin(); in DumpSubscribers()
[all …]
/ohos5.0/foundation/resourceschedule/memmgr/services/memmgrservice/include/purgeable_mem_manager/
H A Dpurgeable_mem_manager.h96 std::map<int32_t, std::pair<int32_t, int32_t>> appList_; variable