Home
last modified time | relevance | path

Searched refs:WallpaperServiceIpcInterfaceCode (Results 1 – 6 of 6) sorted by relevance

/base/theme/wallpaper_mgr/services/src/
Dwallpaper_service_stub.cpp35 …memberFuncMap_[WallpaperServiceIpcInterfaceCode::SET_WALLPAPER] = &WallpaperServiceStub::OnSetWall… in WallpaperServiceStub()
36 …memberFuncMap_[WallpaperServiceIpcInterfaceCode::GET_PIXELMAP] = &WallpaperServiceStub::OnGetPixel… in WallpaperServiceStub()
37 … memberFuncMap_[WallpaperServiceIpcInterfaceCode::GET_COLORS] = &WallpaperServiceStub::OnGetColors; in WallpaperServiceStub()
38 …memberFuncMap_[WallpaperServiceIpcInterfaceCode::GET_WALLPAPER_ID] = &WallpaperServiceStub::OnGetW… in WallpaperServiceStub()
39 memberFuncMap_[WallpaperServiceIpcInterfaceCode::GET_FILE] = &WallpaperServiceStub::OnGetFile; in WallpaperServiceStub()
40 memberFuncMap_[WallpaperServiceIpcInterfaceCode::ON] = &WallpaperServiceStub::OnWallpaperOn; in WallpaperServiceStub()
41 memberFuncMap_[WallpaperServiceIpcInterfaceCode::OFF] = &WallpaperServiceStub::OnWallpaperOff; in WallpaperServiceStub()
42 …memberFuncMap_[WallpaperServiceIpcInterfaceCode::IS_CHANGE_PERMITTED] = &WallpaperServiceStub::OnI… in WallpaperServiceStub()
43 memberFuncMap_[WallpaperServiceIpcInterfaceCode::IS_OPERATION_ALLOWED] = in WallpaperServiceStub()
45 …memberFuncMap_[WallpaperServiceIpcInterfaceCode::RESET_WALLPAPER] = &WallpaperServiceStub::OnReset… in WallpaperServiceStub()
[all …]
/base/theme/wallpaper_mgr/frameworks/native/src/
Dwallpaper_service_proxy.cpp29 return GetColorsInner(wallpaperType, WallpaperServiceIpcInterfaceCode::GET_COLORS, colors); in GetColors()
34 return GetColorsInner(wallpaperType, WallpaperServiceIpcInterfaceCode::GET_COLORS_V9, colors); in GetColorsV9()
38 int32_t wallpaperType, WallpaperServiceIpcInterfaceCode code, std::vector<uint64_t> &colors) in GetColorsInner()
83 …Remote()->SendRequest(static_cast<uint32_t>(WallpaperServiceIpcInterfaceCode::GET_FILE), data, rep… in GetFile()
97 …return SetWallpaperInner(fd, wallpaperType, length, WallpaperServiceIpcInterfaceCode::SET_WALLPAPE… in SetWallpaper()
102 …return SetWallpaperInner(fd, wallpaperType, length, WallpaperServiceIpcInterfaceCode::SET_WALLPAPE… in SetWallpaperV9()
106 int32_t fd, int32_t wallpaperType, int32_t length, WallpaperServiceIpcInterfaceCode code) in SetWallpaperInner()
142 return GetPixelMapInner(wallpaperType, WallpaperServiceIpcInterfaceCode::GET_PIXELMAP, fdInfo); in GetPixelMap()
147 … return GetPixelMapInner(wallpaperType, WallpaperServiceIpcInterfaceCode::GET_PIXELMAP_V9, fdInfo); in GetPixelMapV9()
175 …Remote()->SendRequest(static_cast<uint32_t>(WallpaperServiceIpcInterfaceCode::SET_VIDEO), data, re… in SetVideo()
[all …]
/base/theme/wallpaper_mgr/frameworks/native/include/
Dwallpaper_service_proxy.h59 int32_t fd, int32_t wallpaperType, int32_t length, WallpaperServiceIpcInterfaceCode code);
61 … int32_t wallpaperType, WallpaperServiceIpcInterfaceCode code, IWallpaperService::FdInfo &fdInfo);
63 … int32_t wallpaperType, WallpaperServiceIpcInterfaceCode code, std::vector<uint64_t> &colors);
64 ErrorCode ResetWallpaperInner(int wallpaperType, WallpaperServiceIpcInterfaceCode code);
/base/theme/wallpaper_mgr/services/include/
Dwallpaper_service_ipc_interface_code.h22 enum class WallpaperServiceIpcInterfaceCode { enum
Dwallpaper_service_stub.h61 std::map<WallpaperServiceIpcInterfaceCode, WallpaperServiceFunc> memberFuncMap_;
/base/theme/wallpaper_mgr/test/fuzztest/wallpaperservice_fuzzer/
Dwallpaperservice_fuzzer.cpp44 …ConvertToUint32(rawData) % (static_cast<uint32_t>(WallpaperServiceIpcInterfaceCode::SEND_EVENT) + … in FuzzWallpaperService()