Home
last modified time | relevance | path

Searched refs:taskData (Results 1 – 9 of 9) sorted by relevance

/hardware/interfaces/automotive/remoteaccess/hal/default/src/
DRemoteAccessService.cpp121 std::string taskData = std::string(buffer); in RemoteAccessService() local
126 ALOGD("Task for client: %s, data: [%s], latency: %d\n", clientId.c_str(), taskData.c_str(), in RemoteAccessService()
129 mInjectDebugTaskThread = std::thread([this, clientId, taskData, latencyInSec] { in RemoteAccessService()
131 if (auto result = deliverRemoteTaskThroughCallback(clientId, taskData); !result.ok()) { in RemoteAccessService()
133 clientId.c_str(), taskData.c_str(), result.error().message().c_str()); in RemoteAccessService()
137 taskData.c_str()); in RemoteAccessService()
190 std::string_view taskData) { in deliverRemoteTaskThroughCallback() argument
202 callback->onRemoteTaskRequested(clientId, stringToBytes(taskData)); in deliverRemoteTaskThroughCallback()
377 if (scheduleInfo.taskData.size() > scheduleInfo.MAX_TASK_DATA_SIZE_IN_BYTES) { in scheduleTask()
386 request.mutable_scheduleinfo()->set_data(scheduleInfo.taskData.data(), in scheduleTask()
[all …]
/hardware/interfaces/automotive/remoteaccess/test_grpc_server/impl/src/
Dmain.cpp210 std::string taskData; in parseCommand() local
219 taskData = data; in parseCommand()
222 if (taskData == "" || clientId == "") { in parseCommand()
226 service->injectTask(taskData, clientId); in parseCommand()
228 taskData.c_str()); in parseCommand()
DTestWakeupClientServiceImpl.cpp81 return std::move(response.taskData); in maybePopOne()
93 .taskData = task, in add()
138 taskInfo.taskData.clientid().c_str(), taskInfo.timestampInMs, now); in handleTaskTimeout()
180 void ServiceImpl::injectTask(const std::string& taskData, const std::string& clientId) { in injectTask() argument
182 response.set_data(taskData); in injectTask()
/hardware/interfaces/automotive/remoteaccess/aidl_api/android.hardware.automotive.remoteaccess/current/android/hardware/automotive/remoteaccess/
DScheduleInfo.aidl40 byte[] taskData;
/hardware/interfaces/automotive/remoteaccess/aidl_api/android.hardware.automotive.remoteaccess/2/android/hardware/automotive/remoteaccess/
DScheduleInfo.aidl40 byte[] taskData;
/hardware/interfaces/automotive/remoteaccess/android/hardware/automotive/remoteaccess/
DScheduleInfo.aidl48 byte[] taskData;
/hardware/interfaces/automotive/remoteaccess/hal/default/test/
DRemoteAccessServiceUnitTest.cpp459 .taskData = kTestData, in TEST_F()
480 .taskData = kTestData, in TEST_F()
496 .taskData = kTestData, in TEST_F()
512 .taskData = kTestData, in TEST_F()
528 .taskData = std::vector<uint8_t>(ScheduleInfo::MAX_TASK_DATA_SIZE_IN_BYTES + 1), in TEST_F()
551 .taskData = kTestData, in TEST_F()
574 .taskData = kTestData, in TEST_F()
665 ASSERT_EQ(result[0].taskData, kTestData); in TEST_F()
/hardware/interfaces/automotive/remoteaccess/vts/src/
DVtsHalAutomotiveRemoteAccess_TargetTest.cpp243 .taskData = TEST_TASK_DATA, in getTestScheduleInfo()
398 .taskData = TEST_TASK_DATA, in TEST_P()
407 .taskData = TEST_TASK_DATA, in TEST_P()
/hardware/interfaces/automotive/remoteaccess/test_grpc_server/impl/include/
DTestWakeupClientServiceImpl.h53 GetRemoteTasksResponse taskData; member
184 void injectTask(const std::string& taskData, const std::string& clientId);