Lines Matching refs:WallpaperServiceIpcInterfaceCode
35 …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()
46 memberFuncMap_[WallpaperServiceIpcInterfaceCode::REGISTER_CALLBACK] = in WallpaperServiceStub()
48 …memberFuncMap_[WallpaperServiceIpcInterfaceCode::SET_WALLPAPER_V9] = &WallpaperServiceStub::OnSetW… in WallpaperServiceStub()
49 …memberFuncMap_[WallpaperServiceIpcInterfaceCode::GET_PIXELMAP_V9] = &WallpaperServiceStub::OnGetPi… in WallpaperServiceStub()
50 …memberFuncMap_[WallpaperServiceIpcInterfaceCode::GET_COLORS_V9] = &WallpaperServiceStub::OnGetColo… in WallpaperServiceStub()
51 …memberFuncMap_[WallpaperServiceIpcInterfaceCode::RESET_WALLPAPER_V9] = &WallpaperServiceStub::OnRe… in WallpaperServiceStub()
52 memberFuncMap_[WallpaperServiceIpcInterfaceCode::SET_VIDEO] = &WallpaperServiceStub::OnSetVideo; in WallpaperServiceStub()
53 …memberFuncMap_[WallpaperServiceIpcInterfaceCode::SET_CUSTOM] = &WallpaperServiceStub::OnSetCustomW… in WallpaperServiceStub()
54 … memberFuncMap_[WallpaperServiceIpcInterfaceCode::SEND_EVENT] = &WallpaperServiceStub::OnSendEvent; in WallpaperServiceStub()
76 if (code >= static_cast<uint32_t>(WallpaperServiceIpcInterfaceCode::SET_WALLPAPER) && in OnRemoteRequest()
77 code <= static_cast<uint32_t>(WallpaperServiceIpcInterfaceCode::SEND_EVENT)) { in OnRemoteRequest()
78 auto itFunc = memberFuncMap_.find(static_cast<WallpaperServiceIpcInterfaceCode>(code)); in OnRemoteRequest()