Home
last modified time | relevance | path

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

/xnu-12377.41.6/bsd/net/
H A Dnetwork_agent.c880 struct netagent_registration *new_registration; in netagent_alloc_registration_memory() local
883 new_registration = kalloc_type(struct netagent_registration, in netagent_alloc_registration_memory()
885 new_registration->netagent = kalloc_data(netagent_alloc_size, Z_WAITOK | Z_NOFAIL); in netagent_alloc_registration_memory()
886 new_registration->netagent_alloc_size = netagent_alloc_size; in netagent_alloc_registration_memory()
888 lck_rw_init(&new_registration->agent_lock, &netagent_mtx_grp, LCK_ATTR_NULL); in netagent_alloc_registration_memory()
890 return new_registration; in netagent_alloc_registration_memory()
1054 …le_register_inner(struct netagent_session *session, struct netagent_registration *new_registration) in netagent_handle_register_inner() argument
1066 …ion *existing_registration = netagent_find_agent_with_uuid_and_lock(new_registration->netagent->ne… in netagent_handle_register_inner()
1074 new_registration->control_unit = session->control_unit; in netagent_handle_register_inner()
1075 new_registration->allow_multiple_registrations = session->allow_multiple_registrations; in netagent_handle_register_inner()
[all …]
H A Dnecp_client.c3601 …struct necp_client_flow_registration *new_registration = kalloc_type(struct necp_client_flow_regis… in necp_client_create_flow_registration() local
3603new_registration->last_interface_details = combine_interface_details(IFSCOPE_NONE, NSTAT_IFNET_IS_… in necp_client_create_flow_registration()
3605 necp_generate_client_id(new_registration->registration_id, true); in necp_client_create_flow_registration()
3606 LIST_INIT(&new_registration->flow_list); in necp_client_create_flow_registration()
3609 RB_INSERT(_necp_client_flow_tree, &client->flow_registrations, new_registration); in necp_client_create_flow_registration()
3612 RB_INSERT(_necp_fd_flow_tree, &fd_data->flows, new_registration); in necp_client_create_flow_registration()
3616 RB_INSERT(_necp_client_flow_global_tree, &necp_client_flow_global_tree, new_registration); in necp_client_create_flow_registration()
3619 new_registration->client = client; in necp_client_create_flow_registration()
3625 uuid_copy(client->latest_flow_registration_id, new_registration->registration_id); in necp_client_create_flow_registration()
3635 new_registration->flow_result_read = true; in necp_client_create_flow_registration()
[all …]