/hardware/libhardware/modules/gralloc/ |
mapper.cpp | 50 private_handle_t* hnd = (private_handle_t*)handle; local 51 if (!(hnd->flags & private_handle_t::PRIV_FLAGS_FRAMEBUFFER)) { 52 size_t size = hnd->size; 54 PROT_READ|PROT_WRITE, MAP_SHARED, hnd->fd, 0); 59 hnd->base = intptr_t(mappedAddress) + hnd->offset; 61 // hnd->fd, hnd->offset, hnd->size, mappedAddress); 63 *vaddr = (void*)hnd->base 70 private_handle_t* hnd = (private_handle_t*)handle; local [all...] |
gralloc.cpp | 138 private_handle_t* hnd = new private_handle_t(dup(m->framebuffer->fd), size, local 150 hnd->base = vaddr; 151 hnd->offset = vaddr - intptr_t(m->framebuffer->base); 152 *pHandle = hnd; 183 private_handle_t* hnd = new private_handle_t(fd, size, 0); local 186 err = mapBuffer(module, hnd); 188 *pHandle = hnd; 251 private_handle_t const* hnd = reinterpret_cast<private_handle_t const*>(handle); local 252 if (hnd->flags & private_handle_t::PRIV_FLAGS_FRAMEBUFFER) { 257 int index = (hnd->base - m->framebuffer->base) / bufferSize [all...] |
framebuffer.cpp | 92 private_handle_t const* hnd = reinterpret_cast<private_handle_t const*>(buffer); local 96 if (hnd->flags & private_handle_t::PRIV_FLAGS_FRAMEBUFFER) { 97 const size_t offset = hnd->base - m->framebuffer->base;
|
gralloc_priv.h | 99 const private_handle_t* hnd = (const private_handle_t*)h; local 102 hnd->magic != sMagic)
|
/hardware/qcom/display/msm8960/libgenlock/ |
genlock.cpp | 73 private_handle_t *hnd = reinterpret_cast<private_handle_t*> local 75 if ((hnd->flags & private_handle_t::PRIV_FLAGS_UNSYNCHRONIZED) == 0) { 76 if (hnd->genlockPrivFd < 0) { 86 lock.fd = hnd->genlockHandle; 89 if (ioctl(hnd->genlockPrivFd, GENLOCK_IOC_DREADLOCK, &lock)) { 92 lockType, strerror(errno), hnd->fd); 100 if (ioctl(hnd->genlockPrivFd, GENLOCK_IOC_LOCK, &lock)) { 102 ,__FUNCTION__, lockType, strerror(errno), hnd->fd); 144 private_handle_t *hnd = reinterpret_cast<private_handle_t*>(buffer_handle); local 145 if ((hnd->flags & private_handle_t::PRIV_FLAGS_UNSYNCHRONIZED) == 0) 199 private_handle_t *hnd = reinterpret_cast<private_handle_t*>(buffer_handle); local 229 private_handle_t *hnd = reinterpret_cast<private_handle_t*>(buffer_handle); local 322 private_handle_t *hnd = reinterpret_cast<private_handle_t*>(buffer_handle); local [all...] |
/hardware/qcom/display/msm8x26/libgenlock/ |
genlock.cpp | 73 private_handle_t *hnd = reinterpret_cast<private_handle_t*> local 75 if ((hnd->flags & private_handle_t::PRIV_FLAGS_UNSYNCHRONIZED) == 0) { 76 if (hnd->genlockPrivFd < 0) { 86 lock.fd = hnd->genlockHandle; 89 if (ioctl(hnd->genlockPrivFd, GENLOCK_IOC_DREADLOCK, &lock)) { 92 lockType, strerror(errno), hnd->fd); 100 if (ioctl(hnd->genlockPrivFd, GENLOCK_IOC_LOCK, &lock)) { 102 ,__FUNCTION__, lockType, strerror(errno), hnd->fd); 144 private_handle_t *hnd = reinterpret_cast<private_handle_t*>(buffer_handle); local 145 if ((hnd->flags & private_handle_t::PRIV_FLAGS_UNSYNCHRONIZED) == 0) 199 private_handle_t *hnd = reinterpret_cast<private_handle_t*>(buffer_handle); local 229 private_handle_t *hnd = reinterpret_cast<private_handle_t*>(buffer_handle); local 322 private_handle_t *hnd = reinterpret_cast<private_handle_t*>(buffer_handle); local [all...] |
/hardware/samsung_slsi/exynos5/gralloc/ |
mapper.cpp | 42 private_handle_t* hnd = (private_handle_t*)handle; local 44 void* mappedAddress = mmap(0, hnd->size, PROT_READ|PROT_WRITE, MAP_SHARED, 45 hnd->fd, 0); 50 ALOGV("%s: base %p %d %d %d %d\n", __func__, mappedAddress, hnd->size, 51 hnd->width, hnd->height, hnd->stride); 52 hnd->base = mappedAddress; 58 private_handle_t* hnd = (private_handle_t*)handle; local 60 if (!hnd->base 106 private_handle_t* hnd = (private_handle_t*)handle; local 178 private_handle_t* hnd = (private_handle_t*)handle; local [all...] |
/hardware/qcom/display/msm8960/libcopybit/ |
copybit.cpp | 143 private_handle_t* hnd = (private_handle_t*)rhs->handle; local 144 if(hnd == NULL){ 151 img->offset = hnd->offset; 152 img->memory_id = hnd->fd;
|
software_converter.cpp | 38 private_handle_t* hnd = (private_handle_t*)src->handle; local 40 if(hnd == NULL || yv12_handle == NULL){ 60 unsigned char* oldChroma = (unsigned char*)(hnd->base + y_size); 61 memcpy((char *)yv12_handle->base,(char *)hnd->base,y_size); 181 int convert_yuv_c2d_to_yuv_android(private_handle_t *hnd, 185 if (!hnd || !rhs) { 186 ALOGE("%s: invalid inputs hnd=%p rhs=%p", __FUNCTION__, hnd, rhs); 215 ret = copy_source_to_destination(hnd->base, dst_hnd->base, info); 227 int convert_yuv_android_to_yuv_c2d(private_handle_t *hnd, [all...] |
/hardware/qcom/display/msm8960/libhwcomposer/ |
hwc_fbupdate.cpp | 66 private_handle_t *hnd = (private_handle_t *)layer->handle; local 67 ovutils::Whf info(getWidth(hnd), getHeight(hnd), 68 ovutils::getMdpFormat(hnd->format), hnd->size); 127 bool FBUpdateLowRes::draw(hwc_context_t *ctx, private_handle_t *hnd) 135 if (!ov.queueBuffer(hnd->fd, hnd->offset, dest)) { 170 private_handle_t *hnd = (private_handle_t *)layer->handle; local 171 ovutils::Whf info(getWidth(hnd), getHeight(hnd) [all...] |
/hardware/qcom/display/msm8x26/libcopybit/ |
copybit.cpp | 143 private_handle_t* hnd = (private_handle_t*)rhs->handle; local 144 if(hnd == NULL){ 151 img->offset = hnd->offset; 152 img->memory_id = hnd->fd;
|
software_converter.cpp | 38 private_handle_t* hnd = (private_handle_t*)src->handle; local 40 if(hnd == NULL || yv12_handle == NULL){ 60 unsigned char* oldChroma = (unsigned char*)(hnd->base + y_size); 61 memcpy((char *)yv12_handle->base,(char *)hnd->base,y_size); 181 int convert_yuv_c2d_to_yuv_android(private_handle_t *hnd, 185 if (!hnd || !rhs) { 186 ALOGE("%s: invalid inputs hnd=%p rhs=%p", __FUNCTION__, hnd, rhs); 215 ret = copy_source_to_destination(hnd->base, dst_hnd->base, info); 227 int convert_yuv_android_to_yuv_c2d(private_handle_t *hnd, [all...] |
/hardware/qcom/display/msm8x26/libhwcomposer/ |
hwc_fbupdate.cpp | 66 private_handle_t *hnd = (private_handle_t *)layer->handle; local 67 ovutils::Whf info(getWidth(hnd), getHeight(hnd), 68 ovutils::getMdpFormat(hnd->format), hnd->size); 127 bool FBUpdateLowRes::draw(hwc_context_t *ctx, private_handle_t *hnd) 135 if (!ov.queueBuffer(hnd->fd, hnd->offset, dest)) { 170 private_handle_t *hnd = (private_handle_t *)layer->handle; local 171 ovutils::Whf info(getWidth(hnd), getHeight(hnd) [all...] |
/hardware/qcom/display/msm8960/libgralloc/ |
alloc_controller.cpp | 364 private_handle_t* hnd = new private_handle_t(data.fd, data.size, local 367 hnd->base = (int) data.base; 368 hnd->offset = data.offset; 369 hnd->gpuaddr = 0; 370 *pHnd = hnd; 374 void free_buffer(private_handle_t *hnd) 378 if (hnd && hnd->fd > 0) { 379 IMemAlloc* memalloc = sAlloc->getAllocator(hnd->flags); 380 memalloc->free_buffer((void*)hnd->base, hnd->size, hnd->offset, hnd->fd) [all...] |
gpu.cpp | 145 private_handle_t *hnd = new private_handle_t(data.fd, size, flags, local 149 hnd->offset = data.offset; 150 hnd->base = int(data.base) + data.offset; 151 hnd->gpuaddr = 0; 153 *pHandle = hnd; 213 private_handle_t* hnd = new private_handle_t( local 228 hnd->base = vaddr; 229 hnd->offset = vaddr - intptr_t(m->framebuffer->base); 230 *pHandle = hnd; 307 int gpu_context_t::free_impl(private_handle_t const* hnd) { 362 private_handle_t const* hnd = reinterpret_cast<private_handle_t const*>(handle); local [all...] |
mapper.cpp | 61 private_handle_t* hnd = (private_handle_t*)handle; local 63 if (!(hnd->flags & private_handle_t::PRIV_FLAGS_FRAMEBUFFER) && 64 !(hnd->flags & private_handle_t::PRIV_FLAGS_SECURE_BUFFER)) { 65 size_t size = hnd->size; 66 IMemAlloc* memalloc = getAllocator(hnd->flags) ; 68 hnd->offset, hnd->fd); 71 handle, hnd->fd, strerror(errno)); 72 hnd->base = 0; 76 hnd->base = intptr_t(mappedAddress) + hnd->offset 95 private_handle_t* hnd = (private_handle_t*)handle; local 209 private_handle_t* hnd = (private_handle_t*)handle; local 240 private_handle_t* hnd = (private_handle_t*)handle; local 252 private_handle_t* hnd = (private_handle_t*)handle; local 284 private_handle_t* hnd = (private_handle_t*)handle; local 326 private_handle_t* hnd = (private_handle_t*)native_handle_create( local 349 private_handle_t* hnd = va_arg(args, private_handle_t*); local 370 private_handle_t* hnd = va_arg(args, private_handle_t*); local [all...] |
/hardware/qcom/display/msm8974/libcopybit/ |
copybit.cpp | 146 private_handle_t* hnd = (private_handle_t*)rhs->handle; local 147 if(hnd == NULL){ 154 img->offset = hnd->offset; 155 img->memory_id = hnd->fd;
|
software_converter.cpp | 38 private_handle_t* hnd = (private_handle_t*)src->handle; local 40 if(hnd == NULL || yv12_handle == NULL){ 60 unsigned char* oldChroma = (unsigned char*)(hnd->base + y_size); 61 memcpy((char *)yv12_handle->base,(char *)hnd->base,y_size); 181 int convert_yuv_c2d_to_yuv_android(private_handle_t *hnd, 185 if (!hnd || !rhs) { 186 ALOGE("%s: invalid inputs hnd=%p rhs=%p", __FUNCTION__, hnd, rhs); 215 ret = copy_source_to_destination(hnd->base, dst_hnd->base, info); 227 int convert_yuv_android_to_yuv_c2d(private_handle_t *hnd, [all...] |
/hardware/qcom/display/msm8974/libgralloc/ |
alloc_controller.cpp | 385 private_handle_t* hnd = new private_handle_t(data.fd, data.size, local 388 hnd->base = (int) data.base; 389 hnd->offset = data.offset; 390 hnd->gpuaddr = 0; 391 *pHnd = hnd; 395 void free_buffer(private_handle_t *hnd) 399 if (hnd && hnd->fd > 0) { 400 IMemAlloc* memalloc = sAlloc->getAllocator(hnd->flags); 401 memalloc->free_buffer((void*)hnd->base, hnd->size, hnd->offset, hnd->fd) [all...] |
gpu.cpp | 151 private_handle_t *hnd = new private_handle_t(data.fd, size, flags, local 155 hnd->offset = data.offset; 156 hnd->base = int(data.base) + data.offset; 157 hnd->gpuaddr = 0; 159 *pHandle = hnd; 219 private_handle_t* hnd = new private_handle_t( local 234 hnd->base = vaddr; 235 hnd->offset = vaddr - intptr_t(m->framebuffer->base); 236 *pHandle = hnd; 316 int gpu_context_t::free_impl(private_handle_t const* hnd) { 371 private_handle_t const* hnd = reinterpret_cast<private_handle_t const*>(handle); local [all...] |
mapper.cpp | 61 private_handle_t* hnd = (private_handle_t*)handle; local 63 if (!(hnd->flags & private_handle_t::PRIV_FLAGS_FRAMEBUFFER) && 64 !(hnd->flags & private_handle_t::PRIV_FLAGS_SECURE_BUFFER)) { 65 size_t size = hnd->size; 66 IMemAlloc* memalloc = getAllocator(hnd->flags) ; 68 hnd->offset, hnd->fd); 71 handle, hnd->fd, strerror(errno)); 72 hnd->base = 0; 76 hnd->base = intptr_t(mappedAddress) + hnd->offset 95 private_handle_t* hnd = (private_handle_t*)handle; local 209 private_handle_t* hnd = (private_handle_t*)handle; local 241 private_handle_t* hnd = (private_handle_t*)handle; local 253 private_handle_t* hnd = (private_handle_t*)handle; local 285 private_handle_t* hnd = (private_handle_t*)handle; local 329 private_handle_t* hnd = (private_handle_t*)native_handle_create( local 352 private_handle_t* hnd = va_arg(args, private_handle_t*); local 373 private_handle_t* hnd = va_arg(args, private_handle_t*); local [all...] |
/hardware/qcom/display/msm8974/libhwcomposer/ |
hwc_ad.cpp | 150 private_handle_t *hnd = (private_handle_t *)layer->handle; local 151 if(hnd && hnd->width <= qdutils::MAX_DISPLAY_DIM) { 160 const private_handle_t *hnd) { 181 if(!wb->configureDpyInfo(hnd->width, hnd->height)) { 195 size = getBufferSizeAndDimensions(hnd->width, hnd->height, 198 if(!wb->configureMemory(size, isSecureBuffer(hnd))) { 205 if(isSecureBuffer(hnd)) { [all...] |
hwc_fbupdate.cpp | 72 private_handle_t *hnd = (private_handle_t *)layer->handle; local 73 ovutils::Whf info(getWidth(hnd), getHeight(hnd), 74 ovutils::getMdpFormat(hnd->format), hnd->size); 143 bool FBUpdateLowRes::draw(hwc_context_t *ctx, private_handle_t *hnd) 151 if (!ov.queueBuffer(hnd->fd, hnd->offset, dest)) { 186 private_handle_t *hnd = (private_handle_t *)layer->handle; local 187 ovutils::Whf info(getWidth(hnd), getHeight(hnd) [all...] |
/hardware/qcom/display/msm8x26/libgralloc/ |
alloc_controller.cpp | 362 private_handle_t* hnd = new private_handle_t(data.fd, data.size, local 365 hnd->base = (int) data.base; 366 hnd->offset = data.offset; 367 hnd->gpuaddr = 0; 368 *pHnd = hnd; 372 void free_buffer(private_handle_t *hnd) 376 if (hnd && hnd->fd > 0) { 377 IMemAlloc* memalloc = sAlloc->getAllocator(hnd->flags); 378 memalloc->free_buffer((void*)hnd->base, hnd->size, hnd->offset, hnd->fd) [all...] |
gpu.cpp | 145 private_handle_t *hnd = new private_handle_t(data.fd, size, flags, local 149 hnd->offset = data.offset; 150 hnd->base = int(data.base) + data.offset; 151 hnd->gpuaddr = 0; 153 *pHandle = hnd; 213 private_handle_t* hnd = new private_handle_t( local 228 hnd->base = vaddr; 229 hnd->offset = vaddr - intptr_t(m->framebuffer->base); 230 *pHandle = hnd; 307 int gpu_context_t::free_impl(private_handle_t const* hnd) { 362 private_handle_t const* hnd = reinterpret_cast<private_handle_t const*>(handle); local [all...] |