Searched refs:taskData (Results 1 – 9 of 9) sorted by relevance
/hardware/interfaces/automotive/remoteaccess/hal/default/src/ |
D | RemoteAccessService.cpp | 121 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/ |
D | main.cpp | 210 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()
|
D | TestWakeupClientServiceImpl.cpp | 81 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/ |
D | ScheduleInfo.aidl | 40 byte[] taskData;
|
/hardware/interfaces/automotive/remoteaccess/aidl_api/android.hardware.automotive.remoteaccess/2/android/hardware/automotive/remoteaccess/ |
D | ScheduleInfo.aidl | 40 byte[] taskData;
|
/hardware/interfaces/automotive/remoteaccess/android/hardware/automotive/remoteaccess/ |
D | ScheduleInfo.aidl | 48 byte[] taskData;
|
/hardware/interfaces/automotive/remoteaccess/hal/default/test/ |
D | RemoteAccessServiceUnitTest.cpp | 459 .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/ |
D | VtsHalAutomotiveRemoteAccess_TargetTest.cpp | 243 .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/ |
D | TestWakeupClientServiceImpl.h | 53 GetRemoteTasksResponse taskData; member 184 void injectTask(const std::string& taskData, const std::string& clientId);
|