Home
last modified time | relevance | path

Searched refs:OnGetProperty (Results 1 – 25 of 26) sorted by relevance

12

/ohos5.0/base/useriam/user_auth_framework/test/unittest/inner_api/src/
H A Dexecutor_callback_service_test.cpp188 int32_t result = service->OnGetProperty(testCondition, testValues);
200 EXPECT_CALL(*testCallback, OnGetProperty(_, _)).Times(1);
201 ON_CALL(*testCallback, OnGetProperty)
210 int32_t result = service->OnGetProperty(testCondition, testValues);
H A Dexecutor_callback_proxy_test.cpp170 EXPECT_EQ(proxy->OnGetProperty(condition, values), SUCCESS);
171 EXPECT_EQ(proxy->OnGetProperty(condition, values), GENERAL_ERROR);
H A Dexecutor_callback_stub_test.cpp147 EXPECT_CALL(*service, OnGetProperty(_, _)).Times(1);
/ohos5.0/base/useriam/user_auth_framework/frameworks/native/client/src/
H A Dexecutor_callback_service.cpp79 int32_t ExecutorCallbackService::OnGetProperty(const Attributes &condition, Attributes &values) in OnGetProperty() function in OHOS::UserIam::UserAuth::ExecutorCallbackService
86 return callback_->OnGetProperty(condition, values); in OnGetProperty()
/ohos5.0/base/useriam/user_auth_framework/interfaces/inner_api/
H A Dco_auth_client_callback.h80 virtual int32_t OnGetProperty(const Attributes &conditions, Attributes &results) = 0;
/ohos5.0/base/useriam/user_auth_framework/frameworks/native/ipc/common_defines/
H A Dexecutor_callback_interface.h37 virtual int32_t OnGetProperty(const Attributes &condition, Attributes &values) = 0;
/ohos5.0/base/useriam/user_auth_framework/test/fuzztest/dummy/
H A Ddummy_executor_callback_interface.h44 int32_t OnGetProperty(const Attributes &condition, Attributes &values) in OnGetProperty() function
/ohos5.0/base/useriam/user_auth_framework/test/unittest/inner_api/mocks/
H A Dmock_executor_callback_service.h34 MOCK_METHOD2(OnGetProperty, int32_t(const Attributes &condition, Attributes &values));
H A Dmock_executor_register_callback.h36 MOCK_METHOD2(OnGetProperty, int32_t(const Attributes &conditions, Attributes &results));
/ohos5.0/base/useriam/user_auth_framework/frameworks/native/client/inc/
H A Dexecutor_callback_service.h36 int32_t OnGetProperty(const Attributes &condition, Attributes &values) override;
/ohos5.0/base/useriam/user_auth_framework/test/unittest/services/mocks/
H A Dmock_executor_callback.h36 MOCK_METHOD2(OnGetProperty, int32_t(const Attributes &condition, Attributes &values));
/ohos5.0/base/useriam/user_auth_framework/frameworks/native/ipc/inc/
H A Dexecutor_callback_proxy.h38 int32_t OnGetProperty(const Attributes &condition, Attributes &values) override;
/ohos5.0/base/useriam/user_auth_framework/test/fuzztest/clients/coauthclient_fuzzer/
H A Dco_auth_client_fuzzer.cpp69 int32_t OnGetProperty(const Attributes &conditions, Attributes &results) in OnGetProperty() function in OHOS::UserIam::UserAuth::__anona86907b80110::DummyExecutorRegisterCallback
211 g_ExecutorCallbackService->OnGetProperty(condition, values); in FuzzExecutorCallbackServiceOnGetProperty()
/ohos5.0/base/useriam/user_auth_framework/test/fuzztest/clients/executorcallbackstub_fuzzer/
H A Dexecutor_callback_stub_fuzzer.cpp73 int32_t OnGetProperty(const Attributes &conditions, Attributes &results) in OnGetProperty() function in OHOS::UserIam::UserAuth::__anon310747860110::DummyExecutorRegisterCallback
/ohos5.0/base/useriam/user_auth_framework/frameworks/native/executors/include/framework/
H A Dframework_executor_callback.h47 int32_t OnGetProperty(const Attributes &conditions, Attributes &results) override;
/ohos5.0/base/useriam/user_auth_framework/test/unittest/executors/
H A Dexecutor_unit_test.cpp912 ret = executorCallback->OnGetProperty(*conditions, *values);
947 ret = executorCallback->OnGetProperty(*conditions, *values);
968 ret = executorCallback->OnGetProperty(*conditions, *values);
989 ret = executorCallback->OnGetProperty(*conditions, *values);
1013 ret = executorCallback->OnGetProperty(*conditions, *values);
1018 ret = executorCallback->OnGetProperty(*conditions, *values);
1036 ret = executorCallback->OnGetProperty(*values, *values);
1056 ret = executorCallback->OnGetProperty(*conditions, attr);
1087 ret = executorCallback->OnGetProperty(*conditions, *values);
/ohos5.0/base/useriam/user_auth_framework/frameworks/native/ipc/src/
H A Dexecutor_callback_stub.cpp161 int32_t result = OnGetProperty(conditions, values); in OnGetPropertyStub()
H A Dexecutor_callback_proxy.cpp159 int32_t ExecutorCallbackProxy::OnGetProperty(const Attributes &condition, Attributes &values) in OnGetProperty() function in OHOS::UserIam::UserAuth::ExecutorCallbackProxy
/ohos5.0/base/useriam/user_auth_framework/
H A DREADME_ZH.md62 | OnGetProperty(conditions : Attributes, results : Attributes) int32_t; | 获取属性信息 |
/ohos5.0/base/useriam/user_auth_framework/services/core/src/
H A Dresource_node_impl.cpp173 return callback_->OnGetProperty(condition, values); in GetProperty()
H A Dremote_executor_proxy.cpp68 int32_t OnGetProperty(const Attributes &conditions, Attributes &results) override in OnGetProperty() function in OHOS::UserIam::UserAuth::RemoteExecutorProxyCallback
/ohos5.0/base/useriam/user_auth_framework/test/fuzztest/services/coauthservice_fuzzer/
H A Dco_auth_service_fuzzer.cpp86 int32_t OnGetProperty(const Attributes &condition, Attributes &values) override in OnGetProperty() function in OHOS::UserIam::CoAuth::__anonce6810ce0110::CoAuthServiceFuzzer
/ohos5.0/base/useriam/user_auth_framework/test/unittest/services/src/
H A Dresource_node_test.cpp155 EXPECT_CALL(*testCallback, OnGetProperty(_, _)).WillRepeatedly(Return(SUCCESS));
/ohos5.0/base/useriam/user_auth_framework/test/fuzztest/services/servicecore_fuzzer/src/
H A Dresource_node_fuzzer.cpp65 int32_t OnGetProperty(const Attributes &condition, Attributes &values) override in OnGetProperty() function in OHOS::UserIam::UserAuth::__anon51a70fc40110::DummyExecutorCallbackInterface
/ohos5.0/base/useriam/user_auth_framework/frameworks/native/executors/src/framework/
H A Dframework_executor_callback.cpp141 int32_t FrameworkExecutorCallback::OnGetProperty(const Attributes &conditions, Attributes &results) in OnGetProperty() function in OHOS::UserIam::UserAuth::FrameworkExecutorCallback

12