Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/net/
H A Dnecp_client.c1382 struct necp_client_update *client_update; in necp_client_update_alloc() local
1394 client_update = kalloc_type(struct necp_client_update, in necp_client_update_alloc()
1396 client_update->update_length = alloc_size; in necp_client_update_alloc()
1397 client_update->update = buffer; in necp_client_update_alloc()
1399 return client_update; in necp_client_update_alloc()
1403 necp_client_update_free(struct necp_client_update *client_update) in necp_client_update_free() argument
1405 kfree_data(client_update->update, client_update->update_length); in necp_client_update_free()
1406 kfree_type(struct necp_client_update, client_update); in necp_client_update_free()
1412 struct necp_client_update *client_update; in necp_client_update_observer_add_internal() local
1421 client_update = necp_client_update_alloc(client->parameters, client->parameters_length); in necp_client_update_observer_add_internal()
[all …]