Home
last modified time | relevance | path

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

/xnu-12377.61.12/bsd/net/
H A Dnecp_client.c1667 struct necp_client_update *client_update; in necp_client_update_alloc() local
1679 client_update = kalloc_type(struct necp_client_update, in necp_client_update_alloc()
1681 client_update->update_length = alloc_size; in necp_client_update_alloc()
1682 client_update->update = buffer; in necp_client_update_alloc()
1684 return client_update; in necp_client_update_alloc()
1688 necp_client_update_free(struct necp_client_update *client_update) in necp_client_update_free() argument
1690 kfree_data_sized_by(client_update->update, client_update->update_length); in necp_client_update_free()
1691 kfree_type(struct necp_client_update, client_update); in necp_client_update_free()
1697 struct necp_client_update *client_update; in necp_client_update_observer_add_internal() local
1706 client_update = necp_client_update_alloc(client->parameters, client->parameters_length); in necp_client_update_observer_add_internal()
[all …]