Lines Matching defs:reply

41 		ReplyInterpreter& reply = request.Reply();
43 if (HandleErrors(attempt, reply.NFS4Error(), serv))
46 reply.PutFH();
50 result = reply.GetAttr(&values, &count);
79 ReplyInterpreter& reply = request.Reply();
81 if (HandleErrors(attempt, reply.NFS4Error(), serv))
84 reply.PutFH();
85 return reply.Commit();
108 ReplyInterpreter& reply = request.Reply();
110 if (HandleErrors(attempt, reply.NFS4Error(), serv))
113 reply.PutFH();
115 return reply.Access(NULL, allowed);
155 ReplyInterpreter& reply = request.Reply();
157 if (HandleErrors(attempt, reply.NFS4Error(), serv))
160 reply.PutFH();
165 result = reply.GetAttr(&values, &count);
174 result = reply.LookUpUp();
176 result = reply.LookUp();
181 reply.GetFH(handle);
183 result = reply.GetAttr(&values, &count);
231 ReplyInterpreter& reply = request.Reply();
233 if (HandleErrors(attempt, reply.NFS4Error(), serv))
236 reply.PutFH();
237 reply.SaveFH();
238 reply.PutFH();
240 return reply.Link(&changeInfo->fBefore, &changeInfo->fAfter,
265 ReplyInterpreter& reply = request.Reply();
267 if (HandleErrors(attempt, reply.NFS4Error(), serv))
270 reply.PutFH();
273 result = reply.ReadLink(buffer, &size, *length);
308 ReplyInterpreter& reply = request.Reply();
310 if (HandleErrors(attempt, reply.NFS4Error(), serv))
313 reply.PutFH();
315 return reply.GetAttr(values, count);
343 ReplyInterpreter& reply = request.Reply();
345 if (HandleErrors(attempt, reply.NFS4Error(), serv))
348 reply.PutFH();
349 result = reply.SetAttr();
398 ReplyInterpreter& reply = request.Reply();
403 bool retry = from->HandleErrors(attempt, reply.NFS4Error(), server);
404 if (IsFileHandleInvalid(reply.NFS4Error()))
405 retry |= to->HandleErrors(attempt, reply.NFS4Error(), server);
409 reply.PutFH();
410 reply.SaveFH();
411 reply.PutFH();
413 result = reply.Rename(&fromChange->fBefore, &fromChange->fAfter,
420 result = reply.LookUp();
426 result = reply.GetAttr(&values, &count);
498 ReplyInterpreter& reply = request.Reply();
500 result = reply.PutFH();
502 sequence += IncrementSequence(reply.NFS4Error());
504 if (HandleErrors(attempt, reply.NFS4Error(), serv, NULL, state,
509 result = reply.Open(state->fStateID, &state->fStateSeq, &confirm,
516 reply.GetFH(handle);
521 result = reply.GetAttr(&values, &count);
597 ReplyInterpreter& reply = request.Reply();
603 reply.PutFH();
604 result = reply.LookUp();
610 result = reply.Verify();
611 if (result != B_OK && reply.NFS4Error() == NFS4ERR_NOT_SAME) {
617 result = reply.PutFH();
619 sequence += IncrementSequence(reply.NFS4Error());
621 if (HandleErrors(attempt, reply.NFS4Error(), serv, NULL, state,
626 result = reply.Open(state->fStateID, &state->fStateSeq, &confirm,
634 result = reply.GetFH(&handle);
685 ReplyInterpreter& reply = request.Reply();
687 result = reply.PutFH();
689 sequence += IncrementSequence(reply.NFS4Error());
691 if (HandleErrors(attempt, reply.NFS4Error(), serv, NULL, state,
696 result = reply.Open(state->fStateID, &state->fStateSeq, &confirm,
699 reply.GetFH(&state->fInfo.fHandle);
741 ReplyInterpreter& reply = request.Reply();
743 if (HandleErrors(attempt, reply.NFS4Error(), serv, cookie, state))
746 reply.PutFH();
747 result = reply.Read(buffer, length, eof);
779 ReplyInterpreter& reply = request.Reply();
781 if (HandleErrors(attempt, reply.NFS4Error(), serv, cookie, state))
784 reply.PutFH();
786 result = reply.Write(length);
842 ReplyInterpreter& reply = request.Reply();
844 if (HandleErrors(attempt, reply.NFS4Error(), serv))
847 reply.PutFH();
848 result = reply.Create(&changeInfo->fBefore, &changeInfo->fAfter,
853 result = reply.GetFH(handle);
860 result = reply.GetAttr(&values, &count);
913 ReplyInterpreter& reply = request.Reply();
915 if (HandleErrors(attempt, reply.NFS4Error(), serv))
918 reply.PutFH();
919 result = reply.LookUp();
924 result = reply.Verify();
926 result = reply.Nverify();
938 result = reply.GetAttr(&values, &count);
949 reply.PutFH();
950 return reply.Remove(&changeInfo->fBefore, &changeInfo->fAfter,
990 ReplyInterpreter& reply = request.Reply();
992 if (HandleErrors(attempt, reply.NFS4Error(), serv))
995 reply.PutFH();
1000 result = reply.GetAttr(&before, &attrCount);
1006 result = reply.ReadDir(dirCookie, dirCookieVerf, dirents, count, eof);
1013 result = reply.GetAttr(&after, &attrCount);
1051 ReplyInterpreter& reply = request.Reply();
1053 if (HandleErrors(attempt, reply.NFS4Error(), serv))
1056 reply.PutFH();
1057 result = reply.OpenAttrDir();
1061 return reply.GetFH(handle);
1088 ReplyInterpreter& reply = request.Reply();
1089 if (reply.NFS4Error() != NFS4ERR_DENIED) {
1090 if (HandleErrors(attempt, reply.NFS4Error(), serv, cookie))
1094 reply.PutFH();
1095 result = reply.LockT(position, length, type);
1096 if (reply.NFS4Error() == NFS4ERR_DENIED) {
1099 } else if (reply.NFS4Error() == NFS4_OK)
1133 ReplyInterpreter& reply = request.Reply();
1135 result = reply.PutFH();
1137 sequence += IncrementSequence(reply.NFS4Error());
1139 result = reply.Lock(lockInfo);
1143 if (reply.NFS4Error() != NFS4ERR_DENIED || wait) {
1144 if (HandleErrors(attempt, reply.NFS4Error(), serv, cookie, NULL,
1180 ReplyInterpreter& reply = request.Reply();
1182 reply.PutFH();
1183 result = reply.LockU(lockInfo);
1186 if (HandleErrors(attempt, reply.NFS4Error(), serv, cookie))