Searched defs:cursor (Results 1 - 25 of 43) sorted by relevance

12

/illumos-gate/usr/src/tools/scripts/
H A Dwdiff.pl86 .elided { border: 1px solid #444; cursor: pointer; margin: 1px }
92 border-right: 1px solid #ccc; cursor: s-resize }
96 .hidebar td.active-up { border: 1px solid #ff9900; cursor: n-resize;
109 cursor: pointer; padding: 3px 4px; } label
155 /* Scroll so new element is at cursor. */
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Dcopy_ccache.c15 krb5_cc_cursor cursor; local
44 code = krb5_cc_start_seq_get(context, k5creds->ccache, &cursor);
52 while (!code && !krb5_cc_next_cred(context, k5creds->ccache, &cursor, &creds))
54 krb5_cc_end_seq_get(context, k5creds->ccache, &cursor);
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/keytab/
H A Dktfns.c79 krb5_kt_cursor *cursor)
81 return krb5_x((keytab)->ops->start_seq_get,(context, keytab, cursor));
86 krb5_keytab_entry *entry, krb5_kt_cursor *cursor)
88 return krb5_x((keytab)->ops->get_next,(context, keytab, entry, cursor));
93 krb5_kt_cursor *cursor)
95 return krb5_x((keytab)->ops->end_get,(context, keytab, cursor));
78 krb5_kt_start_seq_get(krb5_context context, krb5_keytab keytab, krb5_kt_cursor *cursor) argument
85 krb5_kt_next_entry(krb5_context context, krb5_keytab keytab, krb5_keytab_entry *entry, krb5_kt_cursor *cursor) argument
92 krb5_kt_end_seq_get(krb5_context context, krb5_keytab keytab, krb5_kt_cursor *cursor) argument
H A Dkt_solaris.c277 krb5_kt_cursor cursor; local
298 if ((code = krb5_kt_start_seq_get(ctx, kt, &cursor)) != 0)
301 while ((code = krb5_kt_next_entry(ctx, kt, &entry, &cursor)) == 0) {
311 code = krb5_kt_end_seq_get(ctx, kt, &cursor);
323 code = krb5_kt_start_seq_get(ctx, kt, &cursor);
338 code = krb5_kt_end_seq_get(ctx, kt, &cursor);
423 krb5_kt_cursor cursor; local
447 if ((code = krb5_kt_start_seq_get(ctx, kt, &cursor)) != 0)
450 while ((code = krb5_kt_next_entry(ctx, kt, &entry, &cursor)) == 0) {
484 if ((code = krb5_kt_end_seq_get(ctx, kt, &cursor)))
[all...]
H A Dkt_srvtab.c312 krb5_ktsrvtab_get_next(krb5_context context, krb5_keytab id, krb5_keytab_entry *entry, krb5_kt_cursor *cursor) argument
314 long *fileoff = (long *)*cursor;
332 krb5_ktsrvtab_end_get(krb5_context context, krb5_keytab id, krb5_kt_cursor *cursor) argument
334 krb5_xfree(*cursor);
H A Dkt_file.c479 krb5_ktfile_get_next(krb5_context context, krb5_keytab id, krb5_keytab_entry *entry, krb5_kt_cursor *cursor) argument
481 long *fileoff = (long *)*cursor;
511 krb5_ktfile_end_get(krb5_context context, krb5_keytab id, krb5_kt_cursor *cursor) argument
515 krb5_xfree(*cursor);
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/ccache/
H A Dccfns.c126 krb5_cc_cursor *cursor)
128 return cache->ops->get_first(context, cache, cursor);
133 krb5_cc_cursor *cursor, krb5_creds *creds)
135 return cache->ops->get_next(context, cache, cursor, creds);
140 krb5_cc_cursor *cursor)
142 return cache->ops->end_get(context, cache, cursor);
125 krb5_cc_start_seq_get(krb5_context context, krb5_ccache cache, krb5_cc_cursor *cursor) argument
132 krb5_cc_next_cred(krb5_context context, krb5_ccache cache, krb5_cc_cursor *cursor, krb5_creds *creds) argument
139 krb5_cc_end_seq_get(krb5_context context, krb5_ccache cache, krb5_cc_cursor *cursor) argument
H A Dcc_retr.c210 krb5_cc_cursor cursor; local
230 kret = krb5_cc_start_seq_get(context, id, &cursor);
237 while ((kret = krb5_cc_next_cred(context, id, &cursor, &fetchcreds)) == KRB5_OK) {
254 krb5_cc_end_seq_get(context, id, &cursor);
269 krb5_cc_end_seq_get(context, id, &cursor);
H A Dcc_memory.c45 (krb5_context, krb5_ccache id , krb5_cc_cursor *cursor );
62 krb5_cc_cursor *cursor ,
76 (krb5_context, krb5_ccache id , krb5_cc_cursor *cursor );
299 krb5_cc_cursor *cursor)
311 *cursor = (krb5_cc_cursor) mcursor;
317 * cursor is a krb5_cc_cursor originally obtained from
321 * cursor, creds
330 * The cursor is updated for the next call to krb5_mcc_next_cred.
337 krb5_cc_cursor *cursor, krb5_creds *creds)
346 mcursor = (krb5_mcc_cursor) *cursor;
298 krb5_mcc_start_seq_get(krb5_context context, krb5_ccache id, krb5_cc_cursor *cursor) argument
336 krb5_mcc_next_cred(krb5_context context, krb5_ccache id, krb5_cc_cursor *cursor, krb5_creds *creds) argument
414 krb5_mcc_end_seq_get(krb5_context context, krb5_ccache id, krb5_cc_cursor *cursor) argument
685 krb5_mcc_ptcursor_new( krb5_context context, krb5_cc_ptcursor *cursor) argument
722 krb5_mcc_ptcursor_next( krb5_context context, krb5_cc_ptcursor cursor, krb5_ccache *ccache) argument
757 krb5_mcc_ptcursor_free( krb5_context context, krb5_cc_ptcursor *cursor) argument
[all...]
/illumos-gate/usr/src/uts/common/io/nxge/npi/
H A Dnpi.c152 int cursor, i; local
161 cursor = rt->next_idx;
162 cursor = (cursor == 0) ? rt->last_idx : cursor - 1;
165 trace = &rt->buf[cursor];
172 cursor = (cursor == 0) ? rt->last_idx : cursor - 1;
/illumos-gate/usr/src/lib/smbsrv/libsmb/common/
H A Dsmb_cache.c220 * Initializes the given cursor for iterating the cache
223 smb_cache_iterinit(smb_cache_t *chandle, smb_cache_cursor_t *cursor) argument
225 cursor->cc_sequence = chandle->ch_sequence;
226 cursor->cc_next = NULL;
230 * Iterate the cache using the given cursor.
240 smb_cache_iterate(smb_cache_t *chandle, smb_cache_cursor_t *cursor, void *data) argument
249 if (cursor->cc_sequence != chandle->ch_sequence) {
254 if (cursor->cc_next == NULL)
257 node = AVL_NEXT(&chandle->ch_cache, cursor->cc_next);
262 cursor
[all...]
/illumos-gate/usr/src/cmd/sendmail/aux/
H A Dpraliases.c242 SMDB_CURSOR *cursor = NULL; local
320 result = database->smdb_cursor(database, &cursor, 0);
324 "praliases: %s: set cursor: %s\n", db_name,
329 while ((result = cursor->smdbc_get(cursor, &db_key, &db_value,
355 "praliases: %s: get value at cursor: %s\n",
391 if (cursor != NULL)
392 (void) cursor->smdbc_close(cursor);
H A Dmakemap.c103 SMDB_CURSOR *cursor; local
362 errno = database->smdb_cursor(database, &cursor, 0);
367 "%s: cannot make cursor for type %s map %s\n",
377 errno = cursor->smdbc_get(cursor, &db_key, &db_val,
391 (void) cursor->smdbc_close(cursor);
/illumos-gate/usr/src/cmd/krb5/kadmin/kclient/
H A Dksetpw.c262 krb5_kt_cursor cursor; local
278 code = krb5_kt_start_seq_get(ctx, kt, &cursor);
284 while ((code = krb5_kt_next_entry(ctx, kt, &entry, &cursor)) == 0) {
287 code = krb5_kt_end_seq_get(ctx, kt, &cursor);
303 code = krb5_kt_start_seq_get(ctx, kt, &cursor);
319 if ((code = krb5_kt_end_seq_get(ctx, kt, &cursor))) {
/illumos-gate/usr/src/cmd/krb5/kadmin/ktutil/
H A Dktutil_funcs.c255 krb5_kt_cursor cursor; local
266 retval = krb5_kt_start_seq_get(context, kt, &cursor);
276 retval = krb5_kt_next_entry(context, kt, entry, &cursor);
313 krb5_kt_end_seq_get(context, kt, &cursor);
/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/btree/
H A Dbt_seq.c129 * the page the cursor references if they're successful.
178 * Pins the page the cursor references.
196 * cursor at it. The cursor may not be moved until a new key has
284 * There are a couple of states that we can be in. The cursor has
290 * The cursor was deleted and there weren't any duplicate records,
291 * so the cursor's key was saved. Find out where that key would
297 * the cursor record and then replaces it, so the cursor was saved,
300 * match, we could as easily put the new record before the cursor,
526 CURSOR cursor; member in struct:rcursor_
[all...]
/illumos-gate/usr/src/cmd/krb5/kadmin/cli/
H A Dkeytab.c429 krb5_kt_cursor cursor; local
488 code = krb5_kt_start_seq_get(context, keytab, &cursor);
495 while ((code = krb5_kt_next_entry(context, keytab, &entry, &cursor)) == 0) {
507 code = krb5_kt_end_seq_get(context, keytab, &cursor);
521 code = krb5_kt_start_seq_get(context, keytab, &cursor);
541 if ((code = krb5_kt_end_seq_get(context, keytab, &cursor))) {
/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/hash/
H A Dhash.c227 /* initialize the cursor queue */
542 /* XXX This should really iterate over the cursor queue, but
543 it's not clear how to do that, and the only cursor a hash
721 CURSOR cursor; local
747 cursor.pagep = NULL;
748 __get_item_reset(hashp, &cursor);
750 cursor.bucket = bucket;
752 __get_item_next(hashp, &cursor, &page_key, &page_val, &item_info);
763 if (__find_bigpair(hashp, &cursor, (int8_t *)key->data,
773 __get_item_done(hashp, &cursor);
[all...]
/illumos-gate/usr/src/cmd/cron/
H A Dcrontab.c104 int cursor; variable
436 cursor = 0;
437 while (line[cursor] == ' ' || line[cursor] == '\t')
438 cursor++;
440 if (line[cursor] == '#' || line[cursor] == '\n')
443 if (strncmp(&line[cursor], ENV_TZ, strlen(ENV_TZ)) == 0) {
446 strncpy(buf, &line[cursor + strlen(ENV_TZ)],
455 fprintf(stderr, BAD_TZ, &line[cursor]);
[all...]
/illumos-gate/usr/src/cmd/krb5/klist/
H A Dklist.c305 krb5_kt_cursor cursor; local
333 if ((code = krb5_kt_start_seq_get(kcontext, kt, &cursor))) {
357 while ((code = krb5_kt_next_entry(kcontext, kt, &entry, &cursor)) == 0) {
388 if ((code = krb5_kt_end_seq_get(kcontext, kt, &cursor))) {
/illumos-gate/usr/src/lib/smbsrv/libmlsvc/common/
H A Dnetdfs.c1246 smb_cache_cursor_t cursor; local
1251 dfs_cache_iterinit(&cursor);
1254 while (dfs_cache_iterate(&cursor, &nscnode)) {
/illumos-gate/usr/src/lib/efcode/engine/
H A Dinteractive.c436 find_next_word(char *cursor, char *eol) argument
438 while (cursor < eol && *cursor != ' ')
439 cursor++;
440 while (cursor < eol && *cursor == ' ')
441 cursor++;
442 return (cursor);
446 find_prev_word(char *buf, char *cursor) argument
450 if (cursor
501 char *p, *cursor, *eol, *tp, *cp; local
[all...]
/illumos-gate/usr/src/cmd/vi/port/
H A Dex_vis.h47 * are visual, crt open (where the cursor can move about the screen and
147 * The current cursor position within the current line is kept in
148 * cursor. The current line is kept in linebuf. During insertions
150 * The cursor wcursor and wdot are used in operations within/spanning
154 var unsigned char *cursor; variable
252 var short doomed; /* Disply chars right of cursor to be killed */
281 var int P_cursor_offset; /* cursor adjust for Put */
/illumos-gate/usr/src/uts/common/sys/
H A Dvisual_io.h71 short x; /* cursor x coordinate */
72 short y; /* cursor y coordinate */
85 * These ioctls fetch and set various cursor attributes, using the
94 short enable; /* cursor on/off */
95 struct vis_cursorpos pos; /* cursor position */
96 struct vis_cursorpos hot; /* cursor hot spot */
98 struct vis_cursorpos size; /* cursor bit map size */
99 char *image; /* cursor image bits */
100 char *mask; /* cursor mask bits */
103 #define VIS_CURSOR_SETCURSOR 0x01 /* set cursor */
279 void (*cursor)(struct vis_polledio_arg *, struct vis_conscursor *); member in struct:vis_polledio
[all...]
/illumos-gate/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 */
1278 /* Adjust screen to agree with inputs: logical line and cursor */
1291 genchar *ncursor; /* New cursor */
1307 ep->cursor = ep->screen;
1315 *ep->cursor = '\0';
1332 If in append mode, cursor at end of line, screen up to date,
1342 print(i)&&((ep->cursor-ep->screen)<(w_size-1)))
1345 *ep->cursor++ = i;
1346 *ep->cursor
[all...]

Completed in 110 milliseconds

12