Searched defs:Acquire (Results 1 - 4 of 4) sorted by relevance

/frameworks/native/libs/vr/libbufferhub/include/private/dvr/
H A Dbuffer_hub_client.h241 // Acquire allows read access. The user is responsible for making sure that
242 // Acquire is called with the correct metadata structure. The only guarantee the
243 // API currently provides is that an Acquire() with metadata of the wrong size
255 // performed as an alternative to the Acquire() with metadata. In such cases
259 int Acquire(LocalHandle* ready_fence);
266 int Acquire(LocalHandle* ready_fence, void* meta, size_t meta_size_bytes);
273 int Acquire(LocalHandle* ready_fence, Meta* meta) { function in class:android::dvr::BufferConsumer
274 return Acquire(ready_fence, meta, sizeof(*meta));
277 // This should be called after a successful Acquire call. If the fence is
292 // May be called after or instead of Acquire t
[all...]
H A Dnative_buffer.h150 // Acquire the underlying buffer consumer, closing the previous acquire fence
152 int Acquire() { return buffer_->Acquire(&acquire_fence_, &sequence_); } function in class:android::dvr::NativeBufferConsumer
/frameworks/native/libs/vr/libbufferhub/
H A Dbuffer_hub_client.cpp134 int BufferConsumer::Acquire(LocalHandle* ready_fence) { function in class:android::dvr::BufferConsumer
135 return Acquire(ready_fence, nullptr, 0);
138 int BufferConsumer::Acquire(LocalHandle* ready_fence, void* meta, function in class:android::dvr::BufferConsumer
140 ATRACE_NAME("BufferConsumer::Acquire");
/frameworks/native/libs/vr/libvrflinger/
H A Dhardware_composer.h164 std::tuple<int, int, sp<GraphicBuffer>, pdx::LocalHandle> Acquire() { function in struct:android::dvr::Layer::SourceSurface
200 std::tuple<int, int, sp<GraphicBuffer>, pdx::LocalHandle> Acquire() { function in struct:android::dvr::Layer::SourceBuffer

Completed in 53 milliseconds