Searched defs:dst_idx (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip/src/core/snmp/
H A Dmsg_out.c81 * @param dst_idx index in 0 .. SNMP_TRAP_DESTINATIONS-1
85 snmp_trap_dst_enable(u8_t dst_idx, u8_t enable) argument
87 if (dst_idx < SNMP_TRAP_DESTINATIONS)
89 trap_dst[dst_idx].enable = enable;
95 * @param dst_idx index in 0 .. SNMP_TRAP_DESTINATIONS-1
99 snmp_trap_dst_ip_set(u8_t dst_idx, struct ip_addr *dst) argument
101 if (dst_idx < SNMP_TRAP_DESTINATIONS)
103 trap_dst[dst_idx].dip.addr = htonl(dst->addr);
/vbox/src/VBox/Devices/Network/lwip-new/src/core/snmp/
H A Dmsg_out.c77 * @param dst_idx index in 0 .. SNMP_TRAP_DESTINATIONS-1
81 snmp_trap_dst_enable(u8_t dst_idx, u8_t enable) argument
83 if (dst_idx < SNMP_TRAP_DESTINATIONS)
85 trap_dst[dst_idx].enable = enable;
91 * @param dst_idx index in 0 .. SNMP_TRAP_DESTINATIONS-1
95 snmp_trap_dst_ip_set(u8_t dst_idx, ip_addr_t *dst) argument
97 if (dst_idx < SNMP_TRAP_DESTINATIONS)
99 ip_addr_set(&trap_dst[dst_idx].dip, dst);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d8/
H A Ddevice.c2134 UINT dst_idx, UINT vertex_count, IDirect3DVertexBuffer8 *dst_buffer, DWORD flags)
2140 TRACE("iface %p, src_start_idx %u, dst_idx %u, vertex_count %u, dst_buffer %p, flags %#x.\n",
2141 iface, src_start_idx, dst_idx, vertex_count, dst_buffer, flags);
2144 hr = wined3d_device_process_vertices(device->wined3d_device, src_start_idx, dst_idx,
2133 d3d8_device_ProcessVertices(IDirect3DDevice8 *iface, UINT src_start_idx, UINT dst_idx, UINT vertex_count, IDirect3DVertexBuffer8 *dst_buffer, DWORD flags) argument
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d9/
H A Ddevice.c2474 UINT src_start_idx, UINT dst_idx, UINT vertex_count, IDirect3DVertexBuffer9 *dst_buffer,
2482 TRACE("iface %p, src_start_idx %u, dst_idx %u, vertex_count %u, dst_buffer %p, declaration %p, flags %#x.\n",
2483 iface, src_start_idx, dst_idx, vertex_count, dst_buffer, declaration, flags);
2486 hr = wined3d_device_process_vertices(device->wined3d_device, src_start_idx, dst_idx, vertex_count,
2473 d3d9_device_ProcessVertices(IDirect3DDevice9Ex *iface, UINT src_start_idx, UINT dst_idx, UINT vertex_count, IDirect3DVertexBuffer9 *dst_buffer, IDirect3DVertexDeclaration9 *declaration, DWORD flags) argument
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Ddevice.c3581 UINT src_start_idx, UINT dst_idx, UINT vertex_count, struct wined3d_buffer *dst_buffer,
3592 TRACE("device %p, src_start_idx %u, dst_idx %u, vertex_count %u, "
3594 device, src_start_idx, dst_idx, vertex_count,
3634 hr = process_vertices_strided(device, dst_idx, vertex_count,
3580 wined3d_device_process_vertices(struct wined3d_device *device, UINT src_start_idx, UINT dst_idx, UINT vertex_count, struct wined3d_buffer *dst_buffer, const struct wined3d_vertex_declaration *declaration, DWORD flags, DWORD dst_fvf) argument

Completed in 122 milliseconds