Lines Matching refs:response_size
485 size_t response_size = sizeof(struct netagent_message_header); in netagent_send_success_response() local
486 response = (u_int8_t *)kalloc_data(response_size, Z_WAITOK); in netagent_send_success_response()
492 if ((error = netagent_send_ctl_data(session->control_unit, response, response_size))) { in netagent_send_success_response()
496 kfree_data(response, response_size); in netagent_send_success_response()
506 size_t response_size = sizeof(struct netagent_message_header); in netagent_send_error_response() local
513 response = (u_int8_t *)kalloc_data(response_size, Z_WAITOK); in netagent_send_error_response()
520 if ((error = netagent_send_ctl_data(session->control_unit, response, response_size))) { in netagent_send_error_response()
524 kfree_data(response, response_size); in netagent_send_error_response()
1473 size_t response_size = sizeof(struct netagent_message_header) in netagent_handle_get() local
1476 response = (u_int8_t *)kalloc_data(response_size, Z_WAITOK); in netagent_handle_get()
1486 response_size - sizeof(struct netagent_message_header)); in netagent_handle_get()
1493 if (!netagent_send_ctl_data(session->control_unit, response, response_size)) { in netagent_handle_get()
1496 kfree_data(response, response_size); in netagent_handle_get()
2182 size_t response_size = 0; in netagent_dump_copy_data_locked() local
2186 …response_size = buffer_length; // We already know that buffer_length is the same as total_netagent… in netagent_dump_copy_data_locked()