/external/libdrm/libkms/ |
api.c | 122 return bo->kms->bo_map(bo, out);
|
internal.h | 53 int (*bo_map)(struct kms_bo *bo, void **out); member in struct:kms_driver
|
dumb.c | 211 kms->bo_map = dumb_bo_map;
|
exynos.c | 200 kms->bo_map = exynos_bo_map;
|
intel.c | 231 kms->bo_map = intel_bo_map;
|
nouveau.c | 213 kms->bo_map = nouveau_bo_map;
|
radeon.c | 234 kms->bo_map = radeon_bo_map;
|
vmwgfx.c | 200 kms->bo_map = vmwgfx_bo_map;
|
/external/libdrm/radeon/ |
radeon_bo_int.h | 33 int (*bo_map)(struct radeon_bo_int *bo, int write); member in struct:radeon_bo_funcs
|
radeon_bo_gem.c | 151 static int bo_map(struct radeon_bo_int *boi, int write) function 277 .bo_map = bo_map,
|
radeon_bo.c | 76 return boi->bom->funcs->bo_map(boi, write);
|
/external/libdrm/intel/ |
intel_bufmgr_priv.h | 48 * using bo_map() or drm_intel_gem_bo_map_gtt() to be used by the CPU. 114 int (*bo_map) (drm_intel_bo *bo, int write_enable); member in struct:_drm_intel_bufmgr 143 * This is not required for any access to the BO by bo_map,
|
intel_bufmgr.c | 107 return buf->bufmgr->bo_map(buf, write_enable);
|
intel_bufmgr_fake.c | [all...] |
intel_bufmgr_gem.c | [all...] |
/external/libdrm/tests/modetest/ |
buffers.c | 95 static int bo_map(struct bo *bo, void **out) function 227 ret = bo_map(bo, &virtual);
|