/ohos5.0/base/print/print_fwk/test/unittest/fwk_vendor_manager_test/ |
H A D | vendor_helper_test.cpp | 259 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 D | wantsixth_fuzzer.cpp | 55 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 D | app_control_proxy.h | 79 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 D | app_control_host.h | 36 bool WriteStringVector(const std::vector<std::string> &stringVector, MessageParcel &reply);
|
/ohos5.0/foundation/graphic/graphic_2d/frameworks/opengl_wrapper/src/EGL/ |
H A D | egl_system_layers_manager.cpp | 155 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 D | abilityeventhandler_fuzzer.cpp | 160 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 D | app_control_proxy.cpp | 651 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 D | app_control_host.cpp | 478 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 D | bms_app_control_proxy_test.cpp | 544 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 D | napi_edm_common.h | 86 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 D | vendor_helper.h | 51 bool ConvertStringVectorToStringList(const std::vector<std::string> &stringVector, Print_StringList…
|
/ohos5.0/foundation/ability/dmsfwk/test/fuzztest/distributedwant_fuzzer/ |
H A D | distributedwant_fuzzer.cpp | 168 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 D | ansmanagerstub_fuzzer.cpp | 119 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 D | napi_bluetooth_utils.cpp | 194 …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 D | nfc_napi_common_utils.cpp | 351 …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 D | nfc_napi_common_utils.h | 182 … 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 D | napi_edm_common.cpp | 566 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 D | vendor_helper.cpp | 761 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 D | preferences_impl.cpp | 367 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 D | tls_socket_server_branch_test.cpp | 114 auto stringVector = connection->GetCipherSuite(); variable 115 EXPECT_TRUE(stringVector.empty());
|
/ohos5.0/foundation/communication/bluetooth/frameworks/js/napi/include/ |
H A D | napi_bluetooth_utils.h | 100 …s ConvertStringVectorToJS(napi_env env, napi_value result, std::vector<std::string> &stringVector);
|