Lines Matching refs:get_info_response
64 nvram::GetInfoResponse get_info_response; in device_get_total_size_in_bytes() local
66 device, std::move(get_info_request), &get_info_response); in device_get_total_size_in_bytes()
67 *total_size = get_info_response.total_size; in device_get_total_size_in_bytes()
74 nvram::GetInfoResponse get_info_response; in device_get_available_size_in_bytes() local
76 device, std::move(get_info_request), &get_info_response); in device_get_available_size_in_bytes()
77 *available_size = get_info_response.available_size; in device_get_available_size_in_bytes()
84 nvram::GetInfoResponse get_info_response; in device_get_max_space_size_in_bytes() local
86 device, std::move(get_info_request), &get_info_response); in device_get_max_space_size_in_bytes()
87 *max_space_size = get_info_response.max_space_size; in device_get_max_space_size_in_bytes()
94 nvram::GetInfoResponse get_info_response; in device_get_max_spaces() local
96 device, std::move(get_info_request), &get_info_response); in device_get_max_spaces()
97 *num_spaces = get_info_response.max_spaces; in device_get_max_spaces()
106 nvram::GetInfoResponse get_info_response; in device_get_space_list() local
108 device, std::move(get_info_request), &get_info_response); in device_get_space_list()
111 *list_size = std::min(get_info_response.space_list.size(), in device_get_space_list()
114 space_index_list[i] = get_info_response.space_list[i]; in device_get_space_list()
117 *list_size = get_info_response.space_list.size(); in device_get_space_list()