Lines Matching refs:Response
191 const Response& response = mResponses.itemAt(mResponseIndex++);
192 int ident = response.request.ident;
194 int fd = response.request.fd;
195 int events = response.events;
196 void* data = response.request.data;
353 // Invoke all response callbacks.
355 Response& response = mResponses.editItemAt(i);
356 if (response.request.ident == POLL_CALLBACK) {
357 int fd = response.request.fd;
358 int events = response.events;
359 void* data = response.request.data;
362 this, response.request.callback.get(), fd, events, data);
367 int callbackResult = response.request.callback->handleEvent(fd, events, data);
369 removeFd(fd, response.request.seq);
372 // Clear the callback reference in the response structure promptly because we
373 // will not clear the response vector itself until the next poll.
374 response.request.callback.clear();
431 Response response;
432 response.events = events;
433 response.request = request;
434 mResponses.push(response);