Lines Matching refs:Fence
35 class Fence
36 : public LightRefBase<Fence>, public Flattenable<Fence>
39 static const sp<Fence> NO_FENCE;
53 Fence() = default;
58 explicit Fence(int fenceFd);
59 explicit Fence(base::unique_fd fenceFd);
62 Fence(const Fence& rhs) = delete;
63 Fence& operator=(const Fence& rhs) = delete;
64 Fence(Fence&& rhs) = delete;
65 Fence& operator=(Fence&& rhs) = delete;
91 static sp<Fence> merge(const char* name, const sp<Fence>& f1,
92 const sp<Fence>& f2);
94 static sp<Fence> merge(const String8& name, const sp<Fence>& f1,
95 const sp<Fence>& f2);
146 friend class LightRefBase<Fence>;
147 ~Fence() = default;