/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/data/ |
D | link.cpp | 28 Link::Link(const std::string &url, const std::string &description) in Link() argument 30 if (url.length() >= MAX_TEXT_LEN || description.length() >= MAX_TEXT_LEN) { in Link() 35 this->description_ = description; in Link() 61 void Link::SetDescription(const std::string &description) in SetDescription() argument 63 if (description.length() >= MAX_TEXT_LEN) { in SetDescription() 66 this->description_ = description; in SetDescription()
|
/foundation/multimedia/av_session/services/session/server/test/ |
D | hw_cast_stream_player_test.cpp | 73 std::shared_ptr<AVMediaDescription> description = std::make_shared<AVMediaDescription>(); in CreateAVMediaDescription() local 74 description->Reset(); in CreateAVMediaDescription() 75 description->SetMediaId("123"); in CreateAVMediaDescription() 76 description->SetTitle("Title"); in CreateAVMediaDescription() 77 description->SetSubtitle("SubTitle"); in CreateAVMediaDescription() 78 description->SetDescription("This is music description"); in CreateAVMediaDescription() 79 description->SetIcon(nullptr); in CreateAVMediaDescription() 80 description->SetIconUri("xxxxx"); in CreateAVMediaDescription() 81 description->SetExtras(nullptr); in CreateAVMediaDescription() 82 return description; in CreateAVMediaDescription() [all …]
|
/foundation/ability/ability_base/test/unittest/want/ |
D | extra_params_test.cpp | 85 string description; variable 87 extraParams.SetDescription(description); 89 EXPECT_EQ(result, description); 106 string description; variable 107 extraParams.SetDescription(description); 126 string description = "Description"; variable 128 ExtraParams extraParams(devType, targetBundleName, description, jsonParams);
|
/foundation/filemanagement/storage_service/services/storage_manager/innerkits_impl/test/ |
D | volume_external_test.cpp | 48 std::string description = ""; variable 53 volumeexternal.SetDescription(description); 61 EXPECT_EQ(result4, description); 87 std::string description = ""; variable 92 volumeexternal.SetDescription(description); 102 EXPECT_EQ(parcel.ReadString(), description); 127 std::string description = ""; variable 137 parcel.WriteString(description); 147 EXPECT_EQ(result->GetDescription(), description);
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/config/src/model/ |
D | component_config.cpp | 21 SetValue(node[GET_NAME(description)], description); in Marshal() 33 GetValue(node, GET_NAME(description), description); in Unmarshal()
|
/foundation/bundlemanager/bundle_framework/test/benchmarktest/ability_info_test/ |
D | ability_info_test.cpp | 35 info.description = "dataability_description"; in BenchmarkTestForReadFromParcel() 53 info.applicationInfo.description = "dataability_description"; in BenchmarkTestForReadFromParcel() 73 info.description = "dataability_description"; in BenchmarkTestForMarshalling() 91 info.applicationInfo.description = "dataability_description"; in BenchmarkTestForMarshalling() 110 info.description = "dataability_description"; in BenchmarkTestForUnmarshalling() 128 info.applicationInfo.description = "dataability_description"; in BenchmarkTestForUnmarshalling()
|
/foundation/bundlemanager/bundle_framework/test/benchmarktest/extension_ability_info_test/ |
D | extension_ability_info_test.cpp | 37 info.description = "dataability_description"; in BenchmarkTestForReadFromParcel() 47 info.applicationInfo.description = "dataability_description"; in BenchmarkTestForReadFromParcel() 75 info.description = "dataability_description"; in BenchmarkTestForMarshalling() 85 info.applicationInfo.description = "dataability_description"; in BenchmarkTestForMarshalling() 112 info.description = "dataability_description"; in BenchmarkTestForUnmarshalling() 122 info.applicationInfo.description = "dataability_description"; in BenchmarkTestForUnmarshalling()
|
/foundation/ability/ability_base/interfaces/kits/native/want/src/ |
D | extra_params.cpp | 95 …rams(const std::vector<string> &devType, const string &targetBundleName, const string &description, in ExtraParams() argument 100 description_ = description; in ExtraParams() 189 void ExtraParams::SetDescription(const string &description) in SetDescription() argument 191 description_ = description; in SetDescription() 249 string description = Str16ToStr8(parcel.ReadString16()); in Unmarshalling() local 254 … *extraParams = new (std::nothrow) ExtraParams(devtype, targetBundleName, description, jsonParams); in Unmarshalling()
|
/foundation/bundlemanager/bundle_framework/test/benchmarktest/bundle_info_test/ |
D | bundle_info_test.cpp | 43 info.description = "dataability_description"; in BenchmarkTestForReadFromParcel() 48 info.applicationInfo.description = "dataability_description"; in BenchmarkTestForReadFromParcel() 82 info.description = "dataability_description"; in BenchmarkTestForMarshalling() 87 info.applicationInfo.description = "dataability_description"; in BenchmarkTestForMarshalling() 120 info.description = "dataability_description"; in BenchmarkTestForUnmarshalling() 125 info.applicationInfo.description = "dataability_description"; in BenchmarkTestForUnmarshalling()
|
/foundation/multimedia/av_session/frameworks/native/session/test/unittest/ |
D | avcast_controller_test.cpp | 68 .description = "test", 379 std::shared_ptr<AVMediaDescription> description = std::make_shared<AVMediaDescription>(); variable 380 description->SetMediaId("123"); 381 description->SetTitle("Title"); 382 description->SetSubtitle("Subtitle"); 383 description->SetDescription("This is music description"); 384 description->SetIcon(nullptr); 385 description->SetIconUri("xxxxx"); 386 description->SetExtras(nullptr); 387 description->SetMediaUri("Media url"); [all …]
|
/foundation/bundlemanager/bundle_framework/test/benchmarktest/form_info_test/ |
D | form_info_test.cpp | 38 info.description = "dataability_description"; in BenchmarkTestForReadFromParcel() 60 info.description = "dataability_description"; in BenchmarkTestForMarshalling() 81 info.description = "dataability_description"; in BenchmarkTestForUnmarshalling() 103 info.description = "dataability_description"; in BenchmarkTestForIsValid()
|
/foundation/bundlemanager/bundle_framework_lite/frameworks/bundle_lite/src/ |
D | module_info_utils.cpp | 29 SetModuleInfoDescription(des, src.description); in CopyModuleInfo() 60 AdapterFree(moduleInfo->description); in ClearModuleInfo() 90 bool ModuleInfoUtils::SetModuleInfoDescription(ModuleInfo *moduleInfo, const char *description) in SetModuleInfoDescription() argument 92 if (moduleInfo == nullptr || description == nullptr) { in SetModuleInfoDescription() 96 AdapterFree(moduleInfo->description); in SetModuleInfoDescription() 97 moduleInfo->description = Utils::Strdup(description); in SetModuleInfoDescription() 98 return moduleInfo->description != nullptr; in SetModuleInfoDescription()
|
D | ability_info_utils.cpp | 34 SetAbilityInfoDescription(des, src.description); in CopyAbilityInfo() 90 bool AbilityInfoUtils::SetAbilityInfoDescription(AbilityInfo *abilityInfo, const char *description) in SetAbilityInfoDescription() argument 92 if (abilityInfo == nullptr || description == nullptr) { in SetAbilityInfoDescription() 96 AdapterFree(abilityInfo->description); in SetAbilityInfoDescription() 97 abilityInfo->description = Utils::Strdup(description); in SetAbilityInfoDescription() 98 return abilityInfo->description != nullptr; in SetAbilityInfoDescription()
|
/foundation/distributeddatamgr/pasteboard/services/load/src/ |
D | config.cpp | 20 SetValue(node[GET_NAME(description)], description); in Marshal() 30 GetValue(node, GET_NAME(description), description); in Unmarshal()
|
/foundation/bundlemanager/bundle_framework/test/benchmarktest/permission_def_test/ |
D | permission_def_test.cpp | 35 info.description = "dataability_description"; in BenchmarkTestForReadFromParcel() 54 info.description = "dataability_description"; in BenchmarkTestForMarshalling() 72 info.description = "dataability_description"; in BenchmarkTestForUnmarshalling()
|
/foundation/filemanagement/storage_service/services/storage_daemon/include/libfscrypt/ |
D | key_control.h | 55 key_serial_t KeyCtrlAddKey(const char *type, const char *description, 57 key_serial_t KeyCtrlAddKeyEx(const char *type, const char *description, 59 long KeyCtrlSearch(key_serial_t ringId, const char *type, const char *description,
|
/foundation/filemanagement/storage_service/services/storage_daemon/libfscrypt/src/ |
D | key_control.c | 39 key_serial_t KeyCtrlAddKey(const char *type, const char *description, in KeyCtrlAddKey() argument 42 return syscall(__NR_add_key, type, description, NULL, 0, ringId); in KeyCtrlAddKey() 45 key_serial_t KeyCtrlAddKeyEx(const char *type, const char *description, in KeyCtrlAddKeyEx() argument 48 return syscall(__NR_add_key, type, description, in KeyCtrlAddKeyEx() 53 long KeyCtrlSearch(key_serial_t ringId, const char *type, const char *description, in KeyCtrlSearch() argument 57 description, destRingId); in KeyCtrlSearch()
|
/foundation/arkui/ace_engine_lite/frameworks/src/core/modules/presets/ |
D | profiler_module.cpp | 48 uint16_t description = 0; in StartTracing() local 56 description = (uint16_t)jerry_get_number_value(args[descriptionIndex]); in StartTracing() 59 START_TRACING_WITH_EXTRA_INFO((PerformanceTag)tag, component, description); in StartTracing()
|
/foundation/bundlemanager/bundle_framework/test/benchmarktest/hap_module_info_test/ |
D | hap_module_info_test.cpp | 36 info.description = "dataability_description"; in BenchmarkTestForReadFromParcel() 61 info.description = "dataability_description"; in BenchmarkTestForMarshalling() 85 info.description = "dataability_description"; in BenchmarkTestForUnmarshalling()
|
/foundation/bundlemanager/bundle_framework/test/benchmarktest/application_info_test/ |
D | application_info_test.cpp | 38 info.description = "dataability_description"; in BenchmarkTestForReadFromParcel() 67 info.description = "dataability_description"; in BenchmarkTestForReadMetaDataFromParcel() 96 info.description = "dataability_description"; in BenchmarkTestForMarshalling() 124 info.description = "dataability_description"; in BenchmarkTestForUnmarshalling()
|
/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/ |
D | bundle_res_transform.cpp | 157 char *description = nullptr; in ConvertDesResIdToBundleInfo() local 158 if (GLOBAL_GetValueById(desId, path.c_str(), &description) != 0) { in ConvertDesResIdToBundleInfo() 163 … if (!AbilityInfoUtils::SetAbilityInfoDescription(bundleInfo->abilityInfos + index, description)) { in ConvertDesResIdToBundleInfo() 165 AdapterFree(description); in ConvertDesResIdToBundleInfo() 168 AdapterFree(description); in ConvertDesResIdToBundleInfo()
|
/foundation/distributeddatamgr/udmf/interfaces/innerkits/data/ |
D | link.h | 27 explicit Link(const std::string &url, const std::string &description); 34 void SetDescription(const std::string &description);
|
/foundation/multimedia/media_library/frameworks/innerkitsimpl/medialibrary_data_extension/MediaLibraryExt/entry/src/ohosTest/ |
D | module.json5 | 6 "description": "$string:entry_test_desc", 21 "description": "$string:TestAbility_desc",
|
/foundation/window/window_manager/AppDemo/window/windowExtension/WindowExtension/entry/src/main/ |
D | module.json5 | 21 "description": "$string:entry_desc", 35 "description": "$string:MainAbility_desc", 56 "description": "WindowExtension",
|
/foundation/ability/dmsfwk/services/dtbschedmgr/test/samples/StageManualTestSuite/entry/src/main/ |
D | module.json5 | 21 "description": "$string:entry_desc", 36 "description": "$string:MainAbility_desc", 58 "description": "service",
|