Home
last modified time | relevance | path

Searched refs:SetUserCustomInfo (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/ipc/
H A Drecorder_service_stub.h59 int32_t SetUserCustomInfo(Meta &userCustomInfo) override;
117 int32_t SetUserCustomInfo(MessageParcel &data, MessageParcel &reply);
H A Drecorder_service_stub.cpp108 … [this](MessageParcel &data, MessageParcel &reply) { return SetUserCustomInfo(data, reply); }; in FillRecFuncPart1()
363 int32_t RecorderServiceStub::SetUserCustomInfo(Meta &userCustomInfo) in SetUserCustomInfo() function in OHOS::Media::RecorderServiceStub
366 return recorderServer_->SetUserCustomInfo(userCustomInfo); in SetUserCustomInfo()
758 int32_t RecorderServiceStub::SetUserCustomInfo(MessageParcel &data, MessageParcel &reply) in SetUserCustomInfo() function in OHOS::Media::RecorderServiceStub
766 reply.WriteInt32(SetUserCustomInfo(userCustomInfo)); in SetUserCustomInfo()
H A Drecorder_service_proxy.h51 int32_t SetUserCustomInfo(Meta &userCustomInfo) override;
H A Di_standard_recorder_service.h55 virtual int32_t SetUserCustomInfo(Meta &userCustomInfo) = 0;
H A Drecorder_service_proxy.cpp443 int32_t RecorderServiceProxy::SetUserCustomInfo(Meta &userCustomInfo) in SetUserCustomInfo() function in OHOS::Media::RecorderServiceProxy
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/recorder/
H A Drecorder_impl.cpp219 int32_t RecorderImpl::SetUserCustomInfo(Meta &userCustomInfo) in SetUserCustomInfo() function in OHOS::Media::RecorderImpl
222 return recorderService_->SetUserCustomInfo(userCustomInfo); in SetUserCustomInfo()
H A Drecorder_impl.h50 int32_t SetUserCustomInfo(Meta &userCustomInfo) override;
/ohos5.0/foundation/multimedia/player_framework/services/include/
H A Di_recorder_service.h587 virtual int32_t SetUserCustomInfo(Meta &userCustomInfo) = 0;
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/client/
H A Drecorder_client.h54 int32_t SetUserCustomInfo(Meta &userCustomInfo) override;
H A Drecorder_client.cpp279 int32_t RecorderClient::SetUserCustomInfo(Meta &userCustomInfo) in SetUserCustomInfo() function in OHOS::Media::RecorderClient
285 return recorderProxy_->SetUserCustomInfo(userCustomInfo); in SetUserCustomInfo()
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/recorder/test/unittest/include/
H A Drecorder_mock.h146 int32_t SetUserCustomInfo(Meta &userCustomInfo);
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/server/
H A Drecorder_server.h93 int32_t SetUserCustomInfo(Meta &userCustomInfo) override;
H A Drecorder_server.cpp583 int32_t RecorderServer::SetUserCustomInfo(Meta &userCustomInfo) in SetUserCustomInfo() function in OHOS::Media::RecorderServer
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/recorder/test/unittest/src/
H A Drecorder_mock.cpp235 int32_t OHOS::Media::RecorderMock::SetUserCustomInfo(Meta &userCustomInfo) in SetUserCustomInfo() function in OHOS::Media::RecorderMock
238 return recorder_->SetUserCustomInfo(userCustomInfo); in SetUserCustomInfo()
H A Drecorder_unit_test.cpp1523 recorder_->SetUserCustomInfo(customInfo);
1554 recorder_->SetUserCustomInfo(customInfo);
/ohos5.0/foundation/multimedia/player_framework/interfaces/inner_api/native/
H A Drecorder.h868 virtual int32_t SetUserCustomInfo(Meta &userCustomInfo) = 0;
/ohos5.0/foundation/multimedia/player_framework/frameworks/js/avrecorder/
H A Davrecorder_napi.cpp2149 ret = recorder_->SetUserCustomInfo(config->metadata.customInfo); in Configure()