Home
last modified time | relevance | path

Searched refs:status2 (Results 1 – 3 of 3) sorted by relevance

/device/generic/goldfish-opengl/system/OpenglSystemCommon/
DQemuPipeStreamFuchsia.cpp114 zx_status_t status2 = ZX_OK; in connect() local
115 status = m_pipe->Write(len + 1, 0, &status2, &actual); in connect()
116 if (status != ZX_OK || status2 != ZX_OK) { in connect()
118 status, status2); in connect()
148 zx_status_t status2 = ZX_OK; in allocBuffer() local
149 status = m_pipe->SetBufferSize(allocSize, &status2); in allocBuffer()
150 if (status != ZX_OK || status2 != ZX_OK) { in allocBuffer()
151 ALOGE("%s: failed to get buffer: %d:%d", __FUNCTION__, status, status2); in allocBuffer()
156 status = m_pipe->GetBuffer(&status2, &vmo); in allocBuffer()
157 if (status != ZX_OK || status2 != ZX_OK) { in allocBuffer()
[all …]
DProcessPipe.cpp73 zx_status_t status, status2 = ZX_OK; in processPipeInitOnce() local
75 status = pipe->GetBuffer(&status2, &vmo); in processPipeInitOnce()
76 if (status != ZX_OK || status2 != ZX_OK) { in processPipeInitOnce()
77 ALOGE("%s: failed to get buffer: %d:%d", __FUNCTION__, status, status2); in processPipeInitOnce()
88 status = pipe->Write(len + 1, 0, &status2, &actual); in processPipeInitOnce()
89 if (status != ZX_OK || status2 != ZX_OK) { in processPipeInitOnce()
91 status, status2); in processPipeInitOnce()
102 status = pipe->DoCall(sizeof(confirmInt), 0, sizeof(sProcUID), 0, &status2, &actual); in processPipeInitOnce()
103 if (status != ZX_OK || status2 != ZX_OK) { in processPipeInitOnce()
105 status, status2); in processPipeInitOnce()
/device/generic/goldfish-opengl/system/vulkan_enc/
DResourceTracker.cpp1717 zx_status_t status2; in on_vkGetBufferCollectionPropertiesFUCHSIA() local
1718 zx_status_t status = (*sysmem_collection)->WaitForBuffersAllocated(&status2, &info); in on_vkGetBufferCollectionPropertiesFUCHSIA()
1719 if (status != ZX_OK || status2 != ZX_OK) { in on_vkGetBufferCollectionPropertiesFUCHSIA()
1720 ALOGE("Failed wait for allocation: %d %d", status, status2); in on_vkGetBufferCollectionPropertiesFUCHSIA()
2103 zx_status_t status2; in on_vkAllocateMemory() local
2104 zx_status_t status = (*collection)->WaitForBuffersAllocated(&status2, &info); in on_vkAllocateMemory()
2105 if (status != ZX_OK || status2 != ZX_OK) { in on_vkAllocateMemory()
2163 zx_status_t status2; in on_vkAllocateMemory() local
2164 status = collection->WaitForBuffersAllocated(&status2, &info); in on_vkAllocateMemory()
2165 if (status == ZX_OK && status2 == ZX_OK) { in on_vkAllocateMemory()
[all …]