Lines Matching refs:fd

62 void ChkConfig(int32_t fd)
64 mprintf(fd, "ChkMMIConfig: ");
65 mprintf(fd, "DEF_MMI_DATA_ROOT:%s\n", DEF_MMI_DATA_ROOT);
66 mprintf(fd, "EXP_CONFIG:%s\n", DEF_EXP_CONFIG);
67 mprintf(fd, "EXP_SOPATH:%s\n", DEF_EXP_SOPATH);
70 void EventDump::CheckCount(int32_t fd, const std::vector<std::string> &args, int32_t &count)
85 void EventDump::ParseCommand(int32_t fd, const std::vector<std::string> &args)
89 CheckCount(fd, args, count);
92 mprintf(fd, "cmd param number not more than 32\n");
139 DumpEventHelp(fd, args);
143 INPUT_DEV_MGR->Dump(fd, args);
147 INPUT_DEV_MGR->DumpDeviceList(fd, args);
151 WIN_MGR->Dump(fd, args);
157 udsServer->Dump(fd, args);
164 subscriberHandler->Dump(fd, args);
166 mprintf(fd, "Keyboard device does not support");
174 monitorHandler->Dump(fd, args);
176 mprintf(fd, "Monitor function does not support");
184 interceptorHandler->Dump(fd, args);
186 mprintf(fd, "Interceptor function does not support");
193 filterHandler->Dump(fd, args);
198 MouseEventHdr->Dump(fd, args);
200 mprintf(fd, "Pointer device does not support");
206 IPointerDrawingManager::GetInstance()->Dump(fd, args);
208 mprintf(fd, "Pointer device does not support");
211 TOUCH_DRAWING_MGR->Dump(fd, args);
213 mprintf(fd, "Pointer device does not support");
221 keyHandler->Dump(fd, args);
223 mprintf(fd, "Combination key does not support");
228 EventStatistic::Dump(fd, args);
232 mprintf(fd, "cmd param is error\n");
233 DumpHelp(fd);
247 void EventDump::DumpEventHelp(int32_t fd, const std::vector<std::string> &args)
249 DumpHelp(fd);
252 void EventDump::DumpHelp(int32_t fd)
254 mprintf(fd, "Usage:\t");
255 mprintf(fd, " -h, --help: dump help\t");
256 mprintf(fd, " -d, --device: dump the device information\t");
257 mprintf(fd, " -l, --devicelist: dump the device list information\t");
258 mprintf(fd, " -w, --windows: dump the windows information\t");
259 mprintf(fd, " -u, --udsserver: dump the uds_server information\t");
260 mprintf(fd, " -o, --monitor: dump the monitor information\t");
261 mprintf(fd, " -s, --subscriber: dump the subscriber information\t");
262 mprintf(fd, " -i, --interceptor: dump the interceptor information\t");
263 mprintf(fd, " -f, --filter: dump the filter information\t");
264 mprintf(fd, " -m, --mouse: dump the mouse information\t");
265 mprintf(fd, " -c, --cursor: dump the cursor draw information\t");
266 mprintf(fd, " -k, --keycommand: dump the key command information\t");
267 mprintf(fd, " -e, --event: dump the libinput event information\t");