Searched refs:SourceState (Results 1 - 3 of 3) sorted by relevance
/foundation/multimedia/media_library/frameworks/services/media_thumbnail/include/ |
H A D | thumbnail_source_loading.h | 39 const std::unordered_map<SourceState, std::string> STATE_NAME_MAP = {
40 { SourceState::BEGIN, "BEGIN" },
41 { SourceState::LOCAL_THUMB, "LOCAL_THUMB" },
42 { SourceState::LOCAL_LCD, "LOCAL_LCD" },
43 { SourceState::LOCAL_ORIGIN, "LOCAL_ORIGIN" },
44 { SourceState::CLOUD_THUMB, "CLOUD_THUMB" },
45 { SourceState::CLOUD_LCD, "CLOUD_LCD" },
46 { SourceState::CLOUD_ORIGIN, "CLOUD_ORIGIN" },
47 { SourceState::ERROR, "ERROR" },
48 { SourceState [all...] |
H A D | thumbnail_data.h | 26 enum class SourceState : int32_t { class 62 std::unordered_map<SourceState, SourceState> loadingStates;
|
/foundation/multimedia/media_library/frameworks/services/media_thumbnail/src/ |
H A D | thumbnail_source_loading.cpp | 38 const std::unordered_map<SourceState, SourceState> SourceLoader::LOCAL_SOURCE_LOADING_STATES = {
39 { SourceState::BEGIN, SourceState::LOCAL_ORIGIN },
40 { SourceState::LOCAL_ORIGIN, SourceState::FINISH },
43 const std::unordered_map<SourceState, SourceState> SourceLoader::CLOUD_SOURCE_LOADING_STATES = {
44 { SourceState::BEGIN, SourceState [all...] |
Completed in 2 milliseconds