/vbox/src/libs/xpcom18a4/xpcom/tests/windows/ |
H A D | TestHelloXPLoop.cpp | 48 LRESULT CALLBACK WndProc(HWND wnd, UINT msg, WPARAM wParam, LPARAM lParam); 66 HWND wnd; local 106 wnd = CreateWindow(lpszAppName, "The Hello World", 112 ShowWindow(wnd, nShowCmd); 113 UpdateWindow(wnd); 134 LRESULT CALLBACK WndProc(HWND wnd, UINT msg, WPARAM wParam, LPARAM lParam) argument 143 hdc = BeginPaint(wnd, &ps); 145 GetClientRect(wnd, &rect); 150 EndPaint(wnd, &ps); 176 return DefWindowProc(wnd, ms [all...] |
/vbox/src/VBox/Devices/Network/lwip/src/core/ |
H A D | tcp_out.c | 272 /* don't fill in tcphdr->ackno and tcphdr->wnd until later */ 380 u32_t wnd; local 393 wnd = LWIP_MIN(pcb->snd_wnd, pcb->cwnd); 411 ntohl(seg->tcphdr->seqno) - pcb->lastack + seg->len > wnd)) { 427 tcphdr->wnd = htons(pcb->rcv_wnd); 450 LWIP_DEBUGF(TCP_CWND_DEBUG, ("tcp_output: snd_wnd %"U32_F", cwnd %"U16_F", wnd %"U32_F", seg == NULL, ack %"U32_F"\n", 451 pcb->snd_wnd, pcb->cwnd, wnd, 454 LWIP_DEBUGF(TCP_CWND_DEBUG, ("tcp_output: snd_wnd %"U32_F", cwnd %"U16_F", wnd %"U32_F", effwnd %"U32_F", seq %"U32_F", ack %"U32_F"\n", 455 pcb->snd_wnd, pcb->cwnd, wnd, 462 ntohl(seg->tcphdr->seqno) - pcb->lastack + seg->len <= wnd) { [all...] |
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ |
H A D | tcp_out.c | 111 tcphdr->wnd = htons(pcb->rcv_ann_wnd); 158 * The TCP header is filled in except ackno and wnd. 200 /* wnd and chksum are set in tcp_output */ 909 u32_t wnd, snd_nxt; local 926 wnd = LWIP_MIN(pcb->snd_wnd, pcb->cwnd); 938 ntohl(seg->tcphdr->seqno) - pcb->lastack + seg->len > wnd)) { 957 ", cwnd %"U16_F", wnd %"U32_F 959 pcb->snd_wnd, pcb->cwnd, wnd, pcb->lastack)); 962 ("tcp_output: snd_wnd %"U16_F", cwnd %"U16_F", wnd %"U32_F 964 pcb->snd_wnd, pcb->cwnd, wnd, [all...] |
/vbox/src/VBox/RDP/client-1.8.3/ |
H A D | ewmhints.c | 56 get_property_value(Window wnd, char *propname, long max_length, argument 72 result = XGetWindowProperty(g_display, wnd, property, 0, /* long_offset */ 248 ewmh_modify_state(Window wnd, int add, Atom atom1, Atom atom2) argument 262 result = get_property_value(wnd, "WM_STATE", 64, &nitems, &props, 1); 283 XChangeProperty(g_display, wnd, g_net_wm_state_atom, XA_ATOM, 291 if (get_property_value(wnd, "_NET_WM_STATE", 64, &nitems, &props, 1) < 0) 308 XChangeProperty(g_display, wnd, g_net_wm_state_atom, XA_ATOM, 318 xevent.xclient.window = wnd; 342 ewmh_change_state(Window wnd, int state) argument 350 (wnd, 367 ewmh_get_window_desktop(Window wnd) argument 389 ewmh_move_to_desktop(Window wnd, unsigned int desktop) argument 412 ewmh_set_wm_name(Window wnd, const char *title) argument 423 ewmh_set_window_popup(Window wnd) argument 432 ewmh_set_window_modal(Window wnd) argument 440 ewmh_set_icon(Window wnd, int width, int height, const char *rgba_data) argument 502 ewmh_del_icon(Window wnd, int width, int height) argument 548 ewmh_set_window_above(Window wnd) argument [all...] |
H A D | xwin.c | 73 Window wnd; member in struct:_seamless_group 79 Window wnd; member in struct:_seamless_window 237 ON_ALL_SEAMLESS_WINDOWS(XFillRectangle, (g_display, sw->wnd, g_gc, x-sw->xoffset, y-sw->yoffset, cx, cy)); \ 252 ON_ALL_SEAMLESS_WINDOWS(seamless_XFillPolygon, (sw->wnd, p, np, sw->xoffset, sw->yoffset)); \ 261 ON_ALL_SEAMLESS_WINDOWS(XDrawArc, (g_display, sw->wnd, g_gc, x-sw->xoffset, y-sw->yoffset, cx, cy, 0, 360*64)); \ 267 ON_ALL_SEAMLESS_WINDOWS(XFillArc, (g_display, sw->wnd, g_gc, x-sw->xoffset, y-sw->yoffset, cx, cy, 0, 360*64)); \ 319 sw_get_window_by_wnd(Window wnd) argument 324 if (sw->wnd == wnd) 343 XDestroyWindow(g_display, sw->group->wnd); 358 sw_all_to_desktop(Window wnd, unsigned int desktop) argument 528 mwm_hide_decorations(Window wnd) argument 582 sw_wait_configurenotify(Window wnd, unsigned long serial) argument 616 sw_get_toplevel(Window wnd) argument 643 sw_window_is_behind(Window wnd, Window behind) argument 3947 Window wnd; local [all...] |
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/ |
H A D | swapchain.c | 516 HWND wnd = WindowFromDC(context->currentSwapchain->hDC); local 517 Assert(wnd == context->currentSwapchain->win_handle);
|
H A D | directx.c | 230 HWND wnd; member in struct:wined3d_fake_gl_ctx 251 ReleaseDC(ctx->wnd, ctx->dc); 252 DestroyWindow(ctx->wnd); 271 ctx->wnd = CreateWindowA(WINED3D_OPENGL_WINDOW_CLASS_NAME, "WineD3D fake window", 273 if (!ctx->wnd) 279 ctx->dc = GetDC(ctx->wnd); 330 if (ctx->dc) ReleaseDC(ctx->wnd, ctx->dc); 332 if (ctx->wnd) DestroyWindow(ctx->wnd); 333 ctx->wnd [all...] |
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/ |
H A D | swapchain.c | 738 HWND wnd = WindowFromDC(context->swapchain->hDC); local 739 Assert(wnd == context->swapchain->win_handle);
|
H A D | directx.c | 292 HWND wnd; member in struct:wined3d_fake_gl_ctx 311 wined3d_release_dc(ctx->wnd, ctx->dc); 312 DestroyWindow(ctx->wnd); 363 ctx->wnd = CreateWindowA(WINED3D_OPENGL_WINDOW_CLASS_NAME, "WineD3D fake window", 365 if (!ctx->wnd) 371 ctx->dc = GetDC(ctx->wnd); 423 if (ctx->dc) ReleaseDC(ctx->wnd, ctx->dc); 425 if (ctx->wnd) DestroyWindow(ctx->wnd); 426 ctx->wnd [all...] |
/vbox/src/VBox/Devices/Network/ |
H A D | DevE1000.cpp | 973 uint16_t wnd; member in struct:E1kTcpHeader
|