Home
last modified time | relevance | path

Searched refs:flows (Results 1 – 3 of 3) sorted by relevance

/xnu-8796.141.3/tools/lldbmacros/
H A Dskywalk.py705 flows = []
708 flows.append(fe)
711 return flows
740 flows = GetFlowswitchFlowEntries(fsw)
741 flows.sort(key=GetFlowEntryPid)
742 for fe in flows:
/xnu-8796.141.3/bsd/netinet/
H A Dmptcp_subr.c6109 mptcp_flow_t *flows = NULL; variable
6124 flows = NULL;
6154 len = sizeof(*flows) * mpte->mpte_numflows;
6156 flows = kalloc_data(len, Z_WAITOK | Z_ZERO);
6157 if (flows == NULL) {
6162 sizeof(*flows) * (mptcpci.mptcpci_nflows - 1);
6171 kfree_data(flows, len);
6177 fill_mptcp_subflow(so, &flows[f], mpts);
6181 if (flows) {
6182 error = SYSCTL_OUT(req, flows, len);
[all …]
/xnu-8796.141.3/bsd/net/
H A Dnecp_client.c622 struct _necp_fd_flow_tree flows; member
911 …struct necp_client_flow_registration *flow = RB_FIND(_necp_fd_flow_tree, &client_fd->flows, &find); in necp_client_fd_find_client_unlocked()
1783 RB_FOREACH_SAFE(flow_registration, _necp_fd_flow_tree, &fd_data->flows, temp_flow_registration) { in necpop_close()
1790 RB_REMOVE(_necp_fd_flow_tree, &fd_data->flows, flow_registration); in necpop_close()
3297 RB_INSERT(_necp_fd_flow_tree, &fd_data->flows, new_registration); in necp_client_create_flow_registration()
6798 RB_INIT(&fd_data->flows); in necp_open()
7264 RB_FOREACH_SAFE(flow_registration, _necp_fd_flow_tree, &fd_data->flows, temp_flow_registration) { in necp_client_remove()
7272 RB_REMOVE(_necp_fd_flow_tree, &fd_data->flows, flow_registration); in necp_client_remove()
7332 flow = RB_FIND(_necp_fd_flow_tree, &client_fd->flows, &find); in necp_client_fd_find_flow()
7379 RB_REMOVE(_necp_fd_flow_tree, &fd_data->flows, flow_registration); in necp_client_remove_flow()
[all …]