HomeSort by relevance Sort by last modified time
    Searched refs:VSyncChannel (Results 1 - 2 of 2) sorted by null

  /frameworks/native/libs/vr/libvrflinger/
vsync_service.h 35 // VSyncChannel manages the service-side per-client context for each client
37 class VSyncChannel : public pdx::Channel {
39 VSyncChannel(pdx::Service& service, int pid, int cid)
50 VSyncChannel(const VSyncChannel&) = delete;
51 void operator=(const VSyncChannel&) = delete;
86 void AddClient(const std::shared_ptr<VSyncChannel>& client);
87 void RemoveClient(const std::shared_ptr<VSyncChannel>& client);
97 std::list<std::shared_ptr<VSyncChannel>> clients_;
vsync_service.cpp 55 auto client = std::make_shared<VSyncChannel>(*this, info.pid, info.cid);
63 auto client = std::static_pointer_cast<VSyncChannel>(channel);
65 ALOGW("WARNING: VSyncChannel was NULL!!!\n");
78 void VSyncService::AddClient(const std::shared_ptr<VSyncChannel>& client) {
83 void VSyncService::RemoveClient(const std::shared_ptr<VSyncChannel>& client) {
139 auto client = std::static_pointer_cast<VSyncChannel>(message.GetChannel());
149 auto client = std::static_pointer_cast<VSyncChannel>(message.GetChannel());
186 auto client = std::static_pointer_cast<VSyncChannel>(message.GetChannel());
202 void VSyncChannel::Ack() {
203 ALOGD_IF(TRACE, "VSyncChannel::Ack: pid=%d cid=%d\n", pid_, cid_)
    [all...]

Completed in 108 milliseconds