Lines Matching refs:pendingRequest
446 auto pendingRequest = tryFinishGetValueRequest(requestId); in onGetValue() local
447 if (pendingRequest == nullptr) { in onGetValue()
453 std::shared_ptr<AidlVhalClient::GetValueCallbackFunc> callback = pendingRequest->callback; in onGetValue()
454 int32_t propId = pendingRequest->propId; in onGetValue()
455 int32_t areaId = pendingRequest->areaId; in onGetValue()
489 auto pendingRequest = tryFinishSetValueRequest(requestId); in onSetValue() local
490 if (pendingRequest == nullptr) { in onSetValue()
496 std::shared_ptr<AidlVhalClient::SetValueCallbackFunc> callback = pendingRequest->callback; in onSetValue()
497 int32_t propId = pendingRequest->propId; in onSetValue()
498 int32_t areaId = pendingRequest->areaId; in onSetValue()
527 std::unique_ptr<T> pendingRequest; in onTimeout() local
536 pendingRequest = std::move(it->second); in onTimeout()
540 (*pendingRequest->callback)( in onTimeout()
542 << "failed to get/set value for propId: " << pendingRequest->propId in onTimeout()
543 << ", areaId: " << pendingRequest->areaId << ": request timed out"); in onTimeout()