Home
last modified time | relevance | path

Searched refs:SetMetaMimeType (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/ipc/
H A Drecorder_service_stub.h48 int32_t SetMetaMimeType(int32_t sourceId, const std::string_view &type) override;
100 int32_t SetMetaMimeType(MessageParcel &data, MessageParcel &reply);
H A Drecorder_service_stub.cpp150 [this](MessageParcel &data, MessageParcel &reply) { return SetMetaMimeType(data, reply); }; in FillRecFuncPart2()
297 int32_t RecorderServiceStub::SetMetaMimeType(int32_t sourceId, const std::string_view &type) in SetMetaMimeType() function in OHOS::Media::RecorderServiceStub
300 return recorderServer_->SetMetaMimeType(sourceId, type); in SetMetaMimeType()
604 int32_t RecorderServiceStub::SetMetaMimeType(MessageParcel &data, MessageParcel &reply) in SetMetaMimeType() function in OHOS::Media::RecorderServiceStub
611 reply.WriteInt32(SetMetaMimeType(sourceId, mimetype)); in SetMetaMimeType()
H A Drecorder_service_proxy.h39 int32_t SetMetaMimeType(int32_t sourceId, const std::string_view &type) override;
H A Di_standard_recorder_service.h38 virtual int32_t SetMetaMimeType(int32_t sourceId, const std::string_view &type) = 0;
H A Drecorder_service_proxy.cpp217 int32_t RecorderServiceProxy::SetMetaMimeType(int32_t sourceId, const std::string_view &type) in SetMetaMimeType() function in OHOS::Media::RecorderServiceProxy
/ohos5.0/foundation/multimedia/player_framework/services/include/
H A Di_recorder_service.h88 virtual int32_t SetMetaMimeType(int32_t sourceId, const std::string_view &type) = 0;
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/client/
H A Drecorder_client.h42 int32_t SetMetaMimeType(int32_t sourceId, const std::string_view &type) override;
H A Drecorder_client.cpp168 int32_t RecorderClient::SetMetaMimeType(int32_t sourceId, const std::string_view &type) in SetMetaMimeType() function in OHOS::Media::RecorderClient
175 return recorderProxy_->SetMetaMimeType(sourceId, type); in SetMetaMimeType()
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/server/
H A Drecorder_server.h80 int32_t SetMetaMimeType(int32_t sourceId, const std::string_view &type) override;
H A Drecorder_server.cpp319 int32_t RecorderServer::SetMetaMimeType(int32_t sourceId, const std::string_view &type) in SetMetaMimeType() function in OHOS::Media::RecorderServer
560 … CHECK_AND_RETURN_RET_LOG(SetMetaMimeType(sourceId, Plugins::MimeType::TIMED_METADATA) == MSERR_OK, in SetMetaConfigs()