Lines Matching defs:in

12  * This program is distributed in the hope that it will be useful, but
36 * Pre win8 version numbers used in ws2008 and ws 2008 r2 (win7)
67 * outstanding transaction from the host at any given point in time. We use
68 * this to simplify memory management in this driver - we cache and process
72 * ensure this by serializing packet processing in this driver - we do not
263 struct hv_kvp_msg *in = in_msg;
272 len = utf8s_to_utf16s((char *)in->body.kvp_ip_val.ip_addr,
273 strlen((char *)in->body.kvp_ip_val.ip_addr),
280 len = utf8s_to_utf16s((char *)in->body.kvp_ip_val.sub_net,
281 strlen((char *)in->body.kvp_ip_val.sub_net),
288 len = utf8s_to_utf16s((char *)in->body.kvp_ip_val.gate_way,
289 strlen((char *)in->body.kvp_ip_val.gate_way),
296 len = utf8s_to_utf16s((char *)in->body.kvp_ip_val.dns_addr,
297 strlen((char *)in->body.kvp_ip_val.dns_addr),
304 len = utf8s_to_utf16s((char *)in->body.kvp_ip_val.adapter_id,
305 strlen((char *)in->body.kvp_ip_val.adapter_id),
313 in->body.kvp_ip_val.dhcp_enabled;
315 in->body.kvp_ip_val.addr_family;
323 struct hv_kvp_ip_msg *in = in_msg;
331 utf16s_to_utf8s((wchar_t *)in->kvp_ip_val.ip_addr,
337 utf16s_to_utf8s((wchar_t *)in->kvp_ip_val.sub_net,
343 utf16s_to_utf8s((wchar_t *)in->kvp_ip_val.gate_way,
349 utf16s_to_utf8s((wchar_t *)in->kvp_ip_val.dns_addr,
355 out->body.kvp_ip_val.dhcp_enabled = in->kvp_ip_val.dhcp_enabled;
360 utf16s_to_utf8s((wchar_t *)in->kvp_ip_val.adapter_id,
366 out->body.kvp_ip_val.addr_family = in->kvp_ip_val.addr_family;
398 * in utf16; convert it to utf8 strings.
401 * for the string terminating character - in the utf16s_utf8s()
593 * in utf16. Ensure that the key/value size reported to the host
628 * KVP implementation in Linux needs to forward the key to a user-mde
630 * respond to the host in the context of this callback. Since the host
632 * we stash away the transaction state in a set of global variables.