Searched refs:taglen (Results 1 – 10 of 10) sorted by relevance
/Linux-v4.19/fs/nfs/ |
D | callback.h | 51 unsigned int taglen; member 60 unsigned int taglen; member
|
D | callback_xdr.c | 156 status = decode_string(xdr, &hdr->taglen, &hdr->tag, CB_OP_TAGLEN_MAXSZ); in decode_compound_hdr_arg() 672 status = encode_string(xdr, hdr->taglen, hdr->tag); in encode_compound_hdr_res() 965 hdr_res.taglen = hdr_arg.taglen; in nfs4_callback_compound()
|
D | nfs4xdr.c | 942 uint32_t taglen; member 1023 hdr->replen = RPC_REPHDRSIZE + auth->au_rslack + 3 + hdr->taglen; in encode_compound_hdr() 1025 WARN_ON_ONCE(hdr->taglen > NFS4_MAXTAGLEN); in encode_compound_hdr() 1026 encode_string(xdr, hdr->taglen, hdr->tag); in encode_compound_hdr() 3175 hdr->taglen = be32_to_cpup(p); in decode_compound_hdr() 3177 p = xdr_inline_decode(xdr, hdr->taglen + 4); in decode_compound_hdr() 3181 p += XDR_QUADLEN(hdr->taglen); in decode_compound_hdr()
|
/Linux-v4.19/arch/s390/crypto/ |
D | aes_s390.c | 924 unsigned int taglen = crypto_aead_authsize(tfm); in gcm_aes_crypt() local 955 pclen -= taglen; in gcm_aes_crypt() 1007 scatterwalk_map_and_copy(tag, req->src, len, taglen, 0); in gcm_aes_crypt() 1008 if (crypto_memneq(tag, param.t, taglen)) in gcm_aes_crypt() 1011 scatterwalk_map_and_copy(param.t, req->dst, len, taglen, 1); in gcm_aes_crypt()
|
/Linux-v4.19/net/ipv4/ |
D | cipso_ipv4.c | 1523 int taglen; in cipso_v4_optptr() local 1532 taglen = 1; in cipso_v4_optptr() 1535 taglen = optptr[1]; in cipso_v4_optptr() 1537 optlen -= taglen; in cipso_v4_optptr() 1538 optptr += taglen; in cipso_v4_optptr()
|
/Linux-v4.19/fs/nfsd/ |
D | xdr4.h | 628 u32 taglen; member 642 u32 taglen; member
|
D | nfs4xdr.c | 1911 argp->taglen = be32_to_cpup(p++); in nfsd4_decode_compound() 1912 READ_BUF(argp->taglen); in nfsd4_decode_compound() 1913 SAVEMEM(argp->tag, argp->taglen); in nfsd4_decode_compound() 1917 max_reply += 4 + (XDR_QUADLEN(argp->taglen) << 2); in nfsd4_decode_compound() 1919 if (argp->taglen > NFSD4_MAX_TAGLEN) in nfsd4_decode_compound() 4558 *p++ = htonl(resp->taglen); in nfs4svc_encode_compoundres() 4559 memcpy(p, resp->tag, resp->taglen); in nfs4svc_encode_compoundres() 4560 p += XDR_QUADLEN(resp->taglen); in nfs4svc_encode_compoundres()
|
D | nfs4proc.c | 1696 xdr_reserve_space(&resp->xdr, 8 + args->taglen); in nfsd4_proc_compound() 1697 resp->taglen = args->taglen; in nfsd4_proc_compound()
|
/Linux-v4.19/scripts/mod/ |
D | modpost.c | 731 unsigned int taglen = strlen(tag); in get_next_modinfo() local 741 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') in get_next_modinfo() 742 return p + taglen + 1; in get_next_modinfo()
|
/Linux-v4.19/kernel/ |
D | module.c | 2483 unsigned int taglen = strlen(tag); in get_modinfo() local 2492 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') in get_modinfo() 2493 return p + taglen + 1; in get_modinfo()
|