Lines Matching refs:status
63 zx_status_t status = zx_vmar_unmap(zx_vmar_root_self(), in ~QemuPipeStream() local
66 if (status != ZX_OK) { in ~QemuPipeStream()
67 ALOGE("zx_vmar_unmap failed: %d\n", status); in ~QemuPipeStream()
87 zx_status_t status = zx::channel::create(0, &pipe_server, &pipe_client); in connect() local
88 if (status != ZX_OK) { in connect()
89 ALOGE("zx::channel::create failed: %d", status); in connect()
98 status = zx::event::create(0, &event); in connect()
99 if (status != ZX_OK) { in connect()
100 ALOGE("%s: failed to create event: %d", __FUNCTION__, status); in connect()
104 status = event.duplicate(ZX_RIGHT_SAME_RIGHTS, &event_copy); in connect()
105 if (status != ZX_OK) { in connect()
106 ALOGE("%s: failed to duplicate event: %d", __FUNCTION__, status); in connect()
114 result.status()); in connect()
125 status = m_vmo.write("pipe:opengles", 0, len + 1); in connect()
126 if (status != ZX_OK) { in connect()
135 result.status(), GET_STATUS_SAFE(result, res)); in connect()
149 zx_status_t status; in allocBuffer() local
154 status = zx_vmar_unmap(zx_vmar_root_self(), in allocBuffer()
157 if (status != ZX_OK) { in allocBuffer()
158 ALOGE("zx_vmar_unmap failed: %d\n", status); in allocBuffer()
170 result.status(), GET_STATUS_SAFE(result, res)); in allocBuffer()
180 result.status(), GET_STATUS_SAFE(result, res)); in allocBuffer()
187 status = in allocBuffer()
190 if (status != ZX_OK) { in allocBuffer()
191 ALOGE("%s: failed to map buffer: %d", __FUNCTION__, status); in allocBuffer()
207 ALOGD("%s: Pipe call failed: %d:%d", __FUNCTION__, result.status(), in commitBuffer()
266 ALOGD("%s: Pipe call failed: %d", __FUNCTION__, result.status()); in commitBufferAndReadFully()
290 result.status()); in commitBufferAndReadFully()
305 zx_status_t status = m_event.wait_one( in commitBufferAndReadFully() local
309 if (status != ZX_OK) { in commitBufferAndReadFully()
310 ALOGD("%s: wait_one failed: %d", __FUNCTION__, status); in commitBufferAndReadFully()