Searched refs:MediaServiceExtErrCode (Results 1 – 18 of 18) sorted by relevance
/ohos5.0/foundation/multimedia/player_framework/frameworks/js/media/ |
H A D | media_enum_napi.cpp | 49 { "MSERR_OK", MediaServiceExtErrCode::MSERR_EXT_OK }, 50 { "MSERR_NO_MEMORY", MediaServiceExtErrCode::MSERR_EXT_NO_MEMORY }, 51 { "MSERR_OPERATION_NOT_PERMIT", MediaServiceExtErrCode::MSERR_EXT_OPERATE_NOT_PERMIT }, 52 { "MSERR_INVALID_VAL", MediaServiceExtErrCode::MSERR_EXT_INVALID_VAL }, 53 { "MSERR_IO", MediaServiceExtErrCode::MSERR_EXT_IO }, 54 { "MSERR_TIMEOUT", MediaServiceExtErrCode::MSERR_EXT_TIMEOUT }, 55 { "MSERR_UNKNOWN", MediaServiceExtErrCode::MSERR_EXT_UNKNOWN }, 56 { "MSERR_SERVICE_DIED", MediaServiceExtErrCode::MSERR_EXT_SERVICE_DIED }, 57 { "MSERR_INVALID_STATE", MediaServiceExtErrCode::MSERR_EXT_INVALID_STATE }, 58 { "MSERR_UNSUPPORTED", MediaServiceExtErrCode::MSERR_EXT_UNSUPPORT },
|
/ohos5.0/foundation/multimedia/player_framework/interfaces/inner_api/native/ |
H A D | media_errors.h | 27 __attribute__((visibility("default"))) std::string MSExtErrorToString(MediaServiceExtErrCode code); 29 __attribute__((visibility("default"))) MediaServiceExtErrCode MSErrorToExtError(MediaServiceErrCode…
|
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/common/ |
H A D | media_errors.cpp | 90 const std::map<MediaServiceErrCode, MediaServiceExtErrCode> MSERRCODE_TO_EXTERRORCODE = { 146 const std::map<MediaServiceExtErrCode, std::string> MSEXTERRCODE_INFOS = { 368 std::string MSExtErrorToString(MediaServiceExtErrCode code) in MSExtErrorToString() 403 MediaServiceExtErrCode extCode = MSERRCODE_TO_EXTERRORCODE.at(code); in MSErrorToExtErrorString() 424 MediaServiceExtErrCode MSErrorToExtError(MediaServiceErrCode code) in MSErrorToExtError()
|
/ohos5.0/foundation/multimedia/player_framework/frameworks/js/player/ |
H A D | player_callback_napi.h | 39 void SendErrorCallback(MediaServiceExtErrCode errCode, const std::string &info = "error"); 49 MediaServiceExtErrCode errorCode = MSERR_EXT_UNKNOWN;
|
H A D | video_callback_napi.h | 86 …void ClearAsyncWorkWithErrorCode(MediaServiceExtErrCode errorCode, bool error, const std::string &…
|
H A D | video_callback_napi.cpp | 60 void VideoCallbackNapi::ClearAsyncWorkWithErrorCode(MediaServiceExtErrCode extErrCode, in ClearAsyncWorkWithErrorCode() 120 …MediaServiceExtErrCode extErrCode = MSErrorToExtError(static_cast<MediaServiceErrCode>(errorCode)); in OnError()
|
H A D | player_callback_napi.cpp | 62 void PlayerCallbackNapi::SendErrorCallback(MediaServiceExtErrCode errCode, const std::string &info) in SendErrorCallback() 89 MediaServiceExtErrCode err = MSErrorToExtError(static_cast<MediaServiceErrCode>(errorCode)); in OnError()
|
H A D | audio_player_napi.cpp | 859 void AudioPlayerNapi::ErrorCallback(MediaServiceExtErrCode errCode, std::string errMsg) in ErrorCallback()
|
H A D | video_player_napi.cpp | 1338 void VideoPlayerNapi::ErrorCallback(MediaServiceExtErrCode errCode, std::string errMsg) in ErrorCallback()
|
/ohos5.0/foundation/multimedia/player_framework/frameworks/js/recorder/ |
H A D | recorder_callback_napi.cpp | 66 cb->errorMsg = MSExtErrorToString(static_cast<MediaServiceExtErrCode>(errCode)); in SendErrorCallback() 91 MediaServiceExtErrCode err = MSErrorToExtError(static_cast<MediaServiceErrCode>(errCode)); in OnError()
|
H A D | audio_recorder_napi.cpp | 685 void AudioRecorderNapi::ErrorCallback(MediaServiceExtErrCode errCode) in ErrorCallback()
|
H A D | video_recorder_napi.cpp | 831 void VideoRecorderNapi::ErrorCallback(MediaServiceExtErrCode errCode) in ErrorCallback()
|
/ohos5.0/foundation/multimedia/media_foundation/interface/inner_api/common/ |
H A D | media_core.h | 99 enum MediaServiceExtErrCode : int32_t { enum
|
/ohos5.0/foundation/multimedia/player_framework/interfaces/kits/js/ |
H A D | audio_recorder_napi.h | 57 void ErrorCallback(MediaServiceExtErrCode errCode);
|
H A D | audio_player_napi.h | 58 void ErrorCallback(MediaServiceExtErrCode errCode, std::string errMsg = "unknown");
|
H A D | video_player_napi.h | 168 void ErrorCallback(MediaServiceExtErrCode errCode, std::string errMsg = "unknown");
|
H A D | video_recorder_napi.h | 67 void ErrorCallback(MediaServiceExtErrCode errCode);
|
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/player/test/unittest/src/ |
H A D | player_unit_test.cpp | 2601 MSExtErrorToString(static_cast<MediaServiceExtErrCode>(code));
|