Lines Matching full:first
377 /* If room in current mbuf, copy the first part of the data into the in os_mbuf_append()
857 os_mbuf_concat(struct os_mbuf *first, struct os_mbuf *second) in os_mbuf_concat() argument
862 /* Point 'cur' to the last buffer in the first chain. */ in os_mbuf_concat()
863 cur = first; in os_mbuf_concat()
873 /* Attach the second chain to the end of the first. */ in os_mbuf_concat()
876 /* If the first chain has a packet header, calculate the length of the in os_mbuf_concat()
879 if (OS_MBUF_IS_PKTHDR(first)) { in os_mbuf_concat()
881 OS_MBUF_PKTHDR(first)->omp_len += OS_MBUF_PKTHDR(second)->omp_len; in os_mbuf_concat()
884 OS_MBUF_PKTHDR(first)->omp_len += cur->om_len; in os_mbuf_concat()
942 * If first mbuf has no cluster, and has room for len bytes in os_mbuf_pullup()
1020 /* All buffers after the first have been freed. */ in os_mbuf_trim_front()
1024 /* Try to remove the first mbuf in the chain. If this buffer contains a in os_mbuf_trim_front()
1032 /* Free first buffer. */ in os_mbuf_trim_front()