Lines Matching refs:fd
61 void ChkConfig(int32_t fd) in ChkConfig() argument
63 mprintf(fd, "ChkMMIConfig: "); in ChkConfig()
64 mprintf(fd, "DEF_MMI_DATA_ROOT:%s\n", DEF_MMI_DATA_ROOT); in ChkConfig()
65 mprintf(fd, "EXP_CONFIG:%s\n", DEF_EXP_CONFIG); in ChkConfig()
66 mprintf(fd, "EXP_SOPATH:%s\n", DEF_EXP_SOPATH); in ChkConfig()
69 void EventDump::CheckCount(int32_t fd, const std::vector<std::string> &args, int32_t &count) in CheckCount() argument
84 void EventDump::ParseCommand(int32_t fd, const std::vector<std::string> &args) in ParseCommand() argument
88 CheckCount(fd, args, count); in ParseCommand()
91 mprintf(fd, "cmd param number not more than 32\n"); in ParseCommand()
137 DumpEventHelp(fd, args); in ParseCommand()
141 INPUT_DEV_MGR->Dump(fd, args); in ParseCommand()
145 INPUT_DEV_MGR->DumpDeviceList(fd, args); in ParseCommand()
149 WIN_MGR->Dump(fd, args); in ParseCommand()
155 udsServer->Dump(fd, args); in ParseCommand()
162 subscriberHandler->Dump(fd, args); in ParseCommand()
164 mprintf(fd, "Keyboard device does not support"); in ParseCommand()
172 monitorHandler->Dump(fd, args); in ParseCommand()
174 mprintf(fd, "Monitor function does not support"); in ParseCommand()
182 interceptorHandler->Dump(fd, args); in ParseCommand()
184 mprintf(fd, "Interceptor function does not support"); in ParseCommand()
191 filterHandler->Dump(fd, args); in ParseCommand()
196 MouseEventHdr->Dump(fd, args); in ParseCommand()
198 mprintf(fd, "Pointer device does not support"); in ParseCommand()
204 IPointerDrawingManager::GetInstance()->Dump(fd, args); in ParseCommand()
206 mprintf(fd, "Pointer device does not support"); in ParseCommand()
209 TOUCH_DRAWING_MGR->Dump(fd, args); in ParseCommand()
211 mprintf(fd, "Pointer device does not support"); in ParseCommand()
219 keyHandler->Dump(fd, args); in ParseCommand()
221 mprintf(fd, "Combination key does not support"); in ParseCommand()
226 mprintf(fd, "cmd param is error\n"); in ParseCommand()
227 DumpHelp(fd); in ParseCommand()
241 void EventDump::DumpEventHelp(int32_t fd, const std::vector<std::string> &args) in DumpEventHelp() argument
243 DumpHelp(fd); in DumpEventHelp()
246 void EventDump::DumpHelp(int32_t fd) in DumpHelp() argument
248 mprintf(fd, "Usage:\t"); in DumpHelp()
249 mprintf(fd, " -h, --help: dump help\t"); in DumpHelp()
250 mprintf(fd, " -d, --device: dump the device information\t"); in DumpHelp()
251 mprintf(fd, " -l, --devicelist: dump the device list information\t"); in DumpHelp()
252 mprintf(fd, " -w, --windows: dump the windows information\t"); in DumpHelp()
253 mprintf(fd, " -u, --udsserver: dump the uds_server information\t"); in DumpHelp()
254 mprintf(fd, " -o, --monitor: dump the monitor information\t"); in DumpHelp()
255 mprintf(fd, " -s, --subscriber: dump the subscriber information\t"); in DumpHelp()
256 mprintf(fd, " -i, --interceptor: dump the interceptor information\t"); in DumpHelp()
257 mprintf(fd, " -f, --filter: dump the filter information\t"); in DumpHelp()
258 mprintf(fd, " -m, --mouse: dump the mouse information\t"); in DumpHelp()
259 mprintf(fd, " -c, --cursor: dump the cursor draw information\t"); in DumpHelp()
260 mprintf(fd, " -k, --keycommand: dump the key command information\t"); in DumpHelp()