Lines Matching refs:reply

274 	// prepare the reply
276 MountVolumeReply* reply;
277 status_t error = AllocateRequest(allocator, &reply);
280 reply->error = result;
281 reply->volume = volume;
282 reply->rootID = rootID;
284 volume->GetCapabilities(reply->capabilities);
286 // send the reply
302 // prepare the reply
304 UnmountVolumeReply* reply;
305 status_t error = AllocateRequest(allocator, &reply);
308 reply->error = result;
310 // send the reply
327 // prepare the reply
329 SyncVolumeReply* reply;
330 status_t error = AllocateRequest(allocator, &reply);
333 reply->error = result;
335 // send the reply
353 // prepare the reply
355 ReadFSInfoReply* reply;
356 status_t error = AllocateRequest(allocator, &reply);
359 reply->error = result;
360 reply->info = info;
362 // send the reply
380 // prepare the reply
382 WriteFSInfoReply* reply;
383 status_t error = AllocateRequest(allocator, &reply);
386 reply->error = result;
388 // send the reply
413 // prepare the reply
415 LookupReply* reply;
416 status_t error = AllocateRequest(allocator, &reply);
420 reply->vnid = vnid;
421 reply->error = result;
423 // send the reply
440 // allocate the reply
442 GetVNodeNameReply* reply;
443 status_t error = AllocateRequest(allocator, &reply);
448 result = allocator.AllocateAddress(reply->buffer, bufferSize, 1,
458 // reconstruct the reply, in case it has been overwritten
459 reply = new(reply) GetVNodeNameReply;
461 // send the reply
462 reply->error = result;
486 // prepare the reply
488 ReadVNodeReply* reply;
489 status_t error = AllocateRequest(allocator, &reply);
493 reply->error = result;
494 reply->node = node;
495 reply->type = type;
496 reply->flags = flags;
497 reply->capabilities = capabilities;
499 // send the reply
518 // prepare the reply
520 WriteVNodeReply* reply;
521 status_t error = AllocateRequest(allocator, &reply);
525 reply->error = result;
527 // send the reply
546 // prepare the reply
548 FSRemoveVNodeReply* reply;
549 status_t error = AllocateRequest(allocator, &reply);
553 reply->error = result;
555 // send the reply
579 // prepare the reply
581 DoIOReply* reply;
582 status_t error = AllocateRequest(allocator, &reply);
586 reply->error = result;
588 // send the reply
608 // prepare the reply
610 CancelIOReply* reply;
611 status_t error = AllocateRequest(allocator, &reply);
615 reply->error = result;
617 // send the reply
644 // prepare the reply
646 IterativeIOGetVecsReply* reply;
647 status_t error = AllocateRequest(allocator, &reply);
651 reply->error = result;
653 memcpy(reply->vecs, vecs, vecCount * sizeof(file_io_vec));
654 reply->vecCount = vecCount;
656 reply->vecCount = 0;
658 // send the reply
680 // prepare the reply
682 IterativeIOFinishedReply* reply;
683 status_t error = AllocateRequest(allocator, &reply);
687 reply->error = result;
689 // send the reply
717 // allocate the reply
719 IOCtlReply* reply;
720 status_t error = AllocateRequest(allocator, &reply);
729 result = allocator.AllocateAddress(reply->buffer, writeSize, 8,
744 // reconstruct the reply, in case it has been overwritten
745 reply = new(reply) IOCtlReply;
747 // send the reply
748 reply->error = result;
749 reply->ioctlError = ioctlError;
769 // prepare the reply
771 SetFlagsReply* reply;
772 status_t error = AllocateRequest(allocator, &reply);
776 reply->error = result;
778 // send the reply
798 // prepare the reply
800 SelectReply* reply;
801 status_t error = AllocateRequest(allocator, &reply);
805 reply->error = result;
807 // send the reply
827 // prepare the reply
829 DeselectReply* reply;
830 status_t error = AllocateRequest(allocator, &reply);
834 reply->error = result;
836 // send the reply
855 // prepare the reply
857 FSyncReply* reply;
858 status_t error = AllocateRequest(allocator, &reply);
862 reply->error = result;
864 // send the reply
881 // allocate the reply
883 ReadSymlinkReply* reply;
884 status_t error = AllocateRequest(allocator, &reply);
889 result = allocator.AllocateAddress(reply->buffer, bufferSize, 1,
900 // reconstruct the reply, in case it has been overwritten
901 reply = new(reply) ReadSymlinkReply;
903 // send the reply
904 reply->error = result;
905 reply->bytesRead = bytesRead;
926 // prepare the reply
928 CreateSymlinkReply* reply;
929 status_t error = AllocateRequest(allocator, &reply);
933 reply->error = result;
935 // send the reply
955 // prepare the reply
957 LinkReply* reply;
958 status_t error = AllocateRequest(allocator, &reply);
962 reply->error = result;
964 // send the reply
984 // prepare the reply
986 UnlinkReply* reply;
987 status_t error = AllocateRequest(allocator, &reply);
991 reply->error = result;
993 // send the reply
1014 // prepare the reply
1016 RenameReply* reply;
1017 status_t error = AllocateRequest(allocator, &reply);
1021 reply->error = result;
1023 // send the reply
1042 // prepare the reply
1044 AccessReply* reply;
1045 status_t error = AllocateRequest(allocator, &reply);
1049 reply->error = result;
1051 // send the reply
1071 // prepare the reply
1073 ReadStatReply* reply;
1074 status_t error = AllocateRequest(allocator, &reply);
1078 reply->error = result;
1079 reply->st = st;
1081 // send the reply
1100 // prepare the reply
1102 WriteStatReply* reply;
1103 status_t error = AllocateRequest(allocator, &reply);
1107 reply->error = result;
1109 // send the reply
1136 // prepare the reply
1138 CreateReply* reply;
1139 status_t error = AllocateRequest(allocator, &reply);
1143 reply->error = result;
1144 reply->vnid = vnid;
1145 reply->fileCookie = fileCookie;
1147 // send the reply
1167 // prepare the reply
1169 OpenReply* reply;
1170 status_t error = AllocateRequest(allocator, &reply);
1174 reply->error = result;
1175 reply->fileCookie = fileCookie;
1177 // send the reply
1196 // prepare the reply
1198 CloseReply* reply;
1199 status_t error = AllocateRequest(allocator, &reply);
1203 reply->error = result;
1205 // send the reply
1224 // prepare the reply
1226 FreeCookieReply* reply;
1227 status_t error = AllocateRequest(allocator, &reply);
1231 reply->error = result;
1233 // send the reply
1252 // allocate the reply
1254 ReadReply* reply;
1255 status_t error = AllocateRequest(allocator, &reply);
1261 result = allocator.AllocateAddress(reply->buffer, size, 1, &buffer,
1272 // reconstruct the reply, in case it has been overwritten
1273 reply = new(reply) ReadReply;
1275 // send the reply
1276 reply->error = result;
1277 reply->bytesRead = bytesRead;
1299 // prepare the reply
1301 WriteReply* reply;
1302 status_t error = AllocateRequest(allocator, &reply);
1306 reply->error = result;
1307 reply->bytesWritten = bytesWritten;
1309 // send the reply
1333 // prepare the reply
1335 CreateDirReply* reply;
1336 status_t error = AllocateRequest(allocator, &reply);
1340 reply->error = result;
1342 // send the reply
1362 // prepare the reply
1364 RemoveDirReply* reply;
1365 status_t error = AllocateRequest(allocator, &reply);
1369 reply->error = result;
1371 // send the reply
1391 // prepare the reply
1393 OpenDirReply* reply;
1394 status_t error = AllocateRequest(allocator, &reply);
1398 reply->error = result;
1399 reply->dirCookie = dirCookie;
1401 // send the reply
1420 // prepare the reply
1422 CloseDirReply* reply;
1423 status_t error = AllocateRequest(allocator, &reply);
1427 reply->error = result;
1429 // send the reply
1448 // prepare the reply
1450 FreeDirCookieReply* reply;
1451 status_t error = AllocateRequest(allocator, &reply);
1455 reply->error = result;
1457 // send the reply
1476 // allocate the reply
1478 ReadDirReply* reply;
1479 status_t error = AllocateRequest(allocator, &reply);
1485 result = allocator.AllocateAddress(reply->buffer, bufferSize, 1,
1509 // reconstruct the reply, in case it has been overwritten
1510 reply = new(reply) ReadDirReply;
1512 // send the reply
1513 reply->error = result;
1514 reply->count = countRead;
1533 // prepare the reply
1535 RewindDirReply* reply;
1536 status_t error = AllocateRequest(allocator, &reply);
1540 reply->error = result;
1542 // send the reply
1566 // prepare the reply
1568 OpenAttrDirReply* reply;
1569 status_t error = AllocateRequest(allocator, &reply);
1573 reply->error = result;
1574 reply->attrDirCookie = attrDirCookie;
1576 // send the reply
1595 // prepare the reply
1597 CloseAttrDirReply* reply;
1598 status_t error = AllocateRequest(allocator, &reply);
1602 reply->error = result;
1604 // send the reply
1624 // prepare the reply
1626 FreeAttrDirCookieReply* reply;
1627 status_t error = AllocateRequest(allocator, &reply);
1631 reply->error = result;
1633 // send the reply
1652 // allocate the reply
1654 ReadAttrDirReply* reply;
1655 status_t error = AllocateRequest(allocator, &reply);
1661 result = allocator.AllocateAddress(reply->buffer, bufferSize, 1,
1673 // reconstruct the reply, in case it has been overwritten
1674 reply = new(reply) ReadAttrDirReply;
1676 // send the reply
1677 reply->error = result;
1678 reply->count = countRead;
1697 // prepare the reply
1699 RewindAttrDirReply* reply;
1700 status_t error = AllocateRequest(allocator, &reply);
1704 reply->error = result;
1706 // send the reply
1732 // prepare the reply
1734 CreateAttrReply* reply;
1735 status_t error = AllocateRequest(allocator, &reply);
1739 reply->error = result;
1740 reply->attrCookie = attrCookie;
1742 // send the reply
1764 // prepare the reply
1766 OpenAttrReply* reply;
1767 status_t error = AllocateRequest(allocator, &reply);
1771 reply->error = result;
1772 reply->attrCookie = attrCookie;
1774 // send the reply
1793 // prepare the reply
1795 CloseAttrReply* reply;
1796 status_t error = AllocateRequest(allocator, &reply);
1800 reply->error = result;
1802 // send the reply
1821 // prepare the reply
1823 FreeAttrCookieReply* reply;
1824 status_t error = AllocateRequest(allocator, &reply);
1828 reply->error = result;
1830 // send the reply
1849 // allocate the reply
1851 ReadAttrReply* reply;
1852 status_t error = AllocateRequest(allocator, &reply);
1858 result = allocator.AllocateAddress(reply->buffer, size, 1, &buffer,
1870 // reconstruct the reply, in case it has been overwritten
1871 reply = new(reply) ReadAttrReply;
1873 // send the reply
1874 reply->error = result;
1875 reply->bytesRead = bytesRead;
1897 // prepare the reply
1899 WriteAttrReply* reply;
1900 status_t error = AllocateRequest(allocator, &reply);
1904 reply->error = result;
1905 reply->bytesWritten = bytesWritten;
1907 // send the reply
1928 // prepare the reply
1930 ReadAttrStatReply* reply;
1931 status_t error = AllocateRequest(allocator, &reply);
1935 reply->error = result;
1936 reply->st = st;
1938 // send the reply
1958 // prepare the reply
1960 WriteAttrStatReply* reply;
1961 status_t error = AllocateRequest(allocator, &reply);
1965 reply->error = result;
1967 // send the reply
1988 // prepare the reply
1990 RenameAttrReply* reply;
1991 status_t error = AllocateRequest(allocator, &reply);
1995 reply->error = result;
1997 // send the reply
2017 // prepare the reply
2019 RemoveAttrReply* reply;
2020 status_t error = AllocateRequest(allocator, &reply);
2024 reply->error = result;
2026 // send the reply
2050 // prepare the reply
2052 OpenIndexDirReply* reply;
2053 status_t error = AllocateRequest(allocator, &reply);
2057 reply->error = result;
2058 reply->indexDirCookie = indexDirCookie;
2060 // send the reply
2079 // prepare the reply
2081 CloseIndexDirReply* reply;
2082 status_t error = AllocateRequest(allocator, &reply);
2086 reply->error = result;
2088 // send the reply
2107 // prepare the reply
2109 FreeIndexDirCookieReply* reply;
2110 status_t error = AllocateRequest(allocator, &reply);
2114 reply->error = result;
2116 // send the reply
2134 // allocate the reply
2136 ReadIndexDirReply* reply;
2137 status_t error = AllocateRequest(allocator, &reply);
2143 result = allocator.AllocateAddress(reply->buffer, bufferSize, 1,
2155 // reconstruct the reply, in case it has been overwritten
2156 reply = new(reply) ReadIndexDirReply;
2158 // send the reply
2159 reply->error = result;
2160 reply->count = countRead;
2179 // prepare the reply
2181 RewindIndexDirReply* reply;
2182 status_t error = AllocateRequest(allocator, &reply);
2186 reply->error = result;
2188 // send the reply
2208 // prepare the reply
2210 CreateIndexReply* reply;
2211 status_t error = AllocateRequest(allocator, &reply);
2215 reply->error = result;
2217 // send the reply
2236 // prepare the reply
2238 RemoveIndexReply* reply;
2239 status_t error = AllocateRequest(allocator, &reply);
2243 reply->error = result;
2245 // send the reply
2266 // prepare the reply
2268 ReadIndexStatReply* reply;
2269 status_t error = AllocateRequest(allocator, &reply);
2273 reply->error = result;
2274 reply->st = st;
2276 // send the reply
2301 // prepare the reply
2303 OpenQueryReply* reply;
2304 status_t error = AllocateRequest(allocator, &reply);
2308 reply->error = result;
2309 reply->queryCookie = queryCookie;
2311 // send the reply
2330 // prepare the reply
2332 CloseQueryReply* reply;
2333 status_t error = AllocateRequest(allocator, &reply);
2337 reply->error = result;
2339 // send the reply
2358 // prepare the reply
2360 FreeQueryCookieReply* reply;
2361 status_t error = AllocateRequest(allocator, &reply);
2365 reply->error = result;
2367 // send the reply
2385 // allocate the reply
2387 ReadQueryReply* reply;
2388 status_t error = AllocateRequest(allocator, &reply);
2394 result = allocator.AllocateAddress(reply->buffer, bufferSize, 1,
2406 // reconstruct the reply, in case it has been overwritten
2407 reply = new(reply) ReadQueryReply;
2409 // send the reply
2410 reply->error = result;
2411 reply->count = countRead;
2430 // prepare the reply
2432 RewindQueryReply* reply;
2433 status_t error = AllocateRequest(allocator, &reply);
2437 reply->error = result;
2439 // send the reply
2457 // prepare the reply
2459 NodeMonitoringEventReply* reply;
2460 status_t error = AllocateRequest(allocator, &reply);
2464 reply->error = B_OK;
2466 // send the reply