Home
last modified time | relevance | path

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

/ohos5.0/base/print/print_fwk/test/unittest/fwk_vendor_manager_test/
H A Dvendor_helper_test.cpp259 std::vector<std::string> stringVector; variable
261 EXPECT_FALSE(ConvertStringVectorToStringList(stringVector, list));
262 stringVector.push_back("test");
263 EXPECT_TRUE(ConvertStringVectorToStringList(stringVector, list));
264 EXPECT_EQ(list.count, stringVector.size());
/ohos5.0/foundation/ability/ability_base/test/fuzztest/wantsixth_fuzzer/
H A Dwantsixth_fuzzer.cpp55 std::vector<std::string> stringVector; in DoSomethingInterestingWithMyAPI() local
56 want->SetParam(key, stringVector); in DoSomethingInterestingWithMyAPI()
/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/include/app_control/
H A Dapp_control_proxy.h79 bool WriteParcelableVector(const std::vector<std::string> &stringVector, MessageParcel &data);
84 bool WriteStringVector(const std::vector<std::string> &stringVector, MessageParcel &data);
86 … AppControlManagerInterfaceCode code, MessageParcel &data, std::vector<std::string> &stringVector);
H A Dapp_control_host.h36 bool WriteStringVector(const std::vector<std::string> &stringVector, MessageParcel &reply);
/ohos5.0/foundation/graphic/graphic_2d/frameworks/opengl_wrapper/src/EGL/
H A Degl_system_layers_manager.cpp155 std::vector<std::string> stringVector{}; in GetStringVectorFromJson() local
159 stringVector.push_back(i.asString()); in GetStringVectorFromJson()
165 return stringVector; in GetStringVectorFromJson()
/ohos5.0/foundation/ability/ability_runtime/test/fuzztest/abilityeventhandler_fuzzer/
H A Dabilityeventhandler_fuzzer.cpp160 std::vector<std::string> stringVector; in DoSomethingInterestingWithMyAPI() local
161 abilitySchedulerProxy->DumpAbilityInfo(stringVector, stringVector); in DoSomethingInterestingWithMyAPI()
/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/app_control/
H A Dapp_control_proxy.cpp651 bool AppControlProxy::WriteStringVector(const std::vector<std::string> &stringVector, MessageParcel… in WriteStringVector() argument
653 if (!data.WriteInt32(stringVector.size())) { in WriteStringVector()
658 for (auto &string : stringVector) { in WriteStringVector()
709 … AppControlManagerInterfaceCode code, MessageParcel &data, std::vector<std::string> &stringVector) in GetParcelableInfos() argument
718 CONTAINER_SECURITY_VERIFY(reply, infoSize, &stringVector); in GetParcelableInfos()
720 stringVector.emplace_back(reply.ReadString()); in GetParcelableInfos()
H A Dapp_control_host.cpp478 bool AppControlHost::WriteStringVector(const std::vector<std::string> &stringVector, MessageParcel … in WriteStringVector() argument
480 if (!reply.WriteInt32(stringVector.size())) { in WriteStringVector()
485 for (auto &string : stringVector) { in WriteStringVector()
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_app_control_proxy_test/
H A Dbms_app_control_proxy_test.cpp544 std::vector<std::string> stringVector; variable
546 auto res = appControlProxy.WriteStringVector(stringVector, data);
561 std::vector<std::string> stringVector; variable
562 auto res = appControlProxy.GetParcelableInfos(code, data, stringVector);
/ohos5.0/base/customization/enterprise_device_management/interfaces/kits/common/include/
H A Dnapi_edm_common.h86 std::vector<std::string> &stringVector);
94 void ConvertStringVectorToJS(napi_env env, const std::vector<std::string> &stringVector, napi_value…
/ohos5.0/base/print/print_fwk/services/print_service/include/
H A Dvendor_helper.h51 bool ConvertStringVectorToStringList(const std::vector<std::string> &stringVector, Print_StringList…
/ohos5.0/foundation/ability/dmsfwk/test/fuzztest/distributedwant_fuzzer/
H A Ddistributedwant_fuzzer.cpp168 std::vector<std::string> stringVector; in DoSomethingInterestingWithMyApiDistributedWant006() local
169 want->SetParam(key, stringVector); in DoSomethingInterestingWithMyApiDistributedWant006()
/ohos5.0/base/notification/distributed_notification_service/test/fuzztest/ansmanagerstub_fuzzer/
H A Dansmanagerstub_fuzzer.cpp119 std::vector<std::string> stringVector { stringData }; in DoSomethingInterestingWithMyAPI() local
120 datas.WriteStringVector(stringVector); in DoSomethingInterestingWithMyAPI()
125 datas.WriteStringVector(stringVector); in DoSomethingInterestingWithMyAPI()
160 datas.WriteStringVector(stringVector); in DoSomethingInterestingWithMyAPI()
/ohos5.0/foundation/communication/bluetooth/frameworks/js/napi/src/common/
H A Dnapi_bluetooth_utils.cpp194 …us ConvertStringVectorToJS(napi_env env, napi_value result, std::vector<std::string>& stringVector) in ConvertStringVectorToJS() argument
196 HILOGI("vector size: %{public}zu", stringVector.size()); in ConvertStringVectorToJS()
199 if (stringVector.empty()) { in ConvertStringVectorToJS()
203 for (auto& str : stringVector) { in ConvertStringVectorToJS()
/ohos5.0/foundation/communication/nfc/frameworks/js/napi/common/
H A Dnfc_napi_common_utils.cpp351 …d ConvertStringVectorToJS(napi_env env, napi_value &result, std::vector<std::string>& stringVector) in ConvertStringVectorToJS() argument
356 if (stringVector.empty()) { in ConvertStringVectorToJS()
361 DebugLog("ConvertStringVectorToJS size is %{public}zu", stringVector.size()); in ConvertStringVectorToJS()
362 for (auto& str : stringVector) { in ConvertStringVectorToJS()
H A Dnfc_napi_common_utils.h182 … ConvertStringVectorToJS(napi_env env, napi_value &result, std::vector<std::string> &stringVector);
/ohos5.0/base/customization/enterprise_device_management/interfaces/kits/common/src/
H A Dnapi_edm_common.cpp566 void ConvertStringVectorToJS(napi_env env, const std::vector<std::string> &stringVector, napi_value… in ConvertStringVectorToJS() argument
568 EDMLOGD("vector size: %{public}zu", stringVector.size()); in ConvertStringVectorToJS()
570 for (const auto &str : stringVector) { in ConvertStringVectorToJS()
/ohos5.0/base/print/print_fwk/services/print_service/src/
H A Dvendor_helper.cpp761 bool ConvertStringVectorToStringList(const std::vector<std::string> &stringVector, Print_StringList… in ConvertStringVectorToStringList() argument
763 size_t count = stringVector.size(); in ConvertStringVectorToStringList()
779 for (auto const &key : stringVector) { in ConvertStringVectorToStringList()
/ohos5.0/foundation/distributeddatamgr/preferences/frameworks/cj/src/
H A Dpreferences_impl.cpp367 auto stringVector = std::get<std::vector<std::string>>(pValue.value_); in NativeValueToCValueType() local
368 v.stringArray = VectorToStringArray(stringVector, code); in NativeValueToCValueType()
/ohos5.0/foundation/communication/netstack/test/unittest/tlssocket/server/
H A Dtls_socket_server_branch_test.cpp114 auto stringVector = connection->GetCipherSuite(); variable
115 EXPECT_TRUE(stringVector.empty());
/ohos5.0/foundation/communication/bluetooth/frameworks/js/napi/include/
H A Dnapi_bluetooth_utils.h100 …s ConvertStringVectorToJS(napi_env env, napi_value result, std::vector<std::string> &stringVector);