/src/sys/fs/nfs/client/ |
nfs_clcomsubs.c | 61 int taglen; member in struct:__anon9a1659890108 194 nfsv4_opmap[procnum].taglen);
|
nfs_clstate.c | 3150 int numops, taglen = -1, error = 0, trunc; local in function:nfscl_docb 3172 taglen = fxdr_unsigned(int, *tl); 3173 if (taglen < 0) { 3177 if (taglen <= NFSV4_SMALLSTR) 3180 tagstr = malloc(taglen + 1, M_TEMP, M_WAITOK); 3181 error = nfsrv_mtostr(nd, tagstr, taglen); 3183 if (taglen > NFSV4_SMALLSTR) 3185 taglen = -1; 3188 (void) nfsm_strtom(nd, tag, taglen); 3189 if (taglen > NFSV4_SMALLSTR) [all...] |
/src/sys/fs/nfs/server/ |
nfs_nfsdkrpc.c | 322 int cacherep = RC_DOIT, isdgram, taglen = -1; local in function:nfs_proc 360 nfsd_getminorvers(nd, tag, &tagstr, &taglen, 382 nfsrvd_dorpc(nd, isdgram, tagstr, taglen, minorvers, td); 405 if (tagstr != NULL && taglen > NFSV4_SMALLSTR)
|
nfs_nfsdsubs.c | 2100 int error = 0, taglen = -1; local in function:nfsd_getminorvers 2104 taglen = fxdr_unsigned(int, *tl); 2105 if (taglen < 0 || taglen > NFSV4_OPAQUELIMIT) { 2109 if (taglen <= NFSV4_SMALLSTR) 2112 tagstr = malloc(taglen + 1, M_TEMP, M_WAITOK); 2113 error = nfsrv_mtostr(nd, tagstr, taglen); 2123 if (tagstr != NULL && taglen > NFSV4_SMALLSTR) 2125 taglen = -1; 2127 *taglenp = taglen; [all...] |
/src/common/lib/libprop/ |
prop_intern.c | 99 size_t taglen; local in function:_prop_xml_intern_find_tag 101 taglen = tag != NULL ? strlen(tag) : 0; 168 (taglen != ctx->poic_tagname_len || 169 memcmp(tag, ctx->poic_tagname, taglen) != 0)) {
|
/src/usr.sbin/sunlabel/ |
sunlabel.c | 156 int taglen; member in struct:field 884 if (fields[0].taglen < 1) { 886 fields[i].taglen = strlen(fields[i].tag); 894 if (((int)n == fields[i].taglen) && !memcmp(str, fields[i].tag, n)) {
|
/src/sys/fs/nfs/common/ |
bootp_subr.c | 183 int taglen; member in struct:bootpc_tagcontext 574 if (p != NULL && gctx->tmptag.taglen == 4) { 1370 if (tctx->taglen + len > TAG_MAXLEN) { 1376 memcpy(tctx->buf + tctx->taglen, 1378 tctx->taglen += len; 1395 tctx->taglen = 0; 1416 tctx->buf[tctx->taglen] = '\0'; 1462 if (gctx->tag.taglen != 4) 1464 gctx->tag.taglen); 1476 if (gctx->tag.taglen % 4 [all...] |