Home
last modified time | relevance | path

Searched refs:OnBeginExecute (Results 1 – 25 of 30) sorted by relevance

12

/ohos5.0/base/useriam/user_auth_framework/test/unittest/inner_api/src/
H A Dexecutor_callback_service_test.cpp89 int32_t result = service->OnBeginExecute(testScheduleId, testPublicKey, testCommand);
101 EXPECT_CALL(*testCallback, OnBeginExecute(_, _, _)).Times(1);
102 ON_CALL(*testCallback, OnBeginExecute)
113 int32_t result = service->OnBeginExecute(testScheduleId, testPublicKey, testCommand);
H A Dexecutor_callback_stub_test.cpp88 EXPECT_CALL(*service, OnBeginExecute(_, _, _)).Times(1);
H A Dexecutor_callback_proxy_test.cpp101 EXPECT_EQ(proxy->OnBeginExecute(scheduleId, publicKey, command), SUCCESS);
/ohos5.0/base/useriam/user_auth_framework/frameworks/native/client/src/
H A Dexecutor_callback_service.cpp48 int32_t ExecutorCallbackService::OnBeginExecute(uint64_t scheduleId, const std::vector<uint8_t> &pu… in OnBeginExecute() function in OHOS::UserIam::UserAuth::ExecutorCallbackService
56 return callback_->OnBeginExecute(scheduleId, publicKey, command); in OnBeginExecute()
/ohos5.0/base/useriam/user_auth_framework/test/unittest/services/src/
H A Dschedule_node_test.cpp248 EXPECT_CALL(executor, OnBeginExecute(_, _, _)).WillOnce(Return(1));
283 EXPECT_CALL(executor, OnBeginExecute(_, _, _)).WillOnce(Return(0));
344 EXPECT_CALL(executor, OnBeginExecute(_, _, _)).WillOnce(Return(0));
398 EXPECT_CALL(executor, OnBeginExecute(_, _, _)).WillOnce(Return(0));
447 EXPECT_CALL(executor, OnBeginExecute(_, _, _)).WillOnce(Return(0));
500 EXPECT_CALL(executor, OnBeginExecute(_, _, _)).WillOnce(Return(0));
555 EXPECT_CALL(executor, OnBeginExecute(_, _, _)).WillOnce(Return(0));
/ohos5.0/base/useriam/user_auth_framework/test/unittest/executors/
H A Dexecutor_unit_test.cpp380 ret = executorCallback->OnBeginExecute(testScheduleId, uselessPublicKey, attr);
402 ret = executorCallback->OnBeginExecute(testScheduleId, uselessPublicKey, *commandAttrs);
426 ret = executorCallback->OnBeginExecute(testScheduleId, uselessPublicKey, *commandAttrs);
471 ret = executorCallback->OnBeginExecute(testScheduleId, uselessPublicKey, *commandAttrs);
473 ret = executorCallback->OnBeginExecute(testScheduleId, uselessPublicKey, *commandAttrs);
517 ret = executorCallback->OnBeginExecute(testScheduleId, uselessPublicKey, *commandAttrs);
543 ret = executorCallback->OnBeginExecute(testScheduleId, uselessPublicKey, *commandAttrs);
571 ret = executorCallback->OnBeginExecute(testScheduleId, uselessPublicKey, *commandAttrs);
620 ret = executorCallback->OnBeginExecute(testScheduleId, uselessPublicKey, *commandAttrs);
646 ret = executorCallback->OnBeginExecute(testScheduleId, uselessPublicKey, *commandAttrs);
[all …]
/ohos5.0/base/useriam/user_auth_framework/interfaces/inner_api/
H A Dco_auth_client_callback.h53 virtual int32_t OnBeginExecute(uint64_t scheduleId, const std::vector<uint8_t> &publicKey,
/ohos5.0/base/useriam/user_auth_framework/frameworks/native/ipc/common_defines/
H A Dexecutor_callback_interface.h33 virtual int32_t OnBeginExecute(uint64_t scheduleId, const std::vector<uint8_t> &publicKey,
/ohos5.0/base/useriam/user_auth_framework/test/fuzztest/dummy/
H A Ddummy_executor_callback_interface.h31 int32_t OnBeginExecute(uint64_t scheduleId, const std::vector<uint8_t> &publicKey, in OnBeginExecute() function
/ohos5.0/base/useriam/user_auth_framework/test/unittest/inner_api/mocks/
H A Dmock_executor_callback_service.h30 MOCK_METHOD3(OnBeginExecute, int32_t(uint64_t scheduleId, const std::vector<uint8_t> &publicKey,
H A Dmock_executor_register_callback.h32 MOCK_METHOD3(OnBeginExecute, int32_t(uint64_t scheduleId, const std::vector<uint8_t> &publicKey,
/ohos5.0/base/useriam/user_auth_framework/frameworks/native/client/inc/
H A Dexecutor_callback_service.h32 int32_t OnBeginExecute(uint64_t scheduleId, const std::vector<uint8_t> &publicKey,
/ohos5.0/base/useriam/user_auth_framework/test/unittest/services/mocks/
H A Dmock_executor_callback.h32 MOCK_METHOD3(OnBeginExecute,
H A Dmock_resource_node.h80 return callback.OnBeginExecute(scheduleId, publicKey, command); in CreateWithExecuteIndex()
/ohos5.0/base/useriam/user_auth_framework/frameworks/native/ipc/inc/
H A Dexecutor_callback_proxy.h34 int32_t OnBeginExecute(uint64_t scheduleId, const std::vector<uint8_t> &publicKey,
/ohos5.0/base/useriam/user_auth_framework/test/fuzztest/clients/coauthclient_fuzzer/
H A Dco_auth_client_fuzzer.cpp44 int32_t OnBeginExecute(uint64_t scheduleId, const std::vector<uint8_t> &publicKey, in OnBeginExecute() function in OHOS::UserIam::UserAuth::__anona86907b80110::DummyExecutorRegisterCallback
173 g_ExecutorCallbackService->OnBeginExecute(scheduleId, publicKey, command); in FuzzExecutorCallbackServiceOnBeginExecute()
/ohos5.0/base/useriam/user_auth_framework/services/core/src/
H A Dremote_executor_proxy.cpp48 int32_t OnBeginExecute(uint64_t scheduleId, const std::vector<uint8_t> &publicKey, in OnBeginExecute() function in OHOS::UserIam::UserAuth::RemoteExecutorProxyCallback
53 return callback->OnBeginExecute(scheduleId, publicKey, commandAttrs); in OnBeginExecute()
222 int32_t RemoteExecutorProxy::OnBeginExecute(uint64_t scheduleId, const std::vector<uint8_t> &public… in OnBeginExecute() function in OHOS::UserIam::UserAuth::RemoteExecutorProxy
H A Dresource_node_impl.cpp146 return callback_->OnBeginExecute(scheduleId, publicKey, command); in BeginExecute()
/ohos5.0/base/useriam/user_auth_framework/services/core/inc/
H A Dremote_executor_proxy.h46 …int32_t OnBeginExecute(uint64_t scheduleId, const std::vector<uint8_t> &publicKey, const Attribute…
/ohos5.0/base/useriam/user_auth_framework/test/fuzztest/clients/executorcallbackstub_fuzzer/
H A Dexecutor_callback_stub_fuzzer.cpp48 int32_t OnBeginExecute(uint64_t scheduleId, const std::vector<uint8_t> &publicKey, in OnBeginExecute() function in OHOS::UserIam::UserAuth::__anon310747860110::DummyExecutorRegisterCallback
/ohos5.0/base/useriam/user_auth_framework/frameworks/native/executors/include/framework/
H A Dframework_executor_callback.h42 int32_t OnBeginExecute(uint64_t scheduleId, const std::vector<uint8_t> &publicKey,
/ohos5.0/base/useriam/user_auth_framework/test/fuzztest/services/core/remoteexecutorstub_fuzzer/
H A Dremote_executor_stub_fuzzer.cpp93 remoteExecutorProxy->OnBeginExecute(scheduleId, publicKey, command); in RemoteExecutorProxyFuzzTest()
/ohos5.0/base/useriam/user_auth_framework/frameworks/native/ipc/src/
H A Dexecutor_callback_stub.cpp103 int32_t result = OnBeginExecute(scheduleId, publicKey, commandAttrs); in OnBeginExecuteStub()
H A Dexecutor_callback_proxy.cpp62 int32_t ExecutorCallbackProxy::OnBeginExecute(uint64_t scheduleId, const std::vector<uint8_t> &publ… in OnBeginExecute() function in OHOS::UserIam::UserAuth::ExecutorCallbackProxy
/ohos5.0/base/useriam/user_auth_framework/
H A DREADME_ZH.md59 | OnBeginExecute(scheduleId : uint64_t, publicKey : vector<uint8_t>, commandAttrs : Attributes) int…

12