Home
last modified time | relevance | path

Searched refs:exportFd (Results 1 – 10 of 10) sorted by relevance

/external/swiftshader/src/Vulkan/
DVkDeviceMemoryExternalLinux.hpp33 bool exportFd = false; member
66 exportFd = true; in AllocateInfo()
83 return info.importFd || info.exportFd; in supportsAllocateInfo()
108 ASSERT(allocateInfo.exportFd); in allocate()
137 VkResult exportFd(int *pFd) const override in exportFd() function in OpaqueFdExternalMemory
139 int fd = memfd.exportFd(); in exportFd()
DVkDeviceMemory.cpp41 virtual VkResult exportFd(int *pFd) const in exportFd() function in vk::DeviceMemory::ExternalBase
333 VkResult DeviceMemory::exportFd(int *pFd) const in exportFd() function in vk::DeviceMemory
335 return external->exportFd(pFd); in exportFd()
DVkSemaphoreExternalLinux.hpp173 VkResult exportFd(int *pFd) const in exportFd() function in vk::Semaphore::External
175 int fd = memfd.exportFd(); in exportFd()
DVkSemaphore.cpp179 VkResult Semaphore::exportFd(int *pFd) in exportFd() function in vk::Semaphore
187 return external->exportFd(pFd); in exportFd()
DVkSemaphore.hpp50 VkResult exportFd(int *pFd);
DVkDeviceMemory.hpp31 VkResult exportFd(int *pFd) const;
DlibVulkan.cpp1015 return vk::Cast(getFdInfo->memory)->exportFd(pFd); in vkGetMemoryFdKHR()
1289 return vk::Cast(pGetFdInfo->semaphore)->exportFd(pFd); in vkGetSemaphoreFdKHR()
/external/swiftshader/tests/SystemUnitTests/
Dunittests.cpp32 ASSERT_EQ(-1, memfd.exportFd()); in TEST()
51 ASSERT_EQ(-1, memfd.exportFd()); in TEST()
61 int fd = memfd.exportFd(); in TEST()
64 ASSERT_EQ(-1, memfd.exportFd()); in TEST()
78 int fd = memfd.exportFd(); in TEST()
/external/swiftshader/src/System/Linux/
DMemFd.hpp48 int exportFd() const;
DMemFd.cpp51 int LinuxMemFd::exportFd() const in exportFd() function in LinuxMemFd