Lines Matching refs:response
94 const heim_idata *request, heim_idata *response, in mach_ipc() argument
154 response->data = malloc(replyout_length); in mach_ipc()
155 if (response->data == NULL) { in mach_ipc()
160 memcpy(response->data, replyout, replyout_length); in mach_ipc()
161 response->length = replyout_length; in mach_ipc()
165 response->data = malloc(replyin_length); in mach_ipc()
166 if (response->data == NULL) in mach_ipc()
168 memcpy(response->data, replyin, replyin_length); in mach_ipc()
169 response->length = replyin_length; in mach_ipc()
193 heim_idata response; in mheim_ado_acall_reply() local
196 response.data = NULL; in mheim_ado_acall_reply()
197 response.length = 0; in mheim_ado_acall_reply()
199 response.data = replyout; in mheim_ado_acall_reply()
200 response.length = replyoutCnt; in mheim_ado_acall_reply()
202 response.data = replyin; in mheim_ado_acall_reply()
203 response.length = replyinCnt; in mheim_ado_acall_reply()
206 (*c->func)(c->userctx, returnvalue, &response, NULL); in mheim_ado_acall_reply()
444 const heim_idata *request, heim_idata *response, in door_ipc() argument
462 response->data = malloc(arg.rsize); in door_ipc()
463 if (response->data == NULL) { in door_ipc()
467 memcpy(response->data, arg.rbuf, arg.rsize); in door_ipc()
468 response->length = arg.rsize; in door_ipc()