Home
last modified time | relevance | path

Searched refs:split_flags (Results 1 – 2 of 2) sorted by relevance

/third_party/lwip/src/core/
Dtcp_out.c845 u8_t split_flags; in tcp_split_unsent_seg() local
913 split_flags = TCPH_FLAGS(useg->tcphdr); in tcp_split_unsent_seg()
916 if (split_flags & TCP_PSH) { in tcp_split_unsent_seg()
917 split_flags &= ~TCP_PSH; in tcp_split_unsent_seg()
920 if (split_flags & TCP_FIN) { in tcp_split_unsent_seg()
921 split_flags &= ~TCP_FIN; in tcp_split_unsent_seg()
947 TCPH_SET_FLAG(useg->tcphdr, split_flags); in tcp_split_unsent_seg()
/third_party/rust/crates/pkg-config-rs/src/
Dlib.rs666 let words = split_flags(output); in parse_libs_cflags()
844 fn split_flags(output: &[u8]) -> Vec<String> { in split_flags() function