/external/swiftshader/src/Vulkan/ |
D | VkSemaphore.cpp | 50 virtual VkResult exportOpaqueFd(int *pFd) in exportOpaqueFd() argument 311 VkResult BinarySemaphore::exportFd(int *pFd) in exportFd() argument 323 [pFd](External *ext) { in exportFd() 324 return ext->exportOpaqueFd(pFd); in exportFd()
|
D | VkDeviceMemoryExternalLinux.hpp | 84 VkResult exportFd(int *pFd) const override in exportFd() 91 *pFd = fd; in exportFd()
|
D | VkSemaphoreExternalLinux.hpp | 173 VkResult exportOpaqueFd(int *pFd) override in exportOpaqueFd() argument 180 *pFd = fd; in exportOpaqueFd()
|
D | VkDeviceMemoryExternalMac.hpp | 178 VkResult exportFd(int *pFd) const override in exportFd() 190 *pFd = fd; in exportFd()
|
D | VkDeviceMemoryExternalBase.hpp | 42 virtual VkResult exportFd(int *pFd) const in exportFd()
|
D | VkDeviceMemory.hpp | 33 VkResult exportFd(int *pFd) const;
|
D | VkDeviceMemory.cpp | 426 VkResult DeviceMemory::exportFd(int *pFd) const in exportFd() 428 return external->exportFd(pFd); in exportFd()
|
D | VkSemaphore.hpp | 80 VkResult exportFd(int *pFd);
|
D | libVulkan.cpp | 1140 …esult VKAPI_CALL vkGetMemoryFdKHR(VkDevice device, const VkMemoryGetFdInfoKHR *getFdInfo, int *pFd) in vkGetMemoryFdKHR() argument 1143 device, getFdInfo, pFd); in vkGetMemoryFdKHR() 1150 return vk::Cast(getFdInfo->memory)->exportFd(pFd); in vkGetMemoryFdKHR() 1481 …KAPI_CALL vkGetSemaphoreFdKHR(VkDevice device, const VkSemaphoreGetFdInfoKHR *pGetFdInfo, int *pFd) in vkGetSemaphoreFdKHR() argument 1484 device, static_cast<const void *>(pGetFdInfo), static_cast<void *>(pFd)); in vkGetSemaphoreFdKHR() 1493 return sem->exportFd(pFd); in vkGetSemaphoreFdKHR()
|
/external/mesa3d/src/intel/vulkan/ |
D | anv_queue.c | 1960 int* pFd) in anv_GetFenceFdKHR() argument 1978 *pFd = fd; in anv_GetFenceFdKHR() 1983 VkResult result = wait_syncobj_materialize(device, impl->syncobj, pFd); in anv_GetFenceFdKHR() 1991 *pFd = fd; in anv_GetFenceFdKHR() 2401 int* pFd) in anv_GetSemaphoreFdKHR() argument 2416 result = anv_device_export_bo(device, impl->bo, pFd); in anv_GetSemaphoreFdKHR() 2458 *pFd = fd; in anv_GetSemaphoreFdKHR() 2464 VkResult result = wait_syncobj_materialize(device, impl->syncobj, pFd); in anv_GetSemaphoreFdKHR() 2475 *pFd = fd; in anv_GetSemaphoreFdKHR() 2483 *pFd = fd; in anv_GetSemaphoreFdKHR()
|
/external/mesa3d/src/freedreno/vulkan/ |
D | tu_drm.c | 602 tu_GetSemaphoreFdKHR(VkDevice device, const VkSemaphoreGetFdInfoKHR *info, int *pFd) in tu_GetSemaphoreFdKHR() argument 606 info->handleType == VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT, pFd); in tu_GetSemaphoreFdKHR() 780 tu_GetFenceFdKHR(VkDevice device, const VkFenceGetFdInfoKHR *info, int *pFd) in tu_GetFenceFdKHR() argument 784 info->handleType == VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT, pFd); in tu_GetFenceFdKHR()
|
D | tu_kgsl.c | 473 int *pFd) in tu_GetSemaphoreFdKHR() argument 514 int *pFd) in tu_GetFenceFdKHR() argument
|
/external/mesa3d/prebuilt-intermediates/vulkan/ |
D | anv_entrypoints.h | 1707 … VkResult anv_GetMemoryFdKHR(VkDevice device, const VkMemoryGetFdInfoKHR* pGetFdInfo, int* pFd); 1708 VkResult gen7_GetMemoryFdKHR(VkDevice device, const VkMemoryGetFdInfoKHR* pGetFdInfo, int* pFd); 1709 VkResult gen75_GetMemoryFdKHR(VkDevice device, const VkMemoryGetFdInfoKHR* pGetFdInfo, int* pFd); 1710 VkResult gen8_GetMemoryFdKHR(VkDevice device, const VkMemoryGetFdInfoKHR* pGetFdInfo, int* pFd); 1711 VkResult gen9_GetMemoryFdKHR(VkDevice device, const VkMemoryGetFdInfoKHR* pGetFdInfo, int* pFd); 1712 VkResult gen11_GetMemoryFdKHR(VkDevice device, const VkMemoryGetFdInfoKHR* pGetFdInfo, int* pFd); 1713 VkResult gen12_GetMemoryFdKHR(VkDevice device, const VkMemoryGetFdInfoKHR* pGetFdInfo, int* pFd); 1721 …Result anv_GetSemaphoreFdKHR(VkDevice device, const VkSemaphoreGetFdInfoKHR* pGetFdInfo, int* pFd); 1722 …esult gen7_GetSemaphoreFdKHR(VkDevice device, const VkSemaphoreGetFdInfoKHR* pGetFdInfo, int* pFd); 1723 …sult gen75_GetSemaphoreFdKHR(VkDevice device, const VkSemaphoreGetFdInfoKHR* pGetFdInfo, int* pFd); [all …]
|
D | anv_entrypoints.c | 2534 anv_GetMemoryFdKHR(VkDevice device, const VkMemoryGetFdInfoKHR* pGetFdInfo, int* pFd) in anv_GetMemoryFdKHR() argument 2537 return anv_device->dispatch.vkGetMemoryFdKHR(device, pGetFdInfo, pFd); in anv_GetMemoryFdKHR() 2546 anv_GetSemaphoreFdKHR(VkDevice device, const VkSemaphoreGetFdInfoKHR* pGetFdInfo, int* pFd) in anv_GetSemaphoreFdKHR() argument 2549 return anv_device->dispatch.vkGetSemaphoreFdKHR(device, pGetFdInfo, pFd); in anv_GetSemaphoreFdKHR() 2558 anv_GetFenceFdKHR(VkDevice device, const VkFenceGetFdInfoKHR* pGetFdInfo, int* pFd) in anv_GetFenceFdKHR() argument 2561 return anv_device->dispatch.vkGetFenceFdKHR(device, pGetFdInfo, pFd); in anv_GetFenceFdKHR() 3509 …tMemoryFdKHR(VkDevice device, const VkMemoryGetFdInfoKHR* pGetFdInfo, int* pFd) __attribute__ ((we… 3511 …horeFdKHR(VkDevice device, const VkSemaphoreGetFdInfoKHR* pGetFdInfo, int* pFd) __attribute__ ((we… 3513 …VkResult gen7_GetFenceFdKHR(VkDevice device, const VkFenceGetFdInfoKHR* pGetFdInfo, int* pFd) __at… 4015 …tMemoryFdKHR(VkDevice device, const VkMemoryGetFdInfoKHR* pGetFdInfo, int* pFd) __attribute__ ((we… [all …]
|
/external/vulkan-validation-layers/layers/generated/ |
D | parameter_validation.h | 1013 int* pFd); 1040 int* pFd); 1108 int* pFd);
|
D | thread_safety.h | 2609 int* pFd); 2614 int* pFd, 2668 int* pFd); 2673 int* pFd, 2826 int* pFd); 2831 int* pFd,
|
D | layer_chassis_dispatch.h | 1043 int* pFd); 1070 int* pFd); 1138 int* pFd);
|
D | chassis.h | 1291 int* pFd); 1329 int* pFd); 1422 int* pFd); 3176 …tMemoryFdKHR(VkDevice device, const VkMemoryGetFdInfoKHR* pGetFdInfo, int* pFd) { return false; }; in PreCallValidateGetMemoryFdKHR() argument 3177 … PreCallRecordGetMemoryFdKHR(VkDevice device, const VkMemoryGetFdInfoKHR* pGetFdInfo, int* pFd) {}; in PreCallRecordGetMemoryFdKHR() argument 3178 …tMemoryFdKHR(VkDevice device, const VkMemoryGetFdInfoKHR* pGetFdInfo, int* pFd, VkResult result) {… in PostCallRecordGetMemoryFdKHR() argument 3198 …horeFdKHR(VkDevice device, const VkSemaphoreGetFdInfoKHR* pGetFdInfo, int* pFd) { return false; }; in PreCallValidateGetSemaphoreFdKHR() argument 3199 …llRecordGetSemaphoreFdKHR(VkDevice device, const VkSemaphoreGetFdInfoKHR* pGetFdInfo, int* pFd) {}; in PreCallRecordGetSemaphoreFdKHR() argument 3200 …horeFdKHR(VkDevice device, const VkSemaphoreGetFdInfoKHR* pGetFdInfo, int* pFd, VkResult result) {… in PostCallRecordGetSemaphoreFdKHR() argument 3247 …GetFenceFdKHR(VkDevice device, const VkFenceGetFdInfoKHR* pGetFdInfo, int* pFd) { return false; }; in PreCallValidateGetFenceFdKHR() argument [all …]
|
D | object_tracker.h | 1378 int* pFd); 1407 int* pFd); 1493 int* pFd);
|
D | thread_safety.cpp | 3399 int* pFd) { in PreCallRecordGetMemoryFdKHR() argument 3406 int* pFd, in PostCallRecordGetMemoryFdKHR() argument 3478 int* pFd) { in PreCallRecordGetSemaphoreFdKHR() argument 3485 int* pFd, in PostCallRecordGetSemaphoreFdKHR() argument 3722 int* pFd) { in PreCallRecordGetFenceFdKHR() argument 3729 int* pFd, in PostCallRecordGetFenceFdKHR() argument
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkDeviceDriverImpl.inl | 800 …iceDriver::getMemoryFdKHR (VkDevice device, const VkMemoryGetFdInfoKHR* pGetFdInfo, int* pFd) const 802 return m_vk.getMemoryFdKHR(device, pGetFdInfo, pFd); 815 …ver::getSemaphoreFdKHR (VkDevice device, const VkSemaphoreGetFdInfoKHR* pGetFdInfo, int* pFd) const 817 return m_vk.getSemaphoreFdKHR(device, pGetFdInfo, pFd); 840 …eviceDriver::getFenceFdKHR (VkDevice device, const VkFenceGetFdInfoKHR* pGetFdInfo, int* pFd) const 842 return m_vk.getFenceFdKHR(device, pGetFdInfo, pFd);
|
D | vkConcreteDeviceInterface.inl | 163 … getMemoryFdKHR (VkDevice device, const VkMemoryGetFdInfoKHR* pGetFdInfo, int* pFd) const; 166 …SemaphoreFdKHR (VkDevice device, const VkSemaphoreGetFdInfoKHR* pGetFdInfo, int* pFd) const; 171 …t getFenceFdKHR (VkDevice device, const VkFenceGetFdInfoKHR* pGetFdInfo, int* pFd) const;
|
/external/rust/crates/libsqlite3-sys/sqlite3/ |
D | sqlite3.c | 35620 static int unixMapfile(unixFile *pFd, i64 nByte); 35621 static void unixUnmapfile(unixFile *pFd); 37224 static int openDirectory(const char *zFilename, int *pFd){ 37241 *pFd = fd; 37610 static void setDeviceCharacteristics(unixFile *pFd){ 37611 assert( pFd->deviceCharacteristics==0 || pFd->sectorSize!=0 ); 37612 if( pFd->sectorSize==0 ){ 37618 res = osIoctl(pFd->h, F2FS_IOC_GET_FEATURES, &f); 37620 pFd->deviceCharacteristics = SQLITE_IOCAP_BATCH_ATOMIC; 37625 if( pFd->ctrlFlags & UNIXFILE_PSOW ){ [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 35535 static int unixMapfile(unixFile *pFd, i64 nByte); 35536 static void unixUnmapfile(unixFile *pFd); 37139 static int openDirectory(const char *zFilename, int *pFd){ 37156 *pFd = fd; 37525 static void setDeviceCharacteristics(unixFile *pFd){ 37526 assert( pFd->deviceCharacteristics==0 || pFd->sectorSize!=0 ); 37527 if( pFd->sectorSize==0 ){ 37533 res = osIoctl(pFd->h, F2FS_IOC_GET_FEATURES, &f); 37535 pFd->deviceCharacteristics = SQLITE_IOCAP_BATCH_ATOMIC; 37540 if( pFd->ctrlFlags & UNIXFILE_PSOW ){ [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 35551 static int unixMapfile(unixFile *pFd, i64 nByte); 35552 static void unixUnmapfile(unixFile *pFd); 37155 static int openDirectory(const char *zFilename, int *pFd){ 37172 *pFd = fd; 37541 static void setDeviceCharacteristics(unixFile *pFd){ 37542 assert( pFd->deviceCharacteristics==0 || pFd->sectorSize!=0 ); 37543 if( pFd->sectorSize==0 ){ 37549 res = osIoctl(pFd->h, F2FS_IOC_GET_FEATURES, &f); 37551 pFd->deviceCharacteristics = SQLITE_IOCAP_BATCH_ATOMIC; 37556 if( pFd->ctrlFlags & UNIXFILE_PSOW ){ [all …]
|