Home
last modified time | relevance | path

Searched refs:customInfo (Results 1 - 17 of 17) sorted by relevance

/foundation/multimedia/player_framework/services/services/avmetadatahelper/ipc/
H A Davmetadatahelper_service_stub.cpp303 std::shared_ptr<Meta> customInfo = std::make_shared<Meta>(); in GetAVMetadata() local
310 auto iter = metadata->Find("customInfo"); in GetAVMetadata()
312 ret &= metadata->GetData("customInfo", customInfo); in GetAVMetadata()
313 ret &= reply.WriteString("customInfo"); in GetAVMetadata()
314 ret &= customInfo->ToParcel(reply); in GetAVMetadata()
316 metadata->Remove("customInfo"); in GetAVMetadata()
H A Davmetadatahelper_service_proxy.cpp154 std::shared_ptr<Meta> customInfo = std::make_shared<Meta>(); in GetAVMetadata() local
165 if (key.compare("customInfo") == 0) { in GetAVMetadata()
166 ret = customInfo->FromParcel(reply); in GetAVMetadata()
168 CHECK_AND_RETURN_RET_LOG(ret == true, metadata, "customInfo FromParcel failed"); in GetAVMetadata()
176 metadata->SetData("customInfo", customInfo); in GetAVMetadata()
/foundation/arkui/ace_engine/frameworks/core/event/
H A Dtouch_event.cpp503 if (!customInfo.empty()) { in Dump()
505 << "customInfo: " << customInfo; in Dump() local
549 if (!customInfo.empty()) { in Dump()
550 json->Put("customInfo", customInfo.c_str()); in Dump()
H A Dtouch_event.h294 std::string customInfo; member
/foundation/multimedia/player_framework/frameworks/js/metadatahelper/
H A Davmetadataextractor_napi.cpp209 napi_value customInfo = nullptr; in ResolveMetadataComplete() local
212 napi_create_object(env, &customInfo); in ResolveMetadataComplete()
232 if (key == "customInfo") { in ResolveMetadataComplete()
239 CHECK_AND_CONTINUE_LOG(CommonNapi::SetPropertyByValueType(env, customInfo, customData, iter->first), in ResolveMetadataComplete()
248 napi_set_named_property(env, result, "customInfo", customInfo); in ResolveMetadataComplete()
/foundation/multimedia/player_framework/frameworks/native/recorder/test/unittest/src/
H A Drecorder_unit_test.cpp1545 Meta customInfo; in HWTEST_F() local
1546 customInfo.SetData("key", "value"); in HWTEST_F()
1547 recorder_->SetUserCustomInfo(customInfo); in HWTEST_F()
1576 Meta customInfo; in HWTEST_F() local
1577 customInfo.SetData("key", "value"); in HWTEST_F()
1578 recorder_->SetUserCustomInfo(customInfo); in HWTEST_F()
/foundation/multimedia/player_framework/services/services/recorder/server/
H A Drecorder_server.h173 Meta customInfo; member
H A Drecorder_server.cpp591 config_.customInfo = userCustomInfo; in SetUserCustomInfo()
/foundation/arkui/ace_engine/frameworks/core/components_ng/gestures/recognizers/
H A Dswipe_recognizer.cpp478 info->customInfo = oss.str(); in Dump()
H A Drotation_recognizer.cpp440 info->customInfo = oss.str(); in Dump()
H A Dlong_press_recognizer.cpp439 info->customInfo = oss.str(); in Dump()
H A Dpinch_recognizer.cpp499 info->customInfo = oss.str(); in Dump()
H A Dclick_recognizer.cpp559 info->customInfo = oss.str(); in Dump()
H A Dpan_recognizer.cpp897 info->customInfo = oss.str(); in Dump()
/foundation/multimedia/player_framework/interfaces/inner_api/native/
H A Drecorder.h430 * @param customInfo Custom parameter key-value map from user
436 Meta customInfo; member
/foundation/multimedia/player_framework/services/engine/histreamer/recorder/
H A Dhirecorder_impl.cpp848 CustomInfo customInfo = static_cast<const CustomInfo&>(recParam); in ConfigureMuxer() local
849 userMeta_ = std::make_shared<Meta>(customInfo.userCustomInfo); in ConfigureMuxer()
/foundation/multimedia/player_framework/frameworks/js/avrecorder/
H A Davrecorder_napi.cpp1984 // get customInfo
1985 if (CommonNapi::CheckhasNamedProperty(env, metadata, "customInfo")) {
1987 CommonNapi::GetPropertyRecord(env, metadata, avMetadata.customInfo, "customInfo") == napi_ok,
1988 (asyncCtx->AVRecorderSignError(MSERR_INVALID_VAL, "GetCustomInfo", "customInfo"), MSERR_INVALID_VAL));
2149 if (!config->metadata.customInfo.Empty()) {
2150 ret = recorder_->SetUserCustomInfo(config->metadata.customInfo);
2151 CHECK_AND_RETURN_RET(ret == MSERR_OK, GetRetInfo(ret, "SetUserCustomInfo", "customInfo"));

Completed in 21 milliseconds