Searched refs:cursor (Results 26 - 44 of 44) sorted by relevance

12

/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/ccache/
H A Dcc_file.c119 (krb5_context, krb5_ccache id, krb5_cc_cursor *cursor);
134 (krb5_context, krb5_ccache id, krb5_cc_cursor *cursor,
170 (krb5_context, krb5_ccache id, krb5_cc_cursor *cursor);
184 (krb5_context context, krb5_cc_ptcursor *cursor);
187 (krb5_context context, krb5_cc_ptcursor cursor, krb5_ccache *ccache);
190 (krb5_context context, krb5_cc_ptcursor *cursor);
1975 krb5_cc_cursor *cursor)
2012 *cursor = (krb5_cc_cursor) fcursor;
2023 * cursor is a krb5_cc_cursor originally obtained from
2027 * cursor, cred
1974 krb5_fcc_start_seq_get(krb5_context context, krb5_ccache id, krb5_cc_cursor *cursor) argument
2042 krb5_fcc_next_cred(krb5_context context, krb5_ccache id, krb5_cc_cursor *cursor, krb5_creds *creds) argument
2115 krb5_fcc_end_seq_get(krb5_context context, krb5_ccache id, krb5_cc_cursor *cursor) argument
2495 krb5_fcc_ptcursor_new(krb5_context context, krb5_cc_ptcursor *cursor) argument
2530 krb5_fcc_ptcursor_next(krb5_context context, krb5_cc_ptcursor cursor, krb5_ccache *ccache) argument
2575 krb5_fcc_ptcursor_free(krb5_context context, krb5_cc_ptcursor *cursor) argument
[all...]
/osnet-11/usr/src/lib/libshell/common/edit/
H A Demacs.c105 genchar *cursor; /* Cursor in real screen */ member in struct:_emacs_
165 APPEND, /* Append char before cursor to screen */
1336 /* Adjust screen to agree with inputs: logical line and cursor */
1349 genchar *ncursor; /* New cursor */
1365 ep->cursor = ep->screen;
1373 *ep->cursor = '\0';
1390 If in append mode, cursor at end of line, screen up to date,
1419 ed_setcursor(ep->ed,ep->screen,0,ep->cursor-ep->screen, 0);
1428 print(i)&&((ep->cursor-ep->screen)<(w_size-1)))
1431 *ep->cursor
[all...]
H A Dvi.c147 #define cur_phys editb.e_pcur /* current phys column cursor is at */
190 static void cursor(Vi_t*, int);
536 /*** a control char, or cursor might not ***/
596 cursor(vp, last_phys);
708 * The cursor will always be positioned at the char of interest.
737 /*** make sure cursor is at the last char ***/
763 /*** see if it's a move cursor command ***/
1079 * This routine will position the virtual cursor at
1084 static void cursor(Vi_t *vp,register int x) function
1356 * The cursor wil
[all...]
/osnet-11/usr/src/cmd/sendmail/db/xa/
H A Dxa_db.c100 dbp->cursor = __xa_cursor;
148 if ((ret = real_dbp->cursor(real_dbp, txn, &real_dbc, flags)) != 0)
/osnet-11/usr/src/lib/libsqlite/tool/
H A Dspaceanal.tcl68 set cursor [btree_cursor $DB $rootpage 0]
69 set go [btree_first $cursor]
80 set payload [btree_payload_size $cursor]
82 set stat [btree_cursor_dump $cursor]
96 set go [btree_next $cursor]
98 btree_close_cursor $cursor
/osnet-11/usr/src/lib/fm/topo/libtopo/common/
H A Dtopo_xml.c2100 txml_parse_auth(topo_mod_t *tmp, xmlNodePtr cursor) argument
2137 mfg = xmlGetProp(cursor, (xmlChar *)auths[i][MFG]);
2138 name = xmlGetProp(cursor, (xmlChar *)auths[i][NAME]);
2139 part = xmlGetProp(cursor, (xmlChar *)auths[i][PART]);
2140 serial = xmlGetProp(cursor, (xmlChar *)auths[i][SERIAL]);
2172 xmlNodePtr cursor; local
2241 if ((cursor = xmlDocGetRootElement(document)) == NULL) {
2253 if (xmlStrcmp(cursor->name, (xmlChar *)Topology) != 0) {
2260 if ((scheme = xmlGetProp(cursor, (xmlChar *)Scheme)) == NULL) {
2284 if ((uuid = xmlGetProp(cursor, (xmlCha
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Drd_req_dec.c118 krb5_kt_cursor cursor; local
120 code = krb5_kt_start_seq_get(context, keytab, &cursor);
127 &ktent, &cursor)) == 0) {
166 code = krb5_kt_end_seq_get(context, keytab, &cursor);
/osnet-11/usr/src/cmd/sendmail/db/btree/
H A Dbt_open.c221 /* Get a cursor. */
222 if ((ret = dbp->cursor(dbp, NULL, &dbc, 0)) != 0)
H A Dbt_recno.c45 * over implicitly created records if doing a cursor "next" or "prev", and
48 * We skip over implicitly created or deleted records if doing a cursor "next"
51 * If we're re-numbering records, then we have to detect in the cursor that
52 * a record was deleted, and adjust the cursor as necessary on the next get.
55 * ignore the cursor's delete flag. This is different from the B+tree code.
56 * It also maintains whether the cursor references a deleted record in the
57 * cursor, and it doesn't always check the on-page value.
157 /* Allocate a cursor. */
158 if ((ret = dbp->cursor(dbp, NULL, &dbc, 0)) != 0)
166 /* Discard the cursor
[all...]
H A Dbt_stat.c53 if ((ret = dbp->cursor(dbp, NULL, &dbc, 0)) != 0)
H A Dbt_cursor.c46 /* Discard the current page/lock held by a cursor. */
59 /* If the cursor references a deleted record. */
68 /* If the cursor and index combination references a deleted record. */
82 * must be the same. For the last test, as the saved copy of the cursor
83 * will not have a valid page pointer, we use the cursor's.
86 #define POSSIBLE_DUPLICATE(cursor, saved_copy) \
87 ((cursor)->pgno == (saved_copy).pgno && \
88 ((cursor)->indx == (saved_copy).indx || \
89 ((cursor)->dpgno == PGNO_INVALID && \
91 (cursor)
[all...]
H A Dbt_delete.c88 /* Allocate a cursor. */
89 if ((ret = dbp->cursor(dbp, txn, &dbc, DB_WRITELOCK)) != 0)
95 * Walk a cursor through the key/data pairs, deleting as we go. Set
126 err: /* Discard the cursor. */
428 * a cursor walking through the leaf pages, that has the previous page
/osnet-11/usr/src/cmd/sendmail/db/db/
H A Ddb_pr.c197 if ((ret = dbp->cursor(dbp, NULL, &dbc, 0)) != 0)
275 if ((ret = dbp->cursor(dbp, NULL, &dbc, 0)) != 0)
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/keytab/
H A Dkt_file.c497 krb5_ktfile_get_next(krb5_context context, krb5_keytab id, krb5_keytab_entry *entry, krb5_kt_cursor *cursor) argument
499 long *fileoff = (long *)*cursor;
529 krb5_ktfile_end_get(krb5_context context, krb5_keytab id, krb5_kt_cursor *cursor) argument
533 free(*cursor);
/osnet-11/usr/src/cmd/sendmail/db/dbm/
H A Ddbm.c214 if ((errno = dbp->cursor(dbp, NULL, &dbc, 0)) != 0) {
263 * because that cursor is the one used for sequential iteration and
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Term/
H A DCap.pm452 B<Tgoto> decodes a cursor addressing string with the given parameters.
465 in a cursor addressing capability )
470 in cursor addressing capabilities)
/osnet-11/usr/src/cmd/sendmail/src/
H A Dudb.c227 (errno = (*up->udb_dbp->cursor)(up->udb_dbp,
230 (errno = (*up->udb_dbp->cursor)(up->udb_dbp,
/osnet-11/usr/src/cmd/sendmail/db/hash/
H A Dhash.c119 /* Get a cursor we can use for the rest of this function. */
120 if ((ret = dbp->cursor(dbp, NULL, &dbc, 0)) != 0)
253 if ((ret = dbp->cursor(dbp, txn, &dbc, DB_WRITELOCK)) != 0)
279 * Initialize the hash-specific portion of a cursor.
314 * Close down the cursor from a single use.
331 * Cleanup the access method private part of a cursor.
372 * If we are in the concurrent DB product and this cursor
373 * is not a write cursor, then this request is invalid.
374 * If it is a simple write cursor, then we need to upgrade its
378 /* Make sure it's a valid update cursor
[all...]
/osnet-11/usr/src/cmd/sendmail/db/
H A Ddb.h346 * DB access method and cursor operation values. Each value is an operation
372 #define DB_WRITELOCK 24 /* cursor() (internal) */
450 int (*cursor) __P((DB *, DB_TXN *, DBC **, u_int32_t)); member in struct:__db
504 DB_LOCK mylock; /* Lock held on this cursor. */

Completed in 92 milliseconds

12