Lines Matching refs:status
74 zx_status_t status = zx::channel::create(0, &pipe_server, &pipe_client); in processPipeInitOnce() local
75 if (status != ZX_OK) { in processPipeInitOnce()
76 ALOGE("%s: zx_channel_create failed: %d", __FUNCTION__, status); in processPipeInitOnce()
89 result.status(), GET_STATUS_SAFE(result, res)); in processPipeInitOnce()
96 status = vmo.write("pipe:GLProcessPipe", 0, len + 1); in processPipeInitOnce()
97 if (status != ZX_OK) { in processPipeInitOnce()
106 result.status(), GET_STATUS_SAFE(result, res)); in processPipeInitOnce()
113 status = vmo.write(&confirmInt, 0, sizeof(confirmInt)); in processPipeInitOnce()
114 if (status != ZX_OK) { in processPipeInitOnce()
123 result.status(), GET_STATUS_SAFE(result, res)); in processPipeInitOnce()
128 status = vmo.read(&sProcUID, 0, sizeof(sProcUID)); in processPipeInitOnce()
129 if (status != ZX_OK) { in processPipeInitOnce()
130 ALOGE("%s: failed read per-process ID: %d", __FUNCTION__, status); in processPipeInitOnce()