Home
last modified time | relevance | path

Searched refs:actionType (Results 1 - 22 of 22) sorted by relevance

/test/ostest/wukong/input_factory/src/
H A Dcomponent_input.cpp241 int actionType = JudgeComponentType(*(elementInfo.get())); in OrderInput() local
242 if (actionType == Accessibility::ACCESSIBILITY_ACTION_INVALID) { in OrderInput()
243 actionType = OHOS::Accessibility::ACCESSIBILITY_ACTION_CLICK; in OrderInput()
246 result = ComponentManager::GetInstance()->ComponentEventInput(*(elementInfo.get()), actionType); in OrderInput()
249 treemanager->SetInputcomponentIndex(actionType); in OrderInput()
289 int actionType = JudgeComponentType(*(componentInfos[index].get())); in RandomInput() local
290 if (actionType == Accessibility::ACCESSIBILITY_ACTION_INVALID) { in RandomInput()
291 actionType = OHOS::Accessibility::ACCESSIBILITY_ACTION_CLICK; in RandomInput()
294 result = ComponentManager::GetInstance()->ComponentEventInput(*(componentInfos[index].get()), actionType); in RandomInput()
297 treemanager->SetInputcomponentIndex(actionType, inde in RandomInput()
338 int actionType = JudgeComponentType(*(componentinfo.get())); FocusInput() local
404 int actionType; JudgeComponentType() local
[all...]
/test/testfwk/arkxtest/uitest/record/
H A Dpointer_info.cpp63 std::string FingerInfo::WriteWindowData(std::string actionType) in WriteWindowData() argument
68 if (actionType == "click" || actionType == "longClick" || actionType == "doubleClick") { in WriteWindowData()
69 sout << actionType << ": " ; in WriteWindowData() local
99 if (actionType == "fling" || actionType == "swipe") { in WriteWindowData()
133 std::string actionType = OP_TYPE[touchOpt]; in WriteWindowData() local
134 sout << actionType << " , " in WriteWindowData()
139 sout << "\t" << "finger" << i << ":" << finger.WriteWindowData(actionType) ; in WriteWindowData()
[all...]
H A Dpointer_info.h39 std::string WriteWindowData(std::string actionType);
H A Dui_record.h127 void WriteEventData(const VelocityTracker &velocityTracker, const std::string &actionType) const;
/test/xts/device_attest/services/core/attest/
H A Dattest_service_challenge.c149 static int32_t SetChallenge(ChallengeResult* challengeResult, ATTEST_ACTION_TYPE actionType) in SetChallenge() argument
160 ret = SendChallMsg(reqMsg, &respMsg, actionType); in SetChallenge()
177 static ChallengeResult* GetChallengeImpl(ATTEST_ACTION_TYPE actionType) in GetChallengeImpl() argument
186 ret = SetChallenge(challengeResult, actionType); in GetChallengeImpl()
199 int32_t GetChallenge(ChallengeResult** challResult, ATTEST_ACTION_TYPE actionType) in GetChallenge() argument
206 ChallengeResult* challengeResult = GetChallengeImpl(actionType); in GetChallenge()
221 challengeResult = GetChallengeImpl(actionType); in GetChallenge()
/test/xts/device_attest_lite/services/core/attest/
H A Dattest_service_challenge.c149 static int32_t SetChallenge(ChallengeResult* challengeResult, ATTEST_ACTION_TYPE actionType) in SetChallenge() argument
160 ret = SendChallMsg(reqMsg, &respMsg, actionType); in SetChallenge()
177 static ChallengeResult* GetChallengeImpl(ATTEST_ACTION_TYPE actionType) in GetChallengeImpl() argument
186 ret = SetChallenge(challengeResult, actionType); in GetChallengeImpl()
199 int32_t GetChallenge(ChallengeResult** challResult, ATTEST_ACTION_TYPE actionType) in GetChallenge() argument
206 ChallengeResult* challengeResult = GetChallengeImpl(actionType); in GetChallenge()
221 challengeResult = GetChallengeImpl(actionType); in GetChallenge()
/test/xts/device_attest/services/core/adapter/
H A Dattest_adapter_mock.c54 int32_t SendChallMsgStub(ATTEST_ACTION_TYPE actionType, char** respMsg) in SendChallMsgStub() argument
56 if (respMsg == NULL || actionType >= ATTEST_ACTION_MAX) { in SendChallMsgStub()
59 const char* root = g_actionJsonStr[actionType]; in SendChallMsgStub()
70 int32_t SendDevAttestStub(ATTEST_ACTION_TYPE actionType, char **respMsg) in SendDevAttestStub() argument
72 if (respMsg == NULL || actionType >= ATTEST_ACTION_MAX) { in SendDevAttestStub()
76 const char* root = g_actionJsonStr[actionType]; in SendDevAttestStub()
/test/xts/device_attest_lite/services/core/adapter/
H A Dattest_adapter_mock.c54 int32_t SendChallMsgStub(ATTEST_ACTION_TYPE actionType, char** respMsg) in SendChallMsgStub() argument
56 if (respMsg == NULL || actionType >= ATTEST_ACTION_MAX) { in SendChallMsgStub()
59 const char* root = g_actionJsonStr[actionType]; in SendChallMsgStub()
70 int32_t SendDevAttestStub(ATTEST_ACTION_TYPE actionType, char **respMsg) in SendDevAttestStub() argument
72 if (respMsg == NULL || actionType >= ATTEST_ACTION_MAX) { in SendDevAttestStub()
76 const char* root = g_actionJsonStr[actionType]; in SendDevAttestStub()
/test/xts/device_attest_lite/services/core/network/
H A Dattest_network.c540 static int32_t BuildCoapBody(const DevicePacket *devData, ATTEST_ACTION_TYPE actionType, char **outBody) in BuildCoapBody() argument
542 if (actionType >= ATTEST_ACTION_MAX) { in BuildCoapBody()
543 ATTEST_LOG_ERROR("[BuildCoapBody] actionType out of range"); in BuildCoapBody()
547 BuildBodyFunc buildBodyFunc = g_buildBodyFunc[actionType]; in BuildCoapBody()
562 static int32_t GenCoapMsg(const DevicePacket *devPacket, ATTEST_ACTION_TYPE actionType, char **reqMsg) in GenCoapMsg() argument
565 if (devPacket == NULL || reqMsg == NULL || actionType >= ATTEST_ACTION_MAX) { in GenCoapMsg()
571 int32_t ret = BuildCoapBody(devPacket, actionType, &msg); in GenCoapMsg()
735 static int32_t TransOptions(const TLSSession* session, const DevicePacket *devPacket, ATTEST_ACTION_TYPE actionType, in TransOptions() argument
748 if (BuildUriOption(g_uriPath[actionType], strlen(g_uriPath[actionType]), optionLis in TransOptions()
791 SendCoapMsg(const TLSSession* session, const DevicePacket* devPacket, const ATTEST_ACTION_TYPE actionType, CoapBuffer* payload) SendCoapMsg() argument
952 SendAttestMsg(const DevicePacket *devPacket, ATTEST_ACTION_TYPE actionType, char **respBody) SendAttestMsg() argument
[all...]
/test/xts/device_attest/services/core/include/adapter/
H A Dattest_adapter_mock.h52 int32_t SendChallMsgStub(ATTEST_ACTION_TYPE actionType, char** respMsg);
54 int32_t SendDevAttestStub(ATTEST_ACTION_TYPE actionType, char** respMsg);
/test/xts/device_attest_lite/services/core/include/adapter/
H A Dattest_adapter_mock.h52 int32_t SendChallMsgStub(ATTEST_ACTION_TYPE actionType, char** respMsg);
54 int32_t SendDevAttestStub(ATTEST_ACTION_TYPE actionType, char** respMsg);
/test/xts/device_attest/services/core/network/
H A Dattest_network.c222 int32_t actionType, int32_t reqContentLength) in BuildSocketInfo()
234 msgHttpPack->reqMethod = g_uriPath[actionType]; in BuildSocketInfo()
800 static int32_t BuildHttpsBody(DevicePacket *devData, ATTEST_ACTION_TYPE actionType, char **outBody) in BuildHttpsBody() argument
802 if (actionType >= ATTEST_ACTION_MAX) { in BuildHttpsBody()
803 ATTEST_LOG_ERROR("[BuildHttpsBody] actionType out of range"); in BuildHttpsBody()
807 BuildBodyFunc buildBodyFunc = g_buildBodyFunc[actionType]; in BuildHttpsBody()
862 static int32_t GenHttpsMsg(DevicePacket *devPacket, ATTEST_ACTION_TYPE actionType, char **reqMsg) in GenHttpsMsg() argument
874 retCode = BuildHttpsBody(devPacket, actionType, &body); in GenHttpsMsg()
879 retCode = BuildHttpsHead(devPacket, strlen(body), actionType, &header); in GenHttpsMsg()
1081 int32_t SendAttestMsg(DevicePacket *devPacket, ATTEST_ACTION_TYPE actionType, cha argument
221 BuildSocketInfo(DevicePacket *devValue, HttpPacket *msgHttpPack, int32_t actionType, int32_t reqContentLength) BuildSocketInfo() argument
[all...]
/test/ostest/wukong/component_event/src/
H A Dtree_manager.cpp295 void TreeManager::SetInputcomponentIndex(int actionType, uint32_t index) in SetInputcomponentIndex() argument
297 DEBUG_LOG_STR("Input: (%d), Input Type: (%d)", index, actionType); in SetInputcomponentIndex()
314 inputComponentList_[index]->AddTypeInputCount(actionType); in SetInputcomponentIndex()
322 inputComponent_->AddTypeInputCount(actionType); in SetInputcomponentIndex()
/test/xts/acts/arkui/ace_ets_xcomponent/entry/src/main/cpp/render/
H A Dplugin_render.cpp268 actions[0].actionType = in FillElementInfo1()
271 actions[1].actionType = in FillElementInfo1()
323 actions[0].actionType = in FillElementInfo2()
326 actions[1].actionType = in FillElementInfo2()
330 actions[second].actionType = in FillElementInfo2()
/test/xts/device_attest/services/core/include/attest/
H A Dattest_service_challenge.h29 int32_t GetChallenge(ChallengeResult** challResult, ATTEST_ACTION_TYPE actionType);
/test/xts/device_attest_lite/services/core/include/attest/
H A Dattest_service_challenge.h29 int32_t GetChallenge(ChallengeResult** challResult, ATTEST_ACTION_TYPE actionType);
/test/xts/device_attest_lite/services/core/include/network/
H A Dattest_network.h67 int32_t SendAttestMsg(const DevicePacket *devValue, ATTEST_ACTION_TYPE actionType, char **respBodyData);
/test/ostest/wukong/common/src/
H A Dcomponent_manager.cpp216 const int actionType) in ComponentEventInput()
221 auto componentRespond = componentMap_[actionType]; in ComponentEventInput()
215 ComponentEventInput(OHOS::Accessibility::AccessibilityElementInfo& elementInfo, const int actionType) ComponentEventInput() argument
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/arkApi/
H A DarkApi.cpp125 auto actionType = OH_ArkUI_GestureEvent_GetActionType(event); in TestArkUIAddApi014()
134 "Manager", "callback actionType: %{public}d, offsetX %{public}f, velocity %{public}f, velocityX %{public}f, velocityY %{public}f", in TestArkUIAddApi014()
135 actionType, offsetX, velocity, velocityX, velocityY); in TestArkUIAddApi014()
/test/ostest/wukong/common/include/
H A Dcomponent_manager.h55 * @param actionType the action type of current component
58 ErrCode ComponentEventInput(OHOS::Accessibility::AccessibilityElementInfo& elementInfo, const int actionType);
/test/xts/device_attest/services/core/include/network/
H A Dattest_network.h103 int32_t SendAttestMsg(DevicePacket *devValue, ATTEST_ACTION_TYPE actionType, char **respBodyData);
/test/ostest/wukong/component_event/include/
H A Dtree_manager.h91 * @param actionType component input type.
93 void SetInputcomponentIndex(int actionType, uint32_t index = INVALIDED_INPUT_INDEX);

Completed in 22 milliseconds