Lines Matching refs:reply
55 sanei_w_init_reply (Wire *w, SANE_Init_Reply *reply)
57 sanei_w_status (w, &reply->status);
58 sanei_w_word (w, &reply->version_code);
62 sanei_w_get_devices_reply (Wire *w, SANE_Get_Devices_Reply *reply)
68 if (reply->device_list)
70 for (len = 0; reply->device_list[len]; ++len);
76 sanei_w_status (w, &reply->status);
77 sanei_w_array (w, &len, (void *) &reply->device_list,
79 sizeof (reply->device_list[0]));
83 sanei_w_open_reply (Wire *w, SANE_Open_Reply *reply)
85 sanei_w_status (w, &reply->status);
86 sanei_w_word (w, &reply->handle);
87 sanei_w_string (w, &reply->resource_to_authorize);
152 sanei_w_control_option_reply (Wire *w, SANE_Control_Option_Reply *reply)
154 sanei_w_status (w, &reply->status);
155 sanei_w_word (w, &reply->info);
156 sanei_w_word (w, &reply->value_type);
157 sanei_w_word (w, &reply->value_size);
158 w_option_value (w, reply->value_type, reply->value_size, &reply->value);
159 sanei_w_string (w, &reply->resource_to_authorize);
163 sanei_w_get_parameters_reply (Wire *w, SANE_Get_Parameters_Reply *reply)
165 sanei_w_status (w, &reply->status);
166 sanei_w_parameters (w, &reply->params);
170 sanei_w_start_reply (Wire *w, SANE_Start_Reply *reply)
172 sanei_w_status (w, &reply->status);
173 sanei_w_word (w, &reply->port);
174 sanei_w_word (w, &reply->byte_order);
175 sanei_w_string (w, &reply->resource_to_authorize);