Home
last modified time | relevance | path

Searched refs:QueryAppGroup (Results 1 – 21 of 21) sorted by relevance

/ohos5.0/foundation/resourceschedule/device_usage_statistics/interfaces/kits/bundlestats/napi/include/
H A Dbundle_active_app_group_napi.h28 napi_value QueryAppGroup(napi_env env, napi_callback_info info);
/ohos5.0/foundation/resourceschedule/device_usage_statistics/test/unittest/
H A Ddevice_usage_statistics_mock_test.cpp99 …EXPECT_NE(BundleActiveClient::GetInstance().QueryAppGroup(result, g_defaultBundleName, g_commonUse…
195 …EXPECT_NE(DelayedSingleton<BundleActiveService>::GetInstance()->QueryAppGroup(appGroup, bundleName…
196 …EXPECT_NE(DelayedSingleton<BundleActiveService>::GetInstance()->QueryAppGroup(appGroup, bundleName…
H A Ddevice_usage_statistics_test.cpp288 BundleActiveClient::GetInstance().QueryAppGroup(result, g_defaultBundleName, g_commonUserid);
307 BundleActiveClient::GetInstance().QueryAppGroup(result, g_defaultBundleName, g_commonUserid);
H A Ddevice_usage_statistics_multi_test.cpp291 BundleActiveClient::GetInstance().QueryAppGroup(result, g_defaultBundleName, g_commonUserid); in MultiTestAppGroup()
H A Ddevice_usage_statistics_service_test.cpp1079 EXPECT_NE(groupController->QueryAppGroup(appGroup, bundleName, userId), ERR_OK);
1083 EXPECT_NE(groupController->QueryAppGroup(appGroup, bundleName, userId), ERR_OK);
1134 coreObject->bundleGroupController_->QueryAppGroup(appGroup, bundleName, userId);
/ohos5.0/foundation/resourceschedule/device_usage_statistics/interfaces/innerkits/src/
H A Dbundle_active_client.cpp151 ErrCode BundleActiveClient::QueryAppGroup(int32_t& appGroup, std::string& bundleName, const int32_t… in QueryAppGroup() function in OHOS::DeviceUsageStats::BundleActiveClient
158 return bundleActiveProxy_->QueryAppGroup(appGroup, bundleName, userId); in QueryAppGroup()
H A Dbundle_active_proxy.cpp234 ErrCode BundleActiveProxy::QueryAppGroup(int32_t& appGroup, std::string& bundleName, const int32_t … in QueryAppGroup() function in OHOS::DeviceUsageStats::BundleActiveProxy
/ohos5.0/foundation/resourceschedule/device_usage_statistics/services/common/include/
H A Dibundle_active_service.h109 …virtual ErrCode QueryAppGroup(int32_t& appGroup, std::string& bundleName, const int32_t userId) = …
H A Dbundle_active_core.h176 ErrCode QueryAppGroup(int32_t& appGroup, const std::string& bundleName, const int32_t userId);
H A Dbundle_active_service.h151 … ErrCode QueryAppGroup(int32_t& appGroup, std::string& bundleName, const int32_t userId) override;
/ohos5.0/foundation/resourceschedule/device_usage_statistics/interfaces/innerkits/include/
H A Dbundle_active_client.h134 ErrCode QueryAppGroup(int32_t& appGroup, std::string& bundleName, const int32_t userId = -1);
H A Dbundle_active_proxy.h96 … ErrCode QueryAppGroup(int32_t& appGroup, std::string& bundleName, const int32_t userId) override;
/ohos5.0/foundation/resourceschedule/device_usage_statistics/frameworks/src/
H A Dbundle_active_app_group_napi.cpp120 asyncCallbackInfo->errorCode = BundleActiveClient::GetInstance().QueryAppGroup( in QueryAppGroupAsync()
137 napi_value QueryAppGroup(napi_env env, napi_callback_info info) in QueryAppGroup() function
195 ErrCode errorCode = BundleActiveClient::GetInstance().QueryAppGroup( in QueryAppGroupSync()
H A Dusage_statistics_init.cpp40 DECLARE_NAPI_FUNCTION("queryAppGroup", QueryAppGroup), in UsageStatisticsInit()
H A Dbundle_state_query.cpp178 asyncCallbackInfo->errorCode = BundleActiveClient::GetInstance().QueryAppGroup( in QueryAppGroupAsync()
/ohos5.0/foundation/resourceschedule/device_usage_statistics/services/packagegroup/include/
H A Dbundle_active_group_controller.h83 ErrCode QueryAppGroup(int32_t& appGroup, const std::string& bundleName, const int32_t userId);
/ohos5.0/foundation/resourceschedule/device_usage_statistics/services/common/src/
H A Dbundle_active_service.cpp459 ErrCode BundleActiveService::QueryAppGroup(int32_t& appGroup, std::string& bundleName, int32_t user… in QueryAppGroup() function in OHOS::DeviceUsageStats::BundleActiveService
479 ret = bundleActiveCore_->QueryAppGroup(appGroup, bundleName, userId); in QueryAppGroup()
484 ret = bundleActiveCore_->QueryAppGroup(appGroup, bundleName, userId); in QueryAppGroup()
H A Dbundle_active_stub.cpp245 ErrCode errCode = QueryAppGroup(appGroup, bundleName, userId); in HandleQueryAppGroup()
H A Dbundle_active_core.cpp656 ErrCode BundleActiveCore::QueryAppGroup(int32_t& appGroup, const std::string& bundleName, const int… in QueryAppGroup() function in OHOS::DeviceUsageStats::BundleActiveCore
658 return bundleGroupController_->QueryAppGroup(appGroup, bundleName, userId); in QueryAppGroup()
/ohos5.0/foundation/resourceschedule/device_usage_statistics/services/packagegroup/src/
H A Dbundle_active_group_controller.cpp408 ErrCode BundleActiveGroupController::QueryAppGroup(int32_t& appGroup, in QueryAppGroup() function in OHOS::DeviceUsageStats::BundleActiveGroupController
/ohos5.0/foundation/resourceschedule/work_scheduler/services/native/src/
H A Dwork_status.cpp416 …auto errCode = DeviceUsageStats::BundleActiveClient::GetInstance().QueryAppGroup(group, bundleName… in SetMinInterval()