/ohos5.0/foundation/barrierfree/accessibility/interfaces/innerkits/common/include/ |
H A D | accessibility_ability_info.h | 126 inline void SetFilterBundleNames(const std::vector<std::string> &targetBundleNames) in SetFilterBundleNames() argument 128 targetBundleNames_ = targetBundleNames; in SetFilterBundleNames()
|
/ohos5.0/foundation/barrierfree/accessibility/services/aams/test/mock/src/ |
H A D | mock_accessible_ability_channel_proxy.cpp | 151 …cessibleAbilityChannelProxy::SetTargetBundleName(const std::vector<std::string> &targetBundleNames) in SetTargetBundleName() argument 153 (void)targetBundleNames; in SetTargetBundleName()
|
H A D | mock_accessible_ability_connection.cpp | 142 …or AccessibleAbilityChannel::SetTargetBundleName(const std::vector<std::string> &targetBundleNames) in SetTargetBundleName() argument 145 (void)targetBundleNames; in SetTargetBundleName()
|
/ohos5.0/foundation/barrierfree/accessibility/services/aams/test/unittest/ |
H A D | accessible_ability_channel_test.cpp | 446 std::vector<std::string> targetBundleNames; variable 447 EXPECT_EQ(channel_->SetTargetBundleName(targetBundleNames), RET_OK); 466 std::vector<std::string> targetBundleNames; variable 467 EXPECT_EQ(channel->SetTargetBundleName(targetBundleNames), RET_ERR_NO_CONNECTION);
|
H A D | accessible_ability_connection_test.cpp | 620 std::vector<std::string> targetBundleNames; variable 621 targetBundleNames.push_back("target"); 622 connection_->SetAbilityInfoTargetBundleName(targetBundleNames);
|
/ohos5.0/foundation/barrierfree/accessibility/common/interface/src/ |
H A D | accessible_ability_channel_stub.cpp | 412 std::vector<std::string> targetBundleNames; in HandleSetTargetBundleName() local 414 bool verifyResult = ContainerSecurityVerify(data, size, targetBundleNames.max_size()); in HandleSetTargetBundleName() 420 targetBundleNames.emplace_back(temp); in HandleSetTargetBundleName() 422 RetError result = SetTargetBundleName(targetBundleNames); in HandleSetTargetBundleName()
|
H A D | accessible_ability_channel_proxy.cpp | 540 …cessibleAbilityChannelProxy::SetTargetBundleName(const std::vector<std::string> &targetBundleNames) in SetTargetBundleName() argument 551 if (!data.WriteInt32(targetBundleNames.size())) { in SetTargetBundleName() 552 … HILOG_ERROR("targetBundleNames.size() write error: %{public}zu, ", targetBundleNames.size()); in SetTargetBundleName() 555 for (auto &targetBundleName : targetBundleNames) { in SetTargetBundleName()
|
/ohos5.0/foundation/barrierfree/accessibility/frameworks/aafwk/test/mock/src/ |
H A D | mock_accessible_ability_channel_proxy.cpp | 165 …cessibleAbilityChannelProxy::SetTargetBundleName(const std::vector<std::string> &targetBundleNames) in SetTargetBundleName() argument 168 (void)targetBundleNames; in SetTargetBundleName()
|
H A D | mock_accessible_ability_client_impl.cpp | 262 …AccessibleAbilityClientImpl::SetTargetBundleName(const std::vector<std::string> &targetBundleNames) in SetTargetBundleName() argument 265 (void)targetBundleNames; in SetTargetBundleName()
|
/ohos5.0/foundation/barrierfree/accessibility/interfaces/kits/napi/accessibility_extension_module_loader/src/ |
H A D | napi_accessibility_extension_context.cpp | 236 std::vector<std::string> targetBundleNames; in OnSetTargetBundleName() local 238 if (ConvertJSToStringVec(env, info.argv[PARAM0], targetBundleNames)) { in OnSetTargetBundleName() 239 HILOG_INFO("targetBundleNames's size = %{public}zu", targetBundleNames.size()); in OnSetTargetBundleName() 253 return SetTargetBundleNameCompleteTask(env, targetBundleNames, info); in OnSetTargetBundleName() 256 …api_value SetTargetBundleNameCompleteTask(napi_env env, std::vector<std::string> targetBundleNames, in SetTargetBundleNameCompleteTask() argument 260 NapiAsyncTask::ExecuteCallback execute = [weak = context_, targetBundleNames, ret] () { in SetTargetBundleNameCompleteTask() 269 *ret = context->SetTargetBundleName(targetBundleNames); in SetTargetBundleNameCompleteTask()
|
H A D | accessibility_extension_context.cpp | 169 …cessibilityExtensionContext::SetTargetBundleName(const std::vector<std::string> &targetBundleNames) in SetTargetBundleName() argument 177 return aaClient->SetTargetBundleName(targetBundleNames); in SetTargetBundleName()
|
/ohos5.0/foundation/barrierfree/accessibility/frameworks/aafwk/test/unittest/ |
H A D | accessible_ability_channel_client_test.cpp | 421 std::vector<std::string> targetBundleNames; variable 422 EXPECT_EQ(client->SetTargetBundleName(targetBundleNames), RET_ERR_SAMGR); 435 std::vector<std::string> targetBundleNames; variable 436 EXPECT_EQ(instance_->SetTargetBundleName(targetBundleNames), RET_OK);
|
H A D | accessibility_ui_test_ability_impl_test.cpp | 759 std::vector<std::string> targetBundleNames; variable 760 EXPECT_EQ(instance_->SetTargetBundleName(targetBundleNames), RET_ERR_NULLPTR); 779 std::vector<std::string> targetBundleNames; variable 780 EXPECT_EQ(instance_->SetTargetBundleName(targetBundleNames), RET_OK);
|
/ohos5.0/foundation/barrierfree/accessibility/services/aams/src/ |
H A D | accessibility_dumper.cpp | 237 … std::vector<std::string> targetBundleNames = accessibilityAbilityInfo.GetFilterBundleNames(); in DumpAccessibilityClientInfo() local 238 if (targetBundleNames.empty()) { in DumpAccessibilityClientInfo() 242 for (const auto &targetBundleName : targetBundleNames) { in DumpAccessibilityClientInfo()
|
H A D | accessible_ability_connection.cpp | 162 …bilityConnection::SetAbilityInfoTargetBundleName(const std::vector<std::string> &targetBundleNames) in SetAbilityInfoTargetBundleName() argument 165 abilityInfo_.SetFilterBundleNames(targetBundleNames); in SetAbilityInfoTargetBundleName()
|
/ohos5.0/foundation/barrierfree/accessibility/frameworks/aafwk/src/ |
H A D | accessibility_ui_test_ability_impl.cpp | 266 …essibilityUITestAbilityImpl::SetTargetBundleName(const std::vector<std::string> &targetBundleNames) in SetTargetBundleName() argument 274 return aaClient->SetTargetBundleName(targetBundleNames); in SetTargetBundleName()
|
/ohos5.0/foundation/barrierfree/accessibility/interfaces/kits/napi/accessibility_extension_module_loader/include/ |
H A D | accessibility_extension_context.h | 157 RetError SetTargetBundleName(const std::vector<std::string> &targetBundleNames);
|
/ohos5.0/foundation/barrierfree/accessibility/common/interface/include/ |
H A D | i_accessible_ability_channel.h | 166 virtual RetError SetTargetBundleName(const std::vector<std::string> &targetBundleNames) = 0;
|
H A D | accessible_ability_channel_proxy.h | 171 … virtual RetError SetTargetBundleName(const std::vector<std::string> &targetBundleNames) override;
|
/ohos5.0/foundation/barrierfree/accessibility/services/aams/include/ |
H A D | accessible_ability_connection.h | 49 void SetAbilityInfoTargetBundleName(const std::vector<std::string> &targetBundleNames);
|
/ohos5.0/foundation/barrierfree/accessibility/frameworks/aafwk/include/ |
H A D | accessible_ability_channel_client.h | 178 RetError SetTargetBundleName(const std::vector<std::string> &targetBundleNames);
|
/ohos5.0/foundation/barrierfree/accessibility/frameworks/aafwk/test/mock/include/ |
H A D | mock_accessible_ability_channel_proxy.h | 53 MOCK_METHOD1(SetTargetBundleName, RetError(const std::vector<std::string> &targetBundleNames));
|
H A D | mock_accessible_ability_channel_stub.h | 55 MOCK_METHOD1(SetTargetBundleName, RetError(const std::vector<std::string> &targetBundleNames));
|
/ohos5.0/foundation/barrierfree/accessibility/interfaces/kits/js/ |
H A D | @ohos.accessibility.d.ts | 539 readonly targetBundleNames: Array<string>;
|
/ohos5.0/foundation/barrierfree/accessibility/interfaces/innerkits/aafwk/include/ |
H A D | accessibility_ui_test_ability.h | 224 virtual RetError SetTargetBundleName(const std::vector<std::string> &targetBundleNames) = 0;
|