Searched refs:totlen (Results 1 - 10 of 10) sorted by relevance

/darwin-on-arm/xnu/bsd/security/audit/
H A Daudit_bsm_token.c1134 u_int32_t totlen; local
1138 totlen = 0;
1142 totlen += strlen(p) + 1;
1143 p = strs + totlen;
1145 GET_TOKEN_AREA(t, dptr, sizeof(u_char) + sizeof(u_int32_t) + totlen);
1148 ADD_STRING(dptr, strs, totlen);
1189 size_t totlen = 0; local
1197 totlen += nextlen + 1;
1202 totlen += count * sizeof(char); /* nul terminations. */
1203 GET_TOKEN_AREA(t, dptr, sizeof(u_char) + sizeof(u_int32_t) + totlen);
1248 size_t totlen = 0; local
[all...]
/darwin-on-arm/xnu/bsd/netinet6/
H A Dah_core.c1410 int totlen; local
1417 totlen = (ah.ah_len + 2) << 2;
1423 if (totlen > m->m_pkthdr.len - off ||
1424 totlen > MCLBYTES) {
1429 if (n && totlen > MLEN) {
1440 m_copydata(m, off, totlen, mtod(n, caddr_t));
1441 n->m_len = totlen;
1447 ah_update_mbuf(m, off, totlen, algo, &algos);
1451 advancewidth = totlen;
H A Dipsec.c2966 int totlen; local
2970 totlen = 0;
2976 totlen++;
2977 if (totlen % 16 == 0)
2982 if (totlen % 16 != 0)
/darwin-on-arm/xnu/bsd/kern/
H A Dkpi_mbuf.c1034 int totlen = 0; local
1043 totlen += mlen;
1068 totlen += mlen;
1088 if ((m_start->m_flags & M_PKTHDR) && (m_start->m_pkthdr.len < totlen))
1089 m_start->m_pkthdr.len = totlen;
H A Duipc_mbuf.c4924 m_devget(char *buf, int totlen, int off0, struct ifnet *ifp, argument
4934 epkt = cp + totlen;
4941 totlen -= 2 * sizeof (u_int16_t);
4947 m->m_pkthdr.len = totlen;
4950 while (totlen > 0) {
4959 len = MIN(totlen, epkt - cp);
4991 totlen -= len;
5229 int totlen = 0; local
5238 * we don't bother to update "totlen" in the case of M_COPYBACK0_COW,
5248 totlen
[all...]
/darwin-on-arm/xnu/bsd/net/
H A Dbpf.c2102 int totlen, curlen; local
2115 totlen = hdrlen + min(snaplen, pktlen);
2116 if (totlen > d->bd_bufsize)
2117 totlen = d->bd_bufsize;
2123 if (curlen + totlen > d->bd_bufsize) {
2161 ehp->bh_caplen = totlen - hdrlen;
2179 hp->bh_caplen = totlen - hdrlen;
2187 d->bd_slen = curlen + totlen;
H A Dbsd_comp.c118 int totlen; /* length of this structure */ member in struct:bsd_db
400 db->totlen = newlen;
/darwin-on-arm/xnu/EXTERNAL_HEADERS/corecrypto/
H A Dccmode_factory.h346 uint64_t totlen; /* 64-bit counter used for IV and AAD */ member in struct:_ccmode_gcm_key
/darwin-on-arm/xnu/bsd/netkey/
H A Dkey.c6957 int totlen; local
6991 totlen = 0;
6993 totlen += n->m_len;
6995 if (totlen % l)
6999 for (off = 0; off < totlen; off += l) {
7144 int totlen; local
7168 totlen = 0;
7170 totlen += n->m_len;
7174 prop->sadb_prop_len = PFKEY_UNIT64(totlen);
/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs_vfsops.c5077 uint numExports, totlen, pos, numRecs, count; local
5186 totlen = sizeof(struct nfs_export_stat_desc) + (numExports * sizeof(struct nfs_export_stat_rec));
5192 *oldlenp = totlen;
5200 *oldlenp = totlen;
5205 *oldlenp = totlen;

Completed in 110 milliseconds