Lines Matching refs:fenceFd
122 int32_t fenceFd = -1; in unlock() local
123 status_t error = unlockAsync(handle, &fenceFd); in unlock()
124 if (error == NO_ERROR && fenceFd >= 0) { in unlock()
125 sync_wait(fenceFd, -1); in unlock()
126 close(fenceFd); in unlock()
132 void** vaddr, int fenceFd, int32_t* outBytesPerPixel, in lockAsync() argument
134 return lockAsync(handle, usage, usage, bounds, vaddr, fenceFd, outBytesPerPixel, in lockAsync()
140 int fenceFd, int32_t* outBytesPerPixel, in lockAsync() argument
146 return mMapper->lock(handle, usage, bounds, fenceFd, vaddr, outBytesPerPixel, in lockAsync()
151 uint32_t usage, const Rect& bounds, android_ycbcr *ycbcr, int fenceFd) in lockAsyncYCbCr() argument
155 return mMapper->lock(handle, usage, bounds, fenceFd, ycbcr); in lockAsyncYCbCr()
158 status_t GraphicBufferMapper::unlockAsync(buffer_handle_t handle, int *fenceFd) in unlockAsync() argument
162 *fenceFd = mMapper->unlock(handle); in unlockAsync()