Lines Matching defs:key
61 int32_t VirtualKeyboard::Down(int32_t key)
64 if (!SupportKey(key)) {
65 FI_HILOGE("Unsupported key code:%{public}d", key);
70 SendEvent(EV_KEY, key, DOWN_VALUE);
75 int32_t VirtualKeyboard::Up(int32_t key)
78 if (!SupportKey(key)) {
79 FI_HILOGE("Unsupported key code:%{public}d", key);
84 SendEvent(EV_KEY, key, UP_VALUE);