Searched refs:flows (Results 1 – 3 of 3) sorted by relevance
| /xnu-10063.141.1/tools/lldbmacros/ |
| H A D | skywalk.py | 708 flows = [] 711 flows.append(fe) 714 return flows 743 flows = GetFlowswitchFlowEntries(fsw) 744 flows.sort(key=GetFlowEntryPid) 745 for fe in flows:
|
| /xnu-10063.141.1/bsd/netinet/ |
| H A D | mptcp_subr.c | 6105 mptcp_flow_t *flows = NULL; variable 6120 flows = NULL; 6150 len = sizeof(*flows) * mpte->mpte_numflows; 6152 flows = kalloc_data(len, Z_WAITOK | Z_ZERO); 6153 if (flows == NULL) { 6158 sizeof(*flows) * (mptcpci.mptcpci_nflows - 1); 6167 kfree_data(flows, len); 6173 fill_mptcp_subflow(so, &flows[f], mpts); 6177 if (flows) { 6178 error = SYSCTL_OUT(req, flows, len); [all …]
|
| /xnu-10063.141.1/bsd/net/ |
| H A D | necp_client.c | 636 struct _necp_fd_flow_tree flows; member 932 …struct necp_client_flow_registration *flow = RB_FIND(_necp_fd_flow_tree, &client_fd->flows, &find); in necp_client_fd_find_client_unlocked() 1807 RB_FOREACH_SAFE(flow_registration, _necp_fd_flow_tree, &fd_data->flows, temp_flow_registration) { in necpop_close() 1814 RB_REMOVE(_necp_fd_flow_tree, &fd_data->flows, flow_registration); in necpop_close() 3343 RB_INSERT(_necp_fd_flow_tree, &fd_data->flows, new_registration); in necp_client_create_flow_registration() 7022 RB_INIT(&fd_data->flows); in necp_open() 7488 RB_FOREACH_SAFE(flow_registration, _necp_fd_flow_tree, &fd_data->flows, temp_flow_registration) { in necp_client_remove() 7496 RB_REMOVE(_necp_fd_flow_tree, &fd_data->flows, flow_registration); in necp_client_remove() 7556 flow = RB_FIND(_necp_fd_flow_tree, &client_fd->flows, &find); in necp_client_fd_find_flow() 7603 RB_REMOVE(_necp_fd_flow_tree, &fd_data->flows, flow_registration); in necp_client_remove_flow() [all …]
|