Searched defs:window (Results 1 - 14 of 14) sorted by relevance

/osnet-11/usr/src/lib/libeti/form/common/
H A Dform_sub.c39 set_form_sub(FORM *f, WINDOW *window) argument
44 Form(f)->sub = window;
H A Dform_win.c39 set_form_win(FORM *f, WINDOW *window) argument
44 Form(f)->win = window;
/osnet-11/usr/src/lib/libeti/panel/common/
H A Dreplace.c31 /* A panels subsystem built on curses--Replace the window in a panel */
43 replace_panel(PANEL *panel, WINDOW *window) argument
45 if (!panel || !window)
54 /* Remove the window from the old location. */
59 /* Find the size of the new window */
61 getbegyx(window, panel -> wstarty, panel -> wstartx);
62 getmaxyx(window, panel -> wendy, panel -> wendx);
63 panel -> win = window;
71 (void) touchwin(window);
H A Dnew.c66 new_panel(WINDOW *window) argument
73 if (!window || !_alloc_overlap(_Panel_cnt) ||
77 panel -> win = window;
78 getbegyx(window, panel -> wstarty, panel -> wstartx);
79 getmaxyx(window, lines, cols);
/osnet-11/usr/src/grub/grub2/grub-core/video/emu/
H A Dsdl.c32 static SDL_Surface *window = 0; variable
43 window = 0;
58 window = 0;
98 window = SDL_SetVideoMode (width, height, depth, flags | SDL_HWSURFACE);
99 if (! window)
100 window = SDL_SetVideoMode (width, height, depth, flags | SDL_SWSURFACE);
101 if (! window)
102 return grub_error (GRUB_ERR_BAD_DEVICE, "Couldn't open window: %s",
107 mode_info.width = window->w;
108 mode_info.height = window
[all...]
/osnet-11/usr/src/lib/libnsl/rpc/
H A Dauth_des.c73 uint_t ad_window; /* client specified window */
129 authdes_pk_seccreate(const char *servername, netobj *pkey, uint_t window, argument
184 ad->ad_window = window;
295 ad->ad_cred.adc_fullname.window = cryptbuf[1].key.high;
H A Dsvcauth_des.c39 * (2) The timestamp plus the window is less than the current time.
43 * It is up to the server to determine if the window size is
76 uint_t window; /* credential lifetime window */ member in struct:cache_entry
131 uint_t window; local
174 cred->adc_fullname.window = (uint32_t)*ixdr++;
269 cryptbuf[1].key.high = cred->adc_fullname.window;
310 window = IXDR_GET_U_INT32(ixdr);
312 if (winverf != window - 1) {
319 "_svcauth_des: corrupted window fro
[all...]
H A Drpc_soc.c498 authdes_create(char *servername, uint_t window, struct sockaddr_in *syncaddr, argument
534 nauth = authdes_seccreate(servername, window, hostname, ckey);
540 return (authdes_seccreate(servername, window, hostname, ckey));
/osnet-11/usr/src/grub/grub2/grub-core/net/
H A Dtcp.c101 grub_uint16_t window; member in struct:tcphdr
283 tcph_fin->window = grub_cpu_to_be16_compile_time (0);
327 tcph_ack->window = grub_cpu_to_be16_compile_time (0);
333 tcph_ack->window = grub_cpu_to_be16 (sock->my_window);
525 tcph->window = grub_cpu_to_be16 (sock->my_window);
623 tcph->window = grub_cpu_to_be16 (socket->my_window);
709 tcph->window = grub_cpu_to_be16 (socket->my_window);
732 tcph->window = grub_cpu_to_be16 (socket->my_window);
/osnet-11/usr/src/grub/grub2/grub-core/term/
H A Dgfxterm.c115 static struct grub_gfxterm_window window; variable in typeref:struct:grub_gfxterm_window
305 /* Set window bounds. */
306 window.x = x;
307 window.y = y;
308 window.width = width;
309 window.height = height;
310 window.double_repaint = double_repaint;
423 /* Save viewport and set it to our window. */
428 grub_video_set_viewport (window.x, window
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/video/i386/pc/
H A Dvbe.c321 /* Call VESA BIOS 0x4f05 to set memory window, return status. */
323 grub_vbe_bios_set_memory_window (grub_uint32_t window, argument
328 /* BL = window, BH = 0, Set memory window. */
329 regs.ebx = window & 0x00ff;
337 /* Call VESA BIOS 0x4f05 to return memory window, return status. */
339 grub_vbe_bios_get_memory_window (grub_uint32_t window, argument
345 /* BH = 1, Get memory window. BL = window. */
346 regs.ebx = (window
[all...]
/osnet-11/usr/src/lib/libshell/common/edit/
H A Dvi.c114 int first_wind; /* first column of window */
115 int last_wind; /* last column in window */
117 int long_char; /* line bigger than window */
118 int long_line; /* line bigger than window */
121 int ofirst_wind; /* old window first col */
167 #define window editb.e_window /* window buffer */ macro
168 #define w_size editb.e_wsize /* window size */
227 genchar Window[MAXLINE]; /* window image */
388 window
[all...]
/osnet-11/usr/src/grub/grub-0.97/netboot/
H A D3c90x.c274 /*** a3c90x_internal_SetWindow: selects a register window set.
277 a3c90x_internal_SetWindow(int ioaddr, int window) argument
281 if (INF_3C90X.CurrentWindow == window) return 0;
283 /** Issue the window command. **/
284 a3c90x_internal_IssueCommand(ioaddr, cmdSelectRegisterWindow, window);
285 INF_3C90X.CurrentWindow = window;
298 /** Select correct window **/
322 /** Select register window **/
/osnet-11/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c212 /* A Pos is an index in the character window. We use short instead of int to
230 uInt w_size; /* LZ77 window size (32K by default) */
234 Bytef *window; member in struct:deflate_state
235 /* Sliding window. Input bytes are read into the second half of the window,
240 * the window size to 64K, which is quite useful on MSDOS.
241 * To do: use the user input buffer as sliding window.
245 /* Actual size of window: 2*wSize, except when the user input buffer
246 * is directly used as sliding window.
252 * An index in this array is thus a window inde
3086 Bytef *window; /* sliding window */ member in struct:inflate_blocks_state
[all...]

Completed in 101 milliseconds