Lines Matching refs:pendingRequest
566 auto pendingRequest = tryFinishGetValueRequest(requestId); in onGetValue() local
567 if (pendingRequest == nullptr) { in onGetValue()
573 std::shared_ptr<AidlVhalClient::GetValueCallbackFunc> callback = pendingRequest->callback; in onGetValue()
574 int32_t propId = pendingRequest->propId; in onGetValue()
575 int32_t areaId = pendingRequest->areaId; in onGetValue()
609 auto pendingRequest = tryFinishSetValueRequest(requestId); in onSetValue() local
610 if (pendingRequest == nullptr) { in onSetValue()
616 std::shared_ptr<AidlVhalClient::SetValueCallbackFunc> callback = pendingRequest->callback; in onSetValue()
617 int32_t propId = pendingRequest->propId; in onSetValue()
618 int32_t areaId = pendingRequest->areaId; in onSetValue()
653 std::unique_ptr<T> pendingRequest; in onTimeout() local
662 pendingRequest = std::move(it->second); in onTimeout()
666 (*pendingRequest->callback)( in onTimeout()
668 << "failed to get/set value for propId: " << pendingRequest->propId in onTimeout()
669 << ", areaId: " << pendingRequest->areaId << ": request timed out"); in onTimeout()