Home
last modified time | relevance | path

Searched refs:transferToHost (Results 1 – 12 of 12) sorted by relevance

/hardware/google/gfxstream/guest/platform/include/
DVirtGpu.h151 virtual int transferToHost(uint32_t x, uint32_t y, uint32_t w, uint32_t h) = 0;
152 virtual int transferToHost(uint32_t offset, uint32_t size) { in transferToHost() function
153 return transferToHost(offset, 0, size, 1); in transferToHost()
/hardware/google/gfxstream/guest/platform/rutabaga/
DRutabagaVirtGpuBlob.cpp83 int RutabagaVirtGpuResource::transferToHost(uint32_t offset, uint32_t size) { in transferToHost() function in gfxstream::RutabagaVirtGpuResource
92 int RutabagaVirtGpuResource::transferToHost(uint32_t x, uint32_t y, uint32_t w, uint32_t h) { in transferToHost() function in gfxstream::RutabagaVirtGpuResource
DRutabagaVirtGpu.h59 int transferToHost(uint32_t offset, uint32_t size) override;
60 int transferToHost(uint32_t x, uint32_t y, uint32_t w, uint32_t h) override;
/hardware/google/gfxstream/guest/OpenglSystemCommon/
DVirtioGpuPipeStream.cpp159 ssize_t stat = transferToHost((const char *)(buf) + (len - res), res); in writeFully()
282 ssize_t VirtioGpuPipeStream::transferToHost(const void* buffer, size_t len) { in transferToHost() function in VirtioGpuPipeStream
300 ret = m_resource->transferToHost(m_writtenPos, toXfer); in transferToHost()
DVirtioGpuPipeStream.h56 ssize_t transferToHost(const void* buffer, size_t len);
/hardware/google/gfxstream/guest/platform/stub/
DStubVirtGpuBlob.cpp40 int StubVirtGpuResource::transferToHost(uint32_t, uint32_t, uint32_t, uint32_t) { return -1; } in transferToHost() function in StubVirtGpuResource
DStubVirtGpu.h36 int transferToHost(uint32_t x, uint32_t y, uint32_t w, uint32_t h) override;
/hardware/google/gfxstream/guest/platform/fuchsia/
DFuchsiaVirtGpuBlob.cpp53 int FuchsiaVirtGpuResource::transferToHost(uint32_t offset, uint32_t size) { in transferToHost() function in FuchsiaVirtGpuResource
DFuchsiaVirtGpu.h36 int transferToHost(uint32_t offset, uint32_t size) override;
/hardware/google/gfxstream/guest/platform/linux/
DLinuxVirtGpu.h36 int transferToHost(uint32_t x, uint32_t y, uint32_t w, uint32_t h) override;
DLinuxVirtGpuBlob.cpp112 int LinuxVirtGpuResource::transferToHost(uint32_t x, uint32_t y, uint32_t w, uint32_t h) { in transferToHost() function in LinuxVirtGpuResource
/hardware/google/gfxstream/guest/android/
DGrallocEmulated.cpp205 mResource->transferToHost(0, 0, mWidth, mHeight); in unlock()