Home
last modified time | relevance | path

Searched refs:importFd (Results 1 – 23 of 23) sorted by relevance

/external/swiftshader/src/Vulkan/
DVkDeviceMemoryExternalLinux.hpp32 bool importFd = false; member
54 importFd = true; in AllocateInfo()
83 return info.importFd || info.exportFd; in supportsAllocateInfo()
98 if(allocateInfo.importFd) in allocate()
100 memfd.importFd(allocateInfo.fd); in allocate()
DVkSemaphoreExternalLinux.hpp162 VkResult importFd(int fd) in importFd() function in vk::Semaphore::External
165 memfd.importFd(fd); in importFd()
DVkSemaphore.cpp160 VkResult Semaphore::importFd(int fd, bool tempImport) in importFd() function in vk::Semaphore
167 VkResult result = external->importFd(fd); in importFd()
DVkSemaphore.hpp49 VkResult importFd(int fd, bool temporaryImport);
DlibVulkan.cpp1303 …return vk::Cast(pImportSemaphoreInfo->semaphore)->importFd(pImportSemaphoreInfo->fd, temporaryImpo… in vkImportSemaphoreFdKHR()
/external/angle/src/libANGLE/
DSemaphore.cpp28 angle::Result Semaphore::importFd(Context *context, HandleType handleType, GLint fd) in importFd() function in gl::Semaphore
30 return mImplementation->importFd(context, handleType, fd); in importFd()
DMemoryObject.cpp38 angle::Result MemoryObject::importFd(Context *context, in importFd() function in gl::MemoryObject
43 ANGLE_TRY(mImplementation->importFd(context, size, handleType, fd)); in importFd()
DMemoryObject.h42 angle::Result importFd(Context *context, GLuint64 size, HandleType handleType, GLint fd);
DSemaphore.h40 angle::Result importFd(Context *context, HandleType handleType, GLint fd);
DContext.cpp7870 ANGLE_CONTEXT_TRY(memoryObject->importFd(this, size, handleType, fd)); in importMemoryFd()
7975 ANGLE_CONTEXT_TRY(semaphoreObject->importFd(this, handleType, fd)); in importSemaphoreFd()
/external/swiftshader/src/System/Linux/
DMemFd.hpp45 void importFd(int fd);
DMemFd.cpp45 void LinuxMemFd::importFd(int fd) in importFd() function in LinuxMemFd
/external/angle/src/libANGLE/renderer/
DMemoryObjectImpl.h34 virtual angle::Result importFd(gl::Context *context,
DSemaphoreImpl.h33 virtual angle::Result importFd(gl::Context *context, gl::HandleType handleType, GLint fd) = 0;
/external/angle/src/libANGLE/renderer/gl/
DMemoryObjectGL.h26 angle::Result importFd(gl::Context *context,
DSemaphoreGL.h24 angle::Result importFd(gl::Context *context, gl::HandleType handleType, GLint fd) override;
DMemoryObjectGL.cpp43 angle::Result MemoryObjectGL::importFd(gl::Context *context, in importFd() function in rx::MemoryObjectGL
DSemaphoreGL.cpp63 angle::Result SemaphoreGL::importFd(gl::Context *context, gl::HandleType handleType, GLint fd) in importFd() function in rx::SemaphoreGL
/external/angle/src/libANGLE/renderer/vulkan/
DSemaphoreVk.h26 angle::Result importFd(gl::Context *context, gl::HandleType handleType, GLint fd) override;
DMemoryObjectVk.h28 angle::Result importFd(gl::Context *context,
DMemoryObjectVk.cpp104 angle::Result MemoryObjectVk::importFd(gl::Context *context, in importFd() function in rx::MemoryObjectVk
DSemaphoreVk.cpp66 angle::Result SemaphoreVk::importFd(gl::Context *context, gl::HandleType handleType, GLint fd) in importFd() function in rx::SemaphoreVk
/external/swiftshader/tests/SystemUnitTests/
Dunittests.cpp83 memfd2.importFd(fd); in TEST()