Home
last modified time | relevance | path

Searched refs:CallApp (Results 1 – 15 of 15) sorted by relevance

/external/nos/host/android/hals/authsecret/test/
Dtest.cpp74 EXPECT_CALL(client, CallApp(APP_ID_NUGGET, NUGGET_PARAM_CHANGE_UPDATE_PASSWORD, in TEST()
77 EXPECT_CALL(client, CallApp(APP_ID_NUGGET, NUGGET_PARAM_ENABLE_UPDATE, _, _)) in TEST()
79 EXPECT_CALL(client, CallApp(APP_ID_NUGGET, NUGGET_PARAM_REBOOT, _, _)) in TEST()
91 EXPECT_CALL(client, CallApp(APP_ID_NUGGET, NUGGET_PARAM_CHANGE_UPDATE_PASSWORD, in TEST()
94 EXPECT_CALL(client, CallApp(APP_ID_NUGGET, NUGGET_PARAM_ENABLE_UPDATE, _, _)) in TEST()
96 EXPECT_CALL(client, CallApp(APP_ID_NUGGET, NUGGET_PARAM_REBOOT, _, _)) in TEST()
108 EXPECT_CALL(client, CallApp(APP_ID_NUGGET, NUGGET_PARAM_CHANGE_UPDATE_PASSWORD, _, _)) in TEST()
110 EXPECT_CALL(client, CallApp(APP_ID_NUGGET, NUGGET_PARAM_ENABLE_UPDATE, _, _)) in TEST()
112 EXPECT_CALL(client, CallApp(APP_ID_NUGGET, NUGGET_PARAM_REBOOT, _, _)) in TEST()
136 EXPECT_CALL(client, CallApp(APP_ID_NUGGET, NUGGET_PARAM_CHANGE_UPDATE_PASSWORD, _, _)) in TEST()
[all …]
/external/nos/test/system-test-harness/src/
Dnugget_core_tests.cc56 ASSERT_NO_ERROR(NuggetCoreTest::client->CallApp( in TEST_F()
63 ASSERT_NO_ERROR(NuggetCoreTest::client->CallApp( in TEST_F()
94 ASSERT_NO_ERROR(NuggetCoreTest::client->CallApp( in TEST_F()
113 ASSERT_NO_ERROR(NuggetCoreTest::client->CallApp( in TEST_F()
128 ASSERT_NO_ERROR(NuggetCoreTest::client->CallApp( in TEST_F()
145 ASSERT_NO_ERROR(NuggetCoreTest::client->CallApp( in TEST_F()
160 ASSERT_NO_ERROR(NuggetCoreTest::client->CallApp( in TEST_F()
176 ASSERT_NE(APP_SUCCESS, NuggetCoreTest::client->CallApp( in TEST_F()
190 ASSERT_NE(APP_SUCCESS, NuggetCoreTest::client->CallApp( in TEST_F()
Dutil.cc245 return client->CallApp(APP_ID_PROTOBUF, msg.type, input_buffer, in SendSpi()
/external/nos/test/system-test-harness/tools/
Dnugget_tools.cc68 if (client->CallApp(APP_ID_NUGGET, NUGGET_PARAM_CYCLES_SINCE_BOOT, in CyclesSinceBoot()
105 if (client->CallApp(APP_ID_NUGGET, NUGGET_PARAM_GET_LOW_POWER_STATS, in RebootNugget()
117 if (client->CallApp(APP_ID_NUGGET, NUGGET_PARAM_REBOOT, ignored, in RebootNugget()
126 if (client->CallApp(APP_ID_NUGGET, NUGGET_PARAM_GET_LOW_POWER_STATS, in RebootNugget()
161 if (client->CallApp(APP_ID_NUGGET, NUGGET_PARAM_GET_LOW_POWER_STATS, in WaitForSleep()
175 if (client->CallApp(APP_ID_NUGGET, NUGGET_PARAM_GET_LOW_POWER_STATS, in WaitForSleep()
208 if (client->CallApp(APP_ID_NUGGET, NUGGET_PARAM_GET_LOW_POWER_STATS, in WipeUserData()
218 if (client->CallApp(APP_ID_NUGGET, NUGGET_PARAM_NUKE_FROM_ORBIT, in WipeUserData()
226 if (client->CallApp(APP_ID_NUGGET, NUGGET_PARAM_GET_LOW_POWER_STATS, in WipeUserData()
/external/nos/host/generic/libnos/generator/test/
Dtest.cpp58 EXPECT_CALL(client, CallApp(APP_ID_TEST, 2, _, _)).WillOnce(Return(APP_SUCCESS)); in TEST()
59 EXPECT_CALL(client, CallApp(APP_ID_TEST, 0, _, _)).WillOnce(Return(APP_SUCCESS)); in TEST()
60 EXPECT_CALL(client, CallApp(APP_ID_TEST, 1, _, _)).WillOnce(Return(APP_SUCCESS)); in TEST()
85 EXPECT_CALL(client, CallApp(_, _, DecodesToProtoMessage(request), _)) in TEST()
102 EXPECT_CALL(client, CallApp(_, _, DecodesToProtoMessage(request), Eq(nullptr))) in TEST()
120 EXPECT_CALL(client, CallApp(_, _, _, _)) in TEST()
135 EXPECT_CALL(client, CallApp(_, _, _, _)) in TEST()
148 EXPECT_CALL(client, CallApp(_, _, _, _)).Times(0); in TEST()
/external/nos/host/android/hals/authsecret/
DAuthSecret.cpp92 const uint32_t appStatus = client.CallApp(APP_ID_NUGGET, in TryEnrollCitadelUpdatePassword()
111 const uint32_t appStatus = client.CallApp(APP_ID_NUGGET, NUGGET_PARAM_REBOOT, ignored, nullptr); in RebootCitadel()
129 const uint32_t appStatus = client.CallApp(APP_ID_NUGGET, in TryEnablingCitadelUpdate()
/external/nos/host/android/citadel/validation/
Dcitadel_validation_tool.cpp67 const uint32_t status = client.CallApp(APP_ID_NUGGET, NUGGET_PARAM_READ32, buffer, &buffer); in ReadRegister()
92 const uint32_t status = client.CallApp(APP_ID_NUGGET, NUGGET_PARAM_WRITE32, buffer, nullptr); in WriteRegister()
142 if (client.CallApp(APP_ID_NUGGET, NUGGET_PARAM_CYCLES_SINCE_BOOT, in CyclesSinceBoot()
/external/nos/host/generic/libnos/test/include/nos/
DMockNuggetClient.h33 MOCK_METHOD4(CallApp, uint32_t(uint32_t, uint16_t,
/external/nos/host/generic/libnos/include/nos/
DNuggetClientInterface.h58 virtual uint32_t CallApp(uint32_t appId, uint16_t arg,
DAppClient.h51 return _client.CallApp(_appId, arg, request, response); in Call()
DNuggetClient.h74 uint32_t CallApp(uint32_t appId, uint16_t arg,
/external/nos/host/android/citadel/citadeld/include/nos/
DCitadeldProxyClient.h45 uint32_t CallApp(uint32_t appId, uint16_t arg,
/external/nos/host/android/citadel/citadeld/
DCitadeldProxyClient.cpp54 uint32_t CitadeldProxyClient::CallApp(uint32_t appId, uint16_t arg, in CallApp() function in nos::CitadeldProxyClient
Dmain.cpp70 *appStatus = _client.CallApp(appId, arg, request, response); in callApp()
/external/nos/host/generic/libnos/
DNuggetClient.cpp57 uint32_t NuggetClient::CallApp(uint32_t appId, uint16_t arg, in CallApp() function in nos::NuggetClient