Home | History | Annotate | Download | only in ui

Lines Matching refs:fenceFd

124         uint32_t usage, const Rect& bounds, void** vaddr, int fenceFd)
132 vaddr, fenceFd);
134 if (fenceFd >= 0) {
135 sync_wait(fenceFd, -1);
136 close(fenceFd);
148 uint32_t usage, const Rect& bounds, android_ycbcr *ycbcr, int fenceFd)
157 bounds.width(), bounds.height(), ycbcr, fenceFd);
159 if (fenceFd >= 0) {
160 sync_wait(fenceFd, -1);
161 close(fenceFd);
167 if (fenceFd >= 0) {
168 close(fenceFd);
177 status_t GraphicBufferMapper::unlockAsync(buffer_handle_t handle, int *fenceFd)
183 err = mAllocMod->unlockAsync(mAllocMod, handle, fenceFd);
185 *fenceFd = -1;