/test/testfwk/arkxtest/uitest/test/ |
H A D | frontend_api_handler_test.cpp | 81 FrontendApiServer::Get().Call(call, reply); in TEST_F() 100 server.Call(call, reply); in TEST_F() 105 server.Call(call, reply); in TEST_F() 122 server.Call(call, reply); in TEST_F() 138 server.Call(call, reply); in TEST_F() 153 server.Call(call, reply); in TEST_F() 177 server.Call(call, reply); in TEST_F() 184 server.Call(call, reply); in TEST_F() 213 server.Call(call0, reply0); in TEST_F() 224 server.Call(call in TEST_F() [all...] |
/test/xts/acts/commonlibrary/ark_runtime/ark_runtime_jsvm_test/entry/src/main/cpp/jsvmtest/unittests/ |
H A D | test_wasm.cpp | 187 auto result = jsvm::Call(add, jsvm::Undefined(), {jsvm::Run("1"), jsvm::Run("2")}); in VerifyAddWasmInstance() 287 JSVM_Value result = jsvm::Call(addFunc, jsvm::Undefined(), {one, two}); 393 result = jsvm::Call(testFunc, jsvm::Undefined(), {}); 397 result = jsvm::Call(testFunc, jsvm::Undefined(), {}); 401 result = jsvm::Call(testFunc, jsvm::Undefined(), {}); 408 result = jsvm::Call(testFunc, jsvm::Undefined(), {}); 419 result = jsvm::Call(testFunc, jsvm::Undefined(), {jsvm::Run("1"), jsvm::Run("2")}); 431 result = jsvm::Call(testFunc, jsvm::Undefined(), {jsvm::Run("0")}); 435 result = jsvm::Call(testFunc, jsvm::Undefined(), {jsvm::Run("10")}); 439 result = jsvm::Call(testFun [all...] |
/test/testfwk/arkxtest/uitest/connection/ |
H A D | ipc_transactor.h | 36 virtual void Call(const ApiCallInfo &call, ApiReplyInfo &result) = 0; 48 void Call(const ApiCallInfo &call, ApiReplyInfo &result) override; 63 void Call(const ApiCallInfo &call, ApiReplyInfo &result) override;
|
H A D | ipc_transactor.cpp | 96 Call(call, result); in OnRemoteRequest() 108 void ApiCaller::Call(const ApiCallInfo &call, ApiReplyInfo &result) in Call() function in OHOS::uitest::ApiCaller 136 void ApiCallerProxy::Call(const ApiCallInfo &call, ApiReplyInfo &result) in Call() function in OHOS::uitest::ApiCallerProxy 362 remoteCaller_->Call(call, reply); in Transact()
|
/test/xts/acts/commonlibrary/ark_runtime/ark_runtime_jsvm_test/entry/src/main/cpp/jsvmtest/ |
H A D | jsvm_utils.h | 133 // Call function with normal function with empty argument list 134 JSVM_Value Call(JSVM_Value func); 135 // Call function with normal function with specified argument list 136 JSVM_Value Call(JSVM_Value func, JSVM_Value thisArg, std::initializer_list<JSVM_Value> args); 137 // Call function as constructor with empty argument list
|
H A D | jsvm_utils.cpp | 318 // Call function with normal function with empty argument list 319 JSVM_Value Call(JSVM_Value func) in Call() function 326 // Call function with normal function with specified argument list 327 JSVM_Value Call(JSVM_Value func, JSVM_Value thisArg, std::initializer_list<JSVM_Value> args) in Call() function 344 // Call function as constructor with empty argument list
|
/test/testfwk/arkxtest/uitest/core/ |
H A D | frontend_api_handler.h | 72 void Call(const ApiCallInfo& in, ApiReplyInfo& out) const;
|
H A D | frontend_api_handler.cpp | 376 void FrontendApiServer::Call(const ApiCallInfo &in, ApiReplyInfo &out) const in Call() function in OHOS::uitest::FrontendApiServer 419 FrontendApiServer::Get().Call(in, out); in ApiTransact()
|
/test/testfwk/arkxtest/uitest/server/ |
H A D | server_main.cpp | 233 auto apiHandler = std::bind(&FrontendApiServer::Call, &apiServer, placeholders::_1, placeholders::_2); in StartDaemon()
|
/test/testfwk/arkxtest/uitest/addon/ |
H A D | extension_executor.cpp | 151 server.Call(call, reply);
in CallThroughMessage()
|