Lines Matching refs:call
32 Call* call = new(std::nothrow) Call; in Create() local
33 if (call == NULL) in Create()
37 call->fXIDPosition = call->fStream.Current(); in Create()
38 call->fStream.AddUInt(0); in Create()
40 call->fStream.AddInt(CALL); in Create()
41 call->fStream.AddUInt(VERSION); in Create()
42 call->fStream.AddUInt(PROGRAM_NFS); in Create()
43 call->fStream.AddUInt(NFS_VERSION); in Create()
44 call->fStream.AddUInt(proc); in Create()
46 call->fStream.Append(creds->Stream()); in Create()
49 call->fStream.Append(ver->Stream()); in Create()
52 if (call->fStream.Error() != B_OK) { in Create()
53 delete call; in Create()
57 return call; in Create()