HomeSort by relevance Sort by last modified time
    Searched defs:hnd (Results 1 - 25 of 33) sorted by null

1 2

  /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;
253 private_handle_t const* hnd = reinterpret_cast<private_handle_t const*>(handle); local
254 if (hnd->flags & private_handle_t::PRIV_FLAGS_FRAMEBUFFER) {
259 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/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...]
framebuffer.cpp 79 private_handle_t const* hnd = reinterpret_cast<private_handle_t const*>(buffer); local
87 private_handle_t *hnd = private_handle_t::dynamicCast(buffer); local
91 entry.callback(entry.data, hnd);
  /hardware/msm7k/libgralloc/
mapper.cpp 57 private_handle_t* hnd = (private_handle_t*)handle; local
58 if (!(hnd->flags & private_handle_t::PRIV_FLAGS_FRAMEBUFFER)) {
59 size_t size = hnd->size;
61 size += hnd->offset;
64 PROT_READ|PROT_WRITE, MAP_SHARED, hnd->fd, 0);
67 handle, hnd->fd, strerror(errno));
68 hnd->base = 0;
71 hnd->base = intptr_t(mappedAddress) + hnd->offset;
73 // hnd->fd, hnd->offset, hnd->size, mappedAddress)
82 private_handle_t* hnd = (private_handle_t*)handle; local
113 private_handle_t* hnd = (private_handle_t*)handle; local
    [all...]
framebuffer.cpp 95 private_handle_t const* hnd = reinterpret_cast<private_handle_t const*>(buffer); local
99 if (hnd->flags & private_handle_t::PRIV_FLAGS_FRAMEBUFFER) {
100 const size_t offset = hnd->base - m->framebuffer->base;
gralloc_priv.h 107 const private_handle_t* hnd = (const private_handle_t*)h; local
110 hnd->magic != sMagic)
gralloc.cpp 162 private_handle_t* hnd = new private_handle_t(dup(m->framebuffer->fd), size, local
175 hnd->base = vaddr;
176 hnd->offset = vaddr - intptr_t(m->framebuffer->base);
177 *pHandle = hnd;
435 private_handle_t* hnd = new private_handle_t(fd, size, flags); local
439 err = mapBuffer(module, hnd);
441 *pHandle = hnd;
446 hnd->offset = offset;
447 hnd->base = int(base)+offset;
448 hnd->gpu_fd = gpu_fd
524 private_handle_t const* hnd = reinterpret_cast<private_handle_t const*>(handle); local
    [all...]
  /hardware/msm7k/libcopybit/
copybit.cpp 136 private_handle_t* hnd = (private_handle_t*)rhs->handle; local
140 img->offset = hnd->offset;
142 if (hnd->flags & private_handle_t::PRIV_FLAGS_USES_GPU) {
143 img->offset += hnd->map_offset;
144 img->memory_id = hnd->gpu_fd;
150 img->memory_id = hnd->fd;
153 img->memory_id = hnd->fd;
  /hardware/msm7k/libgralloc-qsd8k/
mapper.cpp 57 private_handle_t* hnd = (private_handle_t*)handle; local
58 if (!(hnd->flags & private_handle_t::PRIV_FLAGS_FRAMEBUFFER)) {
59 size_t size = hnd->size;
61 size += hnd->offset;
64 PROT_READ|PROT_WRITE, MAP_SHARED, hnd->fd, 0);
67 handle, hnd->fd, strerror(errno));
68 hnd->base = 0;
71 hnd->base = intptr_t(mappedAddress) + hnd->offset;
73 // hnd->fd, hnd->offset, hnd->size, mappedAddress)
82 private_handle_t* hnd = (private_handle_t*)handle; local
199 private_handle_t* hnd = (private_handle_t*)handle; local
    [all...]
gpu.cpp 82 private_handle_t* hnd = new private_handle_t(dup(m->framebuffer->fd), size, local
95 hnd->base = vaddr;
96 hnd->offset = vaddr - intptr_t(m->framebuffer->base);
97 *pHandle = hnd;
187 private_handle_t* hnd = new private_handle_t(fd, size, flags); local
188 hnd->offset = offset;
189 hnd->base = int(base)+offset;
190 hnd->lockState = lockState;
191 *pHandle = hnd;
275 int gpu_context_t::free_impl(private_handle_t const* hnd) {
321 private_handle_t const* hnd = reinterpret_cast<private_handle_t const*>(handle); local
    [all...]
framebuffer.cpp 99 private_handle_t const* hnd = reinterpret_cast<private_handle_t const*>(buffer); local
108 if (hnd->flags & private_handle_t::PRIV_FLAGS_FRAMEBUFFER) {
114 const size_t offset = hnd->base - m->framebuffer->base;
gralloc_priv.h 145 const private_handle_t* hnd = (const private_handle_t*)h; local
148 hnd->magic != sMagic)
  /hardware/qcom/display/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/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...]
hwc.cpp 374 private_handle_t *hnd = (private_handle_t *)fbLayer->handle; local
376 hnd = ctx->mCopyBit[dpy]->getCurrentRenderBuffer();
379 if(hnd) {
380 if (!ctx->mFBUpdate[dpy]->draw(ctx, hnd)) {
421 private_handle_t *hnd = (private_handle_t *)fbLayer->handle; local
423 hnd = ctx->mCopyBit[dpy]->getCurrentRenderBuffer();
426 if(hnd) {
427 if (!ctx->mFBUpdate[dpy]->draw(ctx, hnd)) {
  /hardware/qcom/display/libgralloc/
alloc_controller.cpp 366 private_handle_t* hnd = new private_handle_t(data.fd, data.size, local
369 hnd->base = (int) data.base;
370 hnd->offset = data.offset;
371 hnd->gpuaddr = 0;
372 *pHnd = hnd;
376 void free_buffer(private_handle_t *hnd)
380 if (hnd && hnd->fd > 0) {
381 IMemAlloc* memalloc = sAlloc->getAllocator(hnd->flags);
382 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
    [all...]
framebuffer.cpp 89 private_handle_t *hnd = static_cast<private_handle_t*> local
91 const size_t offset = hnd->base - m->framebuffer->base;
  /frameworks/native/opengl/libs/EGL/
Loader.cpp 119 status_t Loader::driver_t::set(void* hnd, int32_t api)
123 dso[0] = hnd;
126 dso[1] = hnd;
129 dso[2] = hnd;
187 driver_t* hnd = 0; local
193 hnd = new driver_t(dso);
198 hnd = new driver_t(dso);
200 hnd->set( load_driver("GLESv1_CM", tag, cnx, GLESv1_CM), GLESv1_CM );
201 hnd->set( load_driver("GLESv2", tag, cnx, GLESv2), GLESv2 );
206 LOG_FATAL_IF(!index && !hnd,
220 driver_t* hnd = (driver_t*)driver; local
    [all...]

Completed in 2001 milliseconds

1 2