Lines Matching refs:reply

163 	NotifyListenerReply* reply;
164 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
167 RequestReleaser requestReleaser(port, reply);
169 // process the reply
170 if (reply->error != B_OK)
171 return reply->error;
200 NotifySelectEventReply* reply;
201 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
204 RequestReleaser requestReleaser(port, reply);
206 // process the reply
207 if (reply->error != B_OK)
208 return reply->error;
244 NotifyQueryReply* reply;
245 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
248 RequestReleaser requestReleaser(port, reply);
250 // process the reply
251 if (reply->error != B_OK)
252 return reply->error;
283 GetVNodeReply* reply;
284 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
287 RequestReleaser requestReleaser(port, reply);
289 // process the reply
290 if (reply->error != B_OK)
291 return reply->error;
292 *node = reply->node;
319 PutVNodeReply* reply;
320 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
323 RequestReleaser requestReleaser(port, reply);
325 // process the reply
326 if (reply->error != B_OK)
327 return reply->error;
354 AcquireVNodeReply* reply;
355 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
358 RequestReleaser requestReleaser(port, reply);
360 // process the reply
361 if (reply->error != B_OK)
362 return reply->error;
392 NewVNodeReply* reply;
393 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
396 RequestReleaser requestReleaser(port, reply);
398 // process the reply
399 if (reply->error != B_OK)
400 return reply->error;
432 PublishVNodeReply* reply;
433 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
436 RequestReleaser requestReleaser(port, reply);
438 // process the reply
439 if (reply->error != B_OK)
440 return reply->error;
490 RemoveVNodeReply* reply;
491 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
494 RequestReleaser requestReleaser(port, reply);
496 // process the reply
497 if (reply->error != B_OK)
498 return reply->error;
525 UnremoveVNodeReply* reply;
526 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
529 RequestReleaser requestReleaser(port, reply);
531 // process the reply
532 if (reply->error != B_OK)
533 return reply->error;
561 GetVNodeRemovedReply* reply;
562 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
565 RequestReleaser requestReleaser(port, reply);
567 // process the reply
568 *removed = reply->removed;
569 return reply->error;
601 FileCacheCreateReply* reply;
602 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
605 RequestReleaser requestReleaser(port, reply);
607 // process the reply
608 RETURN_ERROR(reply->error);
635 FileCacheDeleteReply* reply;
636 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
639 RequestReleaser requestReleaser(port, reply);
641 // process the reply
642 return reply->error;
671 FileCacheSetEnabledReply* reply;
672 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
675 RequestReleaser requestReleaser(port, reply);
677 // process the reply
678 return reply->error;
707 FileCacheSetSizeReply* reply;
708 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
711 RequestReleaser requestReleaser(port, reply);
713 // process the reply
714 return reply->error;
741 FileCacheSyncReply* reply;
742 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
745 RequestReleaser requestReleaser(port, reply);
747 // process the reply
748 return reply->error;
779 FileCacheReadReply* reply;
780 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
783 RequestReleaser requestReleaser(port, reply);
785 // process the reply
786 if (reply->error != B_OK)
787 return reply->error;
789 if (reply->bytesRead > 0) {
790 memcpy(bufferBase, reply->buffer.GetData(), reply->buffer.GetSize());
799 *_size = reply->bytesRead;
839 FileCacheWriteReply* reply;
840 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
843 RequestReleaser requestReleaser(port, reply);
845 // process the reply
846 *_size = reply->bytesWritten;
847 return reply->error;
885 DoIterativeFDIOReply* reply;
886 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
890 RequestReleaser requestReleaser(port, reply);
892 // process the reply
893 return reply->error;
921 ReadFromIORequestReply* reply;
922 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
925 RequestReleaser requestReleaser(port, reply);
927 // process the reply
928 if (reply->error != B_OK)
929 return reply->error;
931 memcpy(buffer, reply->buffer.GetData(), reply->buffer.GetSize());
970 FileCacheWriteReply* reply;
971 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
974 RequestReleaser requestReleaser(port, reply);
976 // process the reply
977 return reply->error;
1005 NotifyIORequestReply* reply;
1006 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
1009 RequestReleaser requestReleaser(port, reply);
1011 // process the reply
1012 return reply->error;
1044 AddNodeListenerReply* reply;
1045 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
1048 RequestReleaser requestReleaser(port, reply);
1050 // process the reply
1051 return reply->error;
1079 RemoveNodeListenerReply* reply;
1080 error = port->SendRequest(&allocator, &handler, (Request**)&reply);
1083 RequestReleaser requestReleaser(port, reply);
1085 // process the reply
1086 return reply->error;