Home
last modified time | relevance | path

Searched refs:focusChangeInfo (Results 1 – 4 of 4) sorted by relevance

/base/inputmethod/imf/services/adapter/focus_monitor/src/
Dfocus_change_listener.cpp22 void FocusChangedListener::OnFocused(const sptr<Rosen::FocusChangeInfo> &focusChangeInfo) in OnFocused() argument
24 if (focusChangeInfo == nullptr || focusHandle_ == nullptr) { in OnFocused()
28 focusHandle_(true, focusChangeInfo->pid_, focusChangeInfo->uid_); in OnFocused()
31 void FocusChangedListener::OnUnfocused(const sptr<Rosen::FocusChangeInfo> &focusChangeInfo) in OnUnfocused() argument
33 if (focusChangeInfo == nullptr || focusHandle_ == nullptr) { in OnUnfocused()
37 focusHandle_(false, focusChangeInfo->pid_, focusChangeInfo->uid_); in OnUnfocused()
/base/inputmethod/imf/services/adapter/focus_monitor/include/
Dfocus_change_listener.h28 void OnFocused(const sptr<Rosen::FocusChangeInfo> &focusChangeInfo) override;
29 void OnUnfocused(const sptr<Rosen::FocusChangeInfo> &focusChangeInfo) override;
/base/inputmethod/imf/test/unittest/cpp_test/common/include/
Dtdd_util.h34 void OnFocused(const sptr<Rosen::FocusChangeInfo> &focusChangeInfo) override;
35 void OnUnfocused(const sptr<Rosen::FocusChangeInfo> &focusChangeInfo) override;
/base/inputmethod/imf/test/unittest/cpp_test/common/src/
Dtdd_util.cpp54 void FocusChangedListenerTestImpl::OnFocused(const sptr<Rosen::FocusChangeInfo> &focusChangeInfo) in OnFocused() argument
57 if (focusChangeInfo->windowId_ == TddUtil::WindowManager::currentWindowId_) { in OnFocused()
64 void FocusChangedListenerTestImpl::OnUnfocused(const sptr<Rosen::FocusChangeInfo> &focusChangeInfo) in OnUnfocused() argument
67 if (focusChangeInfo->windowId_ == TddUtil::WindowManager::currentWindowId_) { in OnUnfocused()