Home
last modified time | relevance | path

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

/xnu-8796.121.2/bsd/net/
H A Dnecp_client.c1410 struct necp_client_update *client_update; in necp_client_update_alloc() local
1422 client_update = kalloc_type(struct necp_client_update, in necp_client_update_alloc()
1424 client_update->update_length = alloc_size; in necp_client_update_alloc()
1425 client_update->update = buffer; in necp_client_update_alloc()
1427 return client_update; in necp_client_update_alloc()
1431 necp_client_update_free(struct necp_client_update *client_update) in necp_client_update_free() argument
1433 kfree_data(client_update->update, client_update->update_length); in necp_client_update_free()
1434 kfree_type(struct necp_client_update, client_update); in necp_client_update_free()
1440 struct necp_client_update *client_update; in necp_client_update_observer_add_internal() local
1449 client_update = necp_client_update_alloc(client->parameters, client->parameters_length); in necp_client_update_observer_add_internal()
[all …]