Lines Matching defs:reply

235 	// prepare the reply
237 NotifyListenerReply* reply;
238 status_t error = AllocateRequest(allocator, &reply);
242 reply->error = result;
244 // send the reply
269 // prepare the reply
271 NotifySelectEventReply* reply;
272 status_t error = AllocateRequest(allocator, &reply);
276 reply->error = result;
278 // send the reply
332 // prepare the reply
334 NotifyQueryReply* reply;
335 status_t error = AllocateRequest(allocator, &reply);
339 reply->error = result;
341 // send the reply
359 // prepare the reply
361 GetVNodeReply* reply;
362 status_t error = AllocateRequest(allocator, &reply);
365 reply->error = result;
366 reply->node = node;
367 // send the reply
381 // prepare the reply
383 PutVNodeReply* reply;
384 status_t error = AllocateRequest(allocator, &reply);
387 reply->error = result;
388 // send the reply
404 // prepare the reply
406 AcquireVNodeReply* reply;
407 status_t error = AllocateRequest(allocator, &reply);
410 reply->error = result;
412 // send the reply
430 // prepare the reply
432 NewVNodeReply* reply;
433 status_t error = AllocateRequest(allocator, &reply);
436 reply->error = result;
438 // send the reply
455 // prepare the reply
457 PublishVNodeReply* reply;
458 status_t error = AllocateRequest(allocator, &reply);
462 reply->error = result;
464 // send the reply
478 // prepare the reply
480 RemoveVNodeReply* reply;
481 status_t error = AllocateRequest(allocator, &reply);
484 reply->error = result;
485 // send the reply
499 // prepare the reply
501 UnremoveVNodeReply* reply;
502 status_t error = AllocateRequest(allocator, &reply);
505 reply->error = result;
506 // send the reply
522 // prepare the reply
524 GetVNodeRemovedReply* reply;
525 status_t error = AllocateRequest(allocator, &reply);
529 reply->error = result;
530 reply->removed = removed;
532 // send the reply
549 // prepare the reply
551 FileCacheCreateReply* reply;
552 status_t error = AllocateRequest(allocator, &reply);
555 reply->error = result;
557 // send the reply
574 // prepare the reply
576 FileCacheDeleteReply* reply;
577 status_t error = AllocateRequest(allocator, &reply);
580 reply->error = result;
582 // send the reply
599 // prepare the reply
601 FileCacheSetEnabledReply* reply;
602 status_t error = AllocateRequest(allocator, &reply);
605 reply->error = result;
607 // send the reply
624 // prepare the reply
626 FileCacheSetSizeReply* reply;
627 status_t error = AllocateRequest(allocator, &reply);
630 reply->error = result;
632 // send the reply
649 // prepare the reply
651 FileCacheSyncReply* reply;
652 status_t error = AllocateRequest(allocator, &reply);
655 reply->error = result;
657 // send the reply
673 // allocate the reply
675 FileCacheReadReply* reply;
676 status_t error = AllocateRequest(allocator, &reply);
682 result = allocator.AllocateAddress(reply->buffer, size, 1, &buffer,
692 // prepare the reply
693 reply->error = result;
694 reply->bytesRead = size;
696 // send the reply
697 if (reply->error == B_OK && reply->bytesRead > 0) {
730 // prepare the reply
732 FileCacheWriteReply* reply;
733 status_t error = AllocateRequest(allocator, &reply);
736 reply->error = result;
737 reply->bytesWritten = size;
739 // send the reply
762 // prepare the reply
764 DoIterativeFDIOReply* reply;
765 status_t error = AllocateRequest(allocator, &reply);
768 reply->error = result;
770 // send the reply
785 // allocate the reply
787 ReadFromIORequestReply* reply;
788 status_t error = AllocateRequest(allocator, &reply);
794 result = allocator.AllocateAddress(reply->buffer, size, 1, &buffer,
802 // prepare the reply
803 reply->error = result;
805 // send the reply
806 if (reply->error == B_OK && size > 0) {
828 // prepare the reply
830 WriteToIORequestReply* reply;
831 status_t error = AllocateRequest(allocator, &reply);
834 reply->error = result;
836 // send the reply
853 // prepare the reply
855 NotifyIORequestReply* reply;
856 status_t error = AllocateRequest(allocator, &reply);
859 reply->error = result;
861 // send the reply
873 // prepare the reply
875 AddNodeListenerReply* reply;
876 status_t error = AllocateRequest(allocator, &reply);
880 reply->error = result;
882 // send the reply
894 // prepare the reply
896 RemoveNodeListenerReply* reply;
897 status_t error = AllocateRequest(allocator, &reply);
901 reply->error = result;
903 // send the reply