Lines Matching refs:uiOpArgs

112     bool CheckStepLength(UiOpArgs &uiOpArgs, Point to, Point from, uint32_t stepLength)
121 uiOpArgs.swipeStepsCounts_ = distance / stepLength;
125 int32_t FlingActionInput(int32_t argc, char *argv[], UiDriver &driver, UiOpArgs uiOpArgs)
139 uiOpArgs.swipeVelocityPps_ = atoi(argv[FOUR]);
142 uiOpArgs.swipeStepsCounts_ = atoi(argv[FIVE]);
151 uiOpArgs.swipeVelocityPps_ = (uint32_t)atoi(argv[SEVEN]);
154 if (!CheckStepLength(uiOpArgs, to, from, stepLength)) {
163 CheckSwipeVelocityPps(uiOpArgs);
165 driver.PerformTouch(touch, uiOpArgs, exception_);
169 int32_t SwipeActionInput(int32_t argc, char *argv[], UiDriver &driver, UiOpArgs uiOpArgs)
183 uiOpArgs.swipeVelocityPps_ = (uint32_t)atoi(argv[SEVEN]);
190 CheckSwipeVelocityPps(uiOpArgs);
192 driver.PerformTouch(touch, uiOpArgs, exception_);
196 int32_t KeyEventActionInput(int32_t argc, char *argv[], UiDriver &driver, UiOpArgs uiOpArgs)
200 driver.TriggerKey(Home(), uiOpArgs, exception_);
202 driver.TriggerKey(Back(), uiOpArgs, exception_);
204 driver.TriggerKey(Power(), uiOpArgs, exception_);
211 driver.TriggerKey(keyAction_, uiOpArgs, exception_);
220 driver.TriggerKey(keyAction_, uiOpArgs, exception_);
232 int32_t TextActionInput(int32_t argc, char *argv[], UiDriver &driver, UiOpArgs uiOpArgs)
245 driver.PerformTouch(touch, uiOpArgs, exception_);
252 int32_t ClickActionInput(int32_t argc, char *argv[], UiDriver &driver, UiOpArgs uiOpArgs)
270 driver.PerformTouch(touch, uiOpArgs, exception_);
278 UiOpArgs uiOpArgs;
284 return KeyEventActionInput(argc, argv, driver, uiOpArgs);
286 return FlingActionInput(argc, argv, driver, uiOpArgs);
288 return SwipeActionInput(argc, argv, driver, uiOpArgs);
290 return ClickActionInput(argc, argv, driver, uiOpArgs);
292 return TextActionInput(argc, argv, driver, uiOpArgs);