Home
last modified time | relevance | path

Searched refs:row (Results 1 – 25 of 94) sorted by relevance

1234

/titanic_50/usr/src/cmd/picl/plugins/sun4v/snmp/
H A Dsnmpplugin.c248 static picl_nodehdl_t make_node(picl_nodehdl_t subtree_root, int row,
250 static void save_nodeh(picl_nodehdl_t nodeh, int row);
251 static picl_nodehdl_t lookup_nodeh(int row);
253 static void save_volprop(picl_prophdl_t prop, char *oidstr, int row,
258 static void threshold(picl_nodehdl_t node, char *oidstr, int row,
260 static void add_thresholds(picl_nodehdl_t node, int row, int *snmp_syserr_p);
262 static char *get_slot_type(int row, int *snmp_syserr_p);
269 int row, sp_propid_t pp, int *snmp_syserr_p);
551 int row, nxtrow; in build_physplat() local
587 for (row = -1; ret == 0; row = nxtrow) { in build_physplat()
[all …]
/titanic_50/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dwscrl.c69 int row; in wscrl() local
74 for (row = w->_top; row < w->_bottom; row++) { in wscrl()
75 if (row < w->_bottom - n) { in wscrl()
76 if (!w->_line[row+n][0]._f) { in wscrl()
81 (void) __m_cc_erase(w, row + n, in wscrl()
82 0, row + n, 0); in wscrl()
88 first = __m_cc_first(w, row + n, in wscrl()
90 save = w->_line[row + n][first]; in wscrl()
91 (void) __m_cc_erase(w, row + n, in wscrl()
92 first, row + n, first); in wscrl()
[all …]
H A Ddoupdate.c239 _find_blank_tail(int row) in _find_blank_tail() argument
249 nptr = &newscr->_line[row][COLS]; in _find_blank_tail()
261 _writeRegion(int row, LineRegion region) in _writeRegion() argument
266 cchar_t *optr = &curscr->_line[row][region.col]; in _writeRegion()
267 cchar_t *nptr = &newscr->_line[row][region.col]; in _writeRegion()
298 _deleteRegion(int row, LineRegion region) in _deleteRegion() argument
301 cchar_t *optr = &curscr->_line[row][region.col]; in _deleteRegion()
323 _clearToEOL(int row, int tail) in _clearToEOL() argument
326 GOTO(row, tail); in _clearToEOL()
334 (void) __m_cc_erase(curscr, row, tail, row, COLS - 1); in _clearToEOL()
[all …]
H A Dwinsdel.c64 int row; in winsdelln() local
77 row = w->_maxy + n; in winsdelln()
84 row = w->_cury; in winsdelln()
88 (void) __m_cc_erase(w, row, 0, row + abs(n) - 1, w->_maxx - 1); in winsdelln()
H A Dprefresh.c79 int row, dy, dx; in pnoutrefresh() local
102 for (row = sminr; row < smaxr; ++row) { in pnoutrefresh()
103 (void) __m_cc_erase(ns, row, sminc, row, smaxc); in pnoutrefresh()
/titanic_50/usr/src/uts/common/io/
H A Dtem_safe.c122 int count, screen_pos_t row, screen_pos_t col,
379 tem->tvs_c_cursor.row, in tem_safe_control()
544 int row; in tem_safe_chkparam() local
550 row = tem->tvs_c_cursor.row; in tem_safe_chkparam()
568 tem_safe_mv_cursor(tem, row - tem->tvs_params[0], col, in tem_safe_chkparam()
581 tem_safe_mv_cursor(tem, row + tem->tvs_params[0], col, in tem_safe_chkparam()
588 tem_safe_mv_cursor(tem, row, col + tem->tvs_params[0], in tem_safe_chkparam()
594 tem_safe_mv_cursor(tem, row, tem->tvs_params[0] - 1, in tem_safe_chkparam()
600 tem_safe_mv_cursor(tem, row, col - tem->tvs_params[0], in tem_safe_chkparam()
606 tem_safe_mv_cursor(tem, row + tem->tvs_params[0], 0, in tem_safe_chkparam()
[all …]
/titanic_50/usr/src/cmd/picl/plugins/sun4v/lib/snmp/
H A Dsnmplib.c125 int row; member
326 snmp_get_int(picl_snmphdl_t hdl, char *prefix, int row, int *val, in snmp_get_int() argument
342 ret = fetch_single_int(smd, prefix, row, val, &err); in snmp_get_int()
353 if (lookup_int(prefix, row, val, grp->is_volatile) == 0) in snmp_get_int()
359 fetch_bulk(smd, grp->oidstrs, grp->n_oids, row, grp->is_volatile, &err); in snmp_get_int()
366 if (lookup_int(prefix, row, val, grp->is_volatile) < 0) in snmp_get_int()
380 snmp_get_str(picl_snmphdl_t hdl, char *prefix, int row, char **strp, in snmp_get_str() argument
398 ret = fetch_single_str(smd, prefix, row, strp, &err); in snmp_get_str()
409 if (lookup_str(prefix, row, &val, grp->is_volatile) == 0) { in snmp_get_str()
419 fetch_bulk(smd, grp->oidstrs, grp->n_oids, row, grp->is_volatile, &err); in snmp_get_str()
[all …]
H A Ddebug.h70 #define LOGGET(tag, prefix, row) \ argument
71 snmp_log_cmd(tag, SNMP_MSG_GET, 1, prefix, row)
73 #define LOGBULK(tag, n_oids, oidstrs, row) \ argument
74 snmp_log_cmd(tag, SNMP_MSG_GETBULK, n_oids, oidstrs, row)
76 #define LOGNEXT(tag, prefix, row) \ argument
77 snmp_log_cmd(tag, SNMP_MSG_GETNEXT, 1, prefix, row)
114 char *oidstr, int row);
124 #define LOGGET(tag, prefix, row)
125 #define LOGBULK(tag, n_oids, oidstrs, row)
126 #define LOGNEXT(tag, prefix, row)
H A Dpdu.c60 snmp_create_pdu(int cmd, int max_reps, char *oidstrs, int n_oids, int row) in snmp_create_pdu() argument
89 if (snmp_add_null_vars(pdu, oidstrs, n_oids, row) < 0) { in snmp_create_pdu()
249 snmp_add_null_vars(snmp_pdu_t *pdu, char *oidstrs, int n_oids, int row) in snmp_add_null_vars() argument
269 p, row, &vp->name_len); in snmp_add_null_vars()
306 snmp_oidstr_to_oid(int cmd, char *oidstr, int row, size_t *n_subids) in snmp_oidstr_to_oid() argument
326 if ((cmd == SNMP_MSG_GET) || (cmd == SNMP_MSG_GETBULK && row > 0) || in snmp_oidstr_to_oid()
327 (cmd == SNMP_MSG_GETNEXT && row >= 0)) { in snmp_oidstr_to_oid()
367 objid[i] = (oid) row; in snmp_oidstr_to_oid()
371 if (row > 0) in snmp_oidstr_to_oid()
372 objid[i] = (oid) (row - 1); in snmp_oidstr_to_oid()
[all …]
/titanic_50/usr/src/lib/libeti/form/common/
H A Dchg_field.c111 int row = f->frow; in left() local
116 while (f->frow != row); in left()
125 int row = f->frow; in right() local
130 while (f->frow != row); in right()
139 int row = f->frow; in up() local
145 while (f->frow == row && f->fcol != col); in up()
147 if (f->frow != row) { in up()
148 row = f->frow; in up()
150 while (f->frow == row && f->fcol > col) in up()
153 if (f->frow != row) in up()
[all …]
/titanic_50/usr/src/lib/libxcurses/src/libc/xcurses/
H A Ddoupdate.c230 text_replace(row) in text_replace() argument
231 int row; in text_replace()
250 col = newscr->_first[row];
254 last = newscr->_last[row];
260 nptr = &newscr->_line[row][COLS];
276 optr = &curscr->_line[row][col];
277 nptr = &newscr->_line[row][col];
303 GOTO(row, col);
341 if (COLS <= col && LINES-1 <= row
430 __m_cc_erase(curscr, row, tail, row, COLS-1);
[all …]
H A Dwinsdel.c61 int row; local
80 row = w->_maxy + n;
89 row = w->_cury;
93 (void) __m_cc_erase(w, row, 0, row + abs(n), w->_maxx-1);
H A Dprefresh.c83 int row, dy, dx; local
113 for (row = sminr; row <= smaxr; ++row)
114 (void) __m_cc_erase(ns, row, sminc, row, smaxc);
H A Dtgoto.c47 (tgoto)(const char *cap, int col, int row)
52 __m_trace("tgoto(%p = \"%s\", %d, %d)", cap, col, row);
55 str = tparm((char *)cap, (long) row, (long) col, 0L, 0L, 0L, 0L, 0L, 0L, 0L);
/titanic_50/usr/src/uts/i86pc/boot/
H A Dboot_vga.c122 int row; in vga_drawc() local
125 vga_getpos(&row, &col); in vga_drawc()
126 VGA_SCREEN[row*VGA_TEXT_COLS + col] = (color << 8) | c; in vga_drawc()
146 vga_setpos(int row, int col) in vga_setpos() argument
150 off = row * VGA_TEXT_COLS + col; in vga_setpos()
156 vga_getpos(int *row, int *col) in vga_getpos() argument
161 *row = off / VGA_TEXT_COLS; in vga_getpos()
H A Dboot_console.c111 int row, col; in screen_putchar() local
113 vga_getpos(&row, &col); in screen_putchar()
119 vga_setpos(row, col); in screen_putchar()
123 vga_setpos(row, 0); in screen_putchar()
128 vga_setpos(row, col - 1); in screen_putchar()
132 if (row < VGA_TEXT_ROWS - 1) in screen_putchar()
133 vga_setpos(row + 1, col); in screen_putchar()
141 vga_setpos(row, col + 1); in screen_putchar()
142 else if (row < VGA_TEXT_ROWS - 1) in screen_putchar()
143 vga_setpos(row + 1, 0); in screen_putchar()
[all …]
/titanic_50/usr/src/lib/libcurses/screen/
H A DV3.upd_old_y.c52 int row, col, num_cols; in _update_old_y_area() local
54 for (row = start_line; nlines > 0; nlines--, row++) in _update_old_y_area()
58 win->_y16[row][col] = _TO_OCHTYPE(win->_y[row][col]); in _update_old_y_area()
H A Dtgoto.c52 tgoto(char *cap, int col, int row) in tgoto() argument
56 cp = tparm_p2(cap, row, col); in tgoto()
/titanic_50/usr/src/lib/libast/common/disc/
H A Dsfdcmore.c46 int row; /* current row */ member
71 more->row = 2;
163 if (!more->row)
200 if (++more->row < more->rows)
229 more->row = 1;
238 more->row--;
242 more->row = 2;
246 more->row = 0;
289 more->row = 1;
344 more->row = 1;
/titanic_50/usr/src/tools/codereview/
H A Dlwlp.c159 float row; member
684 current.row -= point_size; in printbanner()
685 (void) fprintf(outfile, "%d %.2f %s\n", start_x, current.row, MOVETO); in printbanner()
689 current.row -= point_size; in printbanner()
690 (void) fprintf(outfile, "%d %.2f %s\n", start_x, current.row, MOVETO); in printbanner()
697 current.row -= point_size; in printbanner()
698 (void) fprintf(outfile, "%d %.2f %s\n", start_x, current.row, in printbanner()
711 current.row -= point_size; in printbanner()
713 current.row, MOVETO); in printbanner()
733 current.row -= point_size; in printbanner()
[all …]
/titanic_50/usr/src/lib/smbsrv/libsmb/common/
H A Dsmb_status_tbl.c47 const smb_status_table_t *row = vrow; in xlate_compare() local
49 if (key->value == row->value) in xlate_compare()
51 if (key->value < row->value) in xlate_compare()
/titanic_50/usr/src/cmd/picl/plugins/lib/picld_pluginutil/
H A Dpicld_pluginutil_impl.h113 row_cmd_t row; member
153 #define rowcmd_index u.row.index
154 #define rowcmd_nproph u.row.nproph
155 #define rowcmd_prophs u.row.prophs
/titanic_50/usr/src/uts/i86pc/io/gfx_private/
H A Dgfxp_vgatext.c80 int row; member
189 screen_pos_t *row, screen_pos_t *col);
190 static void vgatext_set_cursor(struct vgatext_softc *softc, int row, int col);
694 softc->cursor.row, softc->cursor.col); in vgatext_restore_textmode()
771 softc->cursor.row, softc->cursor.col); in vgatext_kdsettext()
896 if (da->row < 0 || da->row >= TEXT_ROWS || in vgatext_cons_display()
911 + (da->row * TEXT_COLS + da->col); in vgatext_cons_display()
1029 ca->row < 0 || ca->row >= TEXT_ROWS) in vgatext_cons_cursor()
1034 softc->cursor.row = ca->row; in vgatext_cons_cursor()
1036 vgatext_set_cursor(softc, ca->row, ca->col); in vgatext_cons_cursor()
[all …]
/titanic_50/usr/src/uts/common/io/mr_sas/
H A Dld_pd_map.c150 MR_GetSpanBlock(U32 ld, U64 row, U64 *span_blk, MR_FW_RAID_MAP_ALL *map, in MR_GetSpanBlock() argument
165 if (qe->logStart <= row && row <= qe->logEnd && in MR_GetSpanBlock()
166 (((row - qe->logStart) % qe->diff)) == 0) { in MR_GetSpanBlock()
169 blk = ((row - qe->logStart) / in MR_GetSpanBlock()
209 U64 row; in MR_GetPhyParams() local
219 row = (stripRow / raid->rowDataSize); in MR_GetPhyParams()
227 rowMod = (row % (raid->rowSize)); in MR_GetPhyParams()
241 *pdBlock = row << raid->stripeShift; in MR_GetPhyParams()
243 span = (U8)MR_GetSpanBlock(ld, row, pdBlock, map, &error_code); in MR_GetPhyParams()
/titanic_50/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/
H A DpmTop.java224 public void removeRow(int row) { in removeRow() argument
225 data.removeElementAt(row); in removeRow()
240 public Object getValueAt(int row, int col) { in getValueAt() argument
241 Vector rowVector = (Vector)data.elementAt(row); in getValueAt()
245 public void setValueAt(String value, int row, int col) { in setValueAt() argument
246 Vector rowVector = (Vector)data.elementAt(row); in setValueAt()
250 public void addRow(Vector row) { in addRow() argument
251 data.addElement(row); in addRow()
704 int row = -1; in findPrinterInList() local
708 row = listModel.findValue(p); in findPrinterInList()
[all …]

1234