Lines Matching refs:agent_uuid
362 netagent_post_event(uuid_t agent_uuid, u_int32_t event_code, bool update_necp, bool should_update_i… in netagent_post_event() argument
378 uuid_copy(event_data.netagent_uuid, agent_uuid); in netagent_post_event()
1306 uuid_t agent_uuid = {}; in netagent_handle_unregister_setopt() local
1307 uuid_copy(agent_uuid, payload); in netagent_handle_unregister_setopt()
1308 netagent_unregister_one_session_registration(session, agent_uuid); in netagent_handle_unregister_setopt()
1781 uuid_t agent_uuid = {}; in netagent_handle_assign_nexus_setopt() local
1782 uuid_copy(agent_uuid, payload); in netagent_handle_assign_nexus_setopt()
1783 registration = netagent_session_find_agent_with_uuid_and_lock(session, agent_uuid, false, false); in netagent_handle_assign_nexus_setopt()
1944 uuid_t agent_uuid = {}; in netagent_handle_assign_group_setopt() local
1945 uuid_copy(agent_uuid, payload); in netagent_handle_assign_group_setopt()
1946 registration = netagent_session_find_agent_with_uuid_and_lock(session, agent_uuid, false, false); in netagent_handle_assign_group_setopt()
2029 uuid_t agent_uuid = {}; in netagent_handle_use_count_setopt() local
2030 uuid_copy(agent_uuid, payload); in netagent_handle_use_count_setopt()
2031 registration = netagent_session_find_agent_with_uuid_and_lock(session, agent_uuid, false, false); in netagent_handle_use_count_setopt()
2081 uuid_t agent_uuid = {}; in netagent_handle_use_count_getopt() local
2082 uuid_copy(agent_uuid, buffer); in netagent_handle_use_count_getopt()
2083 registration = netagent_session_find_agent_with_uuid_and_lock(session, agent_uuid, false, false); in netagent_handle_use_count_getopt()
2135 uuid_t agent_uuid = {}; in netagent_handle_add_token_setopt() local
2136 uuid_copy(agent_uuid, token); in netagent_handle_add_token_setopt()
2137 registration = netagent_session_find_agent_with_uuid_and_lock(session, agent_uuid, true, false); in netagent_handle_add_token_setopt()
2198 uuid_t agent_uuid = {}; in netagent_handle_flush_tokens_setopt() local
2199 uuid_copy(agent_uuid, buffer); in netagent_handle_flush_tokens_setopt()
2200 registration = netagent_session_find_agent_with_uuid_and_lock(session, agent_uuid, true, false); in netagent_handle_flush_tokens_setopt()
2255 uuid_t agent_uuid = {}; in netagent_handle_token_count_getopt() local
2256 uuid_copy(agent_uuid, buffer); in netagent_handle_token_count_getopt()
2257 registration = netagent_session_find_agent_with_uuid_and_lock(session, agent_uuid, false, false); in netagent_handle_token_count_getopt()
2312 uuid_t agent_uuid = {}; in netagent_handle_token_low_water_setopt() local
2313 uuid_copy(agent_uuid, buffer); in netagent_handle_token_low_water_setopt()
2314 registration = netagent_session_find_agent_with_uuid_and_lock(session, agent_uuid, true, false); in netagent_handle_token_low_water_setopt()
2364 uuid_t agent_uuid = {}; in netagent_handle_token_low_water_getopt() local
2365 uuid_copy(agent_uuid, buffer); in netagent_handle_token_low_water_getopt()
2366 registration = netagent_session_find_agent_with_uuid_and_lock(session, agent_uuid, false, false); in netagent_handle_token_low_water_getopt()
2410 uuid_t agent_uuid = {}; in netagent_handle_reset_client_error_setopt() local
2411 uuid_copy(agent_uuid, payload); in netagent_handle_reset_client_error_setopt()
2412 registration = netagent_session_find_agent_with_uuid_and_lock(session, agent_uuid, true, false); in netagent_handle_reset_client_error_setopt()
2826 netagent_client_message_with_params(uuid_t agent_uuid, in netagent_client_message_with_params() argument
2853 …struct netagent_registration *registration = netagent_find_agent_with_uuid_and_lock(agent_uuid, fa… in netagent_client_message_with_params()
3003 uuid_unparse(agent_uuid, uuid_str); in netagent_client_message_with_params()
3017 netagent_client_message(uuid_t agent_uuid, uuid_t necp_client_uuid, pid_t pid, void *handle, u_int8… in netagent_client_message() argument
3022 …return netagent_client_message_with_params(agent_uuid, necp_client_uuid, pid, handle, message_type… in netagent_client_message()
3026 netagent_use(uuid_t agent_uuid, uint64_t *out_use_count) in netagent_use() argument
3031 …struct netagent_registration *registration = netagent_find_agent_with_uuid_and_lock(agent_uuid, tr… in netagent_use()
3054 netagent_copyout(uuid_t agent_uuid, user_addr_t user_addr, u_int32_t user_size) in netagent_copyout() argument
3059 …struct netagent_registration *registration = netagent_find_agent_with_uuid_and_lock(agent_uuid, fa… in netagent_copyout()
3088 netagent_acquire_token(uuid_t agent_uuid, user_addr_t user_addr, u_int32_t user_size, int *retval) in netagent_acquire_token() argument
3093 …struct netagent_registration *registration = netagent_find_agent_with_uuid_and_lock(agent_uuid, tr… in netagent_acquire_token()
3153 uuid_t agent_uuid = {}; in netagent_trigger() local
3161 if (uap->agent_uuid) { in netagent_trigger()
3168 error = copyin(uap->agent_uuid, agent_uuid, sizeof(uuid_t)); in netagent_trigger()
3175 if (uuid_is_null(agent_uuid)) { in netagent_trigger()
3181 …struct netagent_registration *registration = netagent_find_agent_with_uuid_and_lock(agent_uuid, fa… in netagent_trigger()