Searched refs:g_AppAccountSubscribers (Results 1 – 3 of 3) sorted by relevance
48 std::map<AppAccountManager *, std::vector<AsyncContextForSubscribe *>> g_AppAccountSubscribers; variable65 for (auto objectInfoTmp : g_AppAccountSubscribers) { in UvQueueWorkOnAppAccountsChanged()867 for (auto subscriberInstance : g_AppAccountSubscribers) { in GetSubscriberByUnsubscribe()943 …NT_LOGD("Erase before g_AppAccountSubscribers.size = %{public}zu", g_AppAccountSubscribers.size()); in UnsubscribeCallbackCompletedCB()945 auto subscribe = g_AppAccountSubscribers.find(asyncContextForOff->appAccountManager); in UnsubscribeCallbackCompletedCB()946 if (subscribe != g_AppAccountSubscribers.end()) { in UnsubscribeCallbackCompletedCB()950 g_AppAccountSubscribers.erase(subscribe); in UnsubscribeCallbackCompletedCB()952 …COUNT_LOGD("Erase end g_AppAccountSubscribers.size = %{public}zu", g_AppAccountSubscribers.size()); in UnsubscribeCallbackCompletedCB()
1640 auto subscribe = g_AppAccountSubscribers.find(context->appAccountManager); in IsExitSubscribe()1641 if (subscribe == g_AppAccountSubscribers.end()) { in IsExitSubscribe()1685 g_AppAccountSubscribers[context->appAccountManager].emplace_back(context.get()); in Subscribe()1693 auto subscribe = g_AppAccountSubscribers.find(context->appAccountManager); in UnsubscribeSync()1694 if (subscribe == g_AppAccountSubscribers.end()) { in UnsubscribeSync()1714 g_AppAccountSubscribers.erase(subscribe); in UnsubscribeSync()
52 …ern std::map<AppAccountManager *, std::vector<AsyncContextForSubscribe *>> g_AppAccountSubscribers;