Searched refs:cursor (Results 51 - 75 of 131) sorted by relevance

123456

/freebsd-10.2-release/lib/libedit/TEST/
H A Dtc1.c95 for (ptr = lf->cursor - 1;
98 len = lf->cursor - ++ptr;
180 (li->cursor - li->buffer), li->buffer,
181 (li->lastchar - 1 - li->cursor),
182 (li->cursor >= li->lastchar) ? "" : li->cursor);
/freebsd-10.2-release/crypto/heimdal/lib/hx509/
H A Dks_keychain.c377 void *cursor; member in struct:iter
383 hx509_certs certs, void *data, void **cursor)
435 ret = hx509_certs_start_seq(context, iter->certs, &iter->cursor);
456 *cursor = iter;
466 hx509_certs certs, void *data, void *cursor, hx509_cert *cert)
473 struct iter *iter = cursor;
479 return hx509_certs_next_cert(context, iter->certs, iter->cursor, cert);
559 void *cursor)
561 struct iter *iter = cursor;
564 hx509_certs_end_seq(context, iter->certs, iter->cursor);
382 keychain_iter_start(hx509_context context, hx509_certs certs, void *data, void **cursor) argument
465 keychain_iter(hx509_context context, hx509_certs certs, void *data, void *cursor, hx509_cert *cert) argument
556 keychain_iter_end(hx509_context context, hx509_certs certs, void *data, void *cursor) argument
[all...]
H A Dcollector.c206 hx509_cursor cursor; local
216 ret = hx509_certs_start_seq(context, certs, &cursor);
222 ret = hx509_certs_next_cert(context, certs, cursor, &c);
242 hx509_certs_end_seq(context, certs, cursor);
H A Dks_p11.c997 void *cursor; member in struct:p11_cursor
1002 hx509_certs certs, void *data, void **cursor)
1031 ret = hx509_certs_start_seq(context, c->certs, &c->cursor);
1037 *cursor = c;
1044 hx509_certs certs, void *data, void *cursor, hx509_cert *cert)
1046 struct p11_cursor *c = cursor;
1047 return hx509_certs_next_cert(context, c->certs, c->cursor, cert);
1052 hx509_certs certs, void *data, void *cursor)
1054 struct p11_cursor *c = cursor;
1056 ret = hx509_certs_end_seq(context, c->certs, c->cursor);
1001 p11_iter_start(hx509_context context, hx509_certs certs, void *data, void **cursor) argument
1043 p11_iter(hx509_context context, hx509_certs certs, void *data, void *cursor, hx509_cert *cert) argument
1051 p11_iter_end(hx509_context context, hx509_certs certs, void *data, void *cursor) argument
[all...]
/freebsd-10.2-release/sbin/dhclient/
H A Doptions.c216 unsigned char *domain_search, *cursor; local
244 cursor = domain_search;
246 expand_search_domain_name(option, &offset, &cursor);
247 cursor[0] = ' ';
248 cursor++;
315 /* Move cursor. */
329 unsigned char *cursor; local
337 cursor = *domain_search;
346 *domain_search = cursor;
353 expand_search_domain_name(option, &pointer, &cursor);
[all...]
/freebsd-10.2-release/contrib/ncurses/ncurses/tinfo/
H A Dlib_options.c232 * to emit different escape sequences for cursor and keypad keys. If we don't
285 int cursor = sp->_cursor; local
287 if (vis == cursor) {
288 result = cursor;
302 result = (cursor == -1 ? 1 : cursor);
/freebsd-10.2-release/crypto/heimdal/kuser/
H A Dklist.c236 krb5_cc_cursor cursor; local
289 ret = krb5_cc_start_seq_get (context, ccache, &cursor);
304 &cursor,
317 ret = krb5_cc_end_seq_get (context, ccache, &cursor);
490 krb5_cc_cache_cursor cursor; local
502 ret = krb5_cc_cache_get_first (context, NULL, &cursor);
516 while (krb5_cc_cache_next (context, cursor, &id) == 0) {
558 krb5_cc_cache_end_seq_get(context, cursor);
594 krb5_cc_cache_cursor cursor; local
596 ret = krb5_cc_cache_get_first(kcc_context, NULL, &cursor);
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang-c/
H A DIndex.h1452 * \brief Describes the kind of entity that a cursor refers to.
1566 * while the type of the variable "size" is referenced. The cursor
1588 * This cursor kind is used to describe the jump to "start_over" in the
1598 * A label reference cursor refers to a label statement.
1606 * An overloaded declaration reference cursor occurs in C++ templates where
1636 * referenced by this cursor.
1931 * This cursor kind is used to describe the "start_over:" label statement in
1944 * This cursor kind is used to describe compound statements, e.g. function
2060 * This cursor kind is used to describe the null statement.
2078 * The translation unit cursor exist
3191 (^CXCursorVisitorBlock)(CXCursor cursor, CXCursor parent); variable
5429 CXCursor cursor; member in struct:__anon3071
5439 CXCursor cursor; member in struct:__anon3072
5445 CXCursor cursor; member in struct:__anon3073
5461 CXCursor cursor; member in struct:__anon3076
5498 CXCursor cursor; member in struct:__anon3079
5504 CXCursor cursor; member in struct:__anon3080
5562 CXCursor cursor; member in struct:__anon3087
[all...]
/freebsd-10.2-release/contrib/sendmail/makemap/
H A Dmakemap.c101 SMDB_CURSOR *cursor; local
360 errno = database->smdb_cursor(database, &cursor, 0);
365 "%s: cannot make cursor for type %s map %s\n",
375 errno = cursor->smdbc_get(cursor, &db_key, &db_val,
389 (void) cursor->smdbc_close(cursor);
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/API/
H A DSBCommandInterpreter.cpp161 const char *cursor,
171 // cursor & last_char have to be within the current_line.
172 if (current_line == NULL || cursor == NULL || last_char == NULL)
175 if (cursor < current_line || last_char < current_line)
179 if (cursor - current_line > current_line_size || last_char - current_line > current_line_size)
183 log->Printf ("SBCommandInterpreter(%p)::HandleCompletion (current_line=\"%s\", cursor at: %" PRId64 ", last char at: %" PRId64 ", match_start_point: %d, max_return_elements: %d)",
184 m_opaque_ptr, current_line, (uint64_t) (cursor - current_line), (uint64_t) (last_char - current_line), match_start_point, max_return_elements);
189 num_completions = m_opaque_ptr->HandleCompletion (current_line, cursor, last_char, match_start_point,
208 const char *cursor = current_line + cursor_pos; local
210 return HandleCompletion (current_line, cursor, last_cha
160 HandleCompletion(const char *current_line, const char *cursor, const char *last_char, int match_start_point, int max_return_elements, SBStringList &matches) argument
[all...]
/freebsd-10.2-release/crypto/heimdal/lib/krb5/
H A Dkcm.c531 krb5_cc_cursor *cursor)
599 *cursor = c;
615 krb5_cc_cursor *cursor,
620 krb5_kcm_cursor c = KCMCURSOR(*cursor);
677 krb5_cc_cursor *cursor)
679 krb5_kcm_cursor c = KCMCURSOR(*cursor);
684 *cursor = NULL;
780 kcm_get_cache_first(krb5_context context, krb5_cc_cursor *cursor) argument
787 *cursor = NULL;
841 *cursor
529 kcm_get_first(krb5_context context, krb5_ccache id, krb5_cc_cursor *cursor) argument
613 kcm_get_next(krb5_context context, krb5_ccache id, krb5_cc_cursor *cursor, krb5_creds *creds) argument
675 kcm_end_get(krb5_context context, krb5_ccache id, krb5_cc_cursor *cursor) argument
852 kcm_get_cache_next(krb5_context context, krb5_cc_cursor cursor, const krb5_cc_ops *ops, krb5_ccache *id) argument
902 kcm_get_cache_next_kcm(krb5_context context, krb5_cc_cursor cursor, krb5_ccache *id) argument
912 kcm_get_cache_next_api(krb5_context context, krb5_cc_cursor cursor, krb5_ccache *id) argument
919 kcm_end_cache_get(krb5_context context, krb5_cc_cursor cursor) argument
[all...]
H A Dtest_cc.c377 krb5_cc_cache_cursor cursor; local
381 ret = krb5_cc_cache_get_first (context, type, &cursor);
388 while ((ret = krb5_cc_cache_next (context, cursor, &id)) == 0) {
410 krb5_cc_cache_end_seq_get(context, cursor);
416 krb5_cccol_cursor cursor; local
420 ret = krb5_cccol_cursor_new (context, &cursor);
425 while ((ret = krb5_cccol_cursor_next (context, cursor, &id)) == 0 && id != NULL) {
444 krb5_cccol_cursor_free(context, &cursor);
H A Dscache.c875 krb5_cc_cursor *cursor)
882 *cursor = NULL;
973 *cursor = ctx;
981 krb5_cc_cursor *cursor,
984 struct cred_ctx *ctx = *cursor;
1034 krb5_cc_cursor *cursor)
1036 struct cred_ctx *ctx = *cursor;
1155 scc_get_cache_first(krb5_context context, krb5_cc_cursor *cursor) argument
1161 *cursor = NULL;
1240 *cursor
873 scc_get_first(krb5_context context, krb5_ccache id, krb5_cc_cursor *cursor) argument
979 scc_get_next(krb5_context context, krb5_ccache id, krb5_cc_cursor *cursor, krb5_creds *creds) argument
1032 scc_end_get(krb5_context context, krb5_ccache id, krb5_cc_cursor *cursor) argument
1246 scc_get_cache_next(krb5_context context, krb5_cc_cursor cursor, krb5_ccache *id) argument
1281 scc_end_cache_get(krb5_context context, krb5_cc_cursor cursor) argument
[all...]
/freebsd-10.2-release/contrib/sendmail/vacation/
H A Dvacation.c1092 SMDB_CURSOR *cursor = NULL; local
1098 result = Db->smdb_cursor(Db, &cursor, 0);
1102 "vacation: set cursor: %s\n",
1107 while ((result = cursor->smdbc_get(cursor, &db_key, &db_value,
1152 "vacation: get value at cursor: %s\n",
1154 if (cursor != NULL)
1156 (void) cursor->smdbc_close(cursor);
1157 cursor
[all...]
/freebsd-10.2-release/crypto/heimdal/admin/
H A Dchange.c138 krb5_kt_cursor cursor; local
151 ret = krb5_kt_start_seq_get(context, keytab, &cursor);
157 while((ret = krb5_kt_next_entry(context, keytab, &entry, &cursor)) == 0) {
217 krb5_kt_end_seq_get(context, keytab, &cursor);
/freebsd-10.2-release/lib/libedit/
H A Del.h70 char *cursor; /* Cursor position */ member in struct:el_line_t
H A Dread.c105 if (el->el_line.cursor > el->el_line.lastchar)
106 (void) fprintf(el->el_errfile, "cursor > lastchar\r\n");
107 if (el->el_line.cursor < el->el_line.buffer)
108 (void) fprintf(el->el_errfile, "cursor < buffer\r\n");
109 if (el->el_line.cursor > el->el_line.limit)
110 (void) fprintf(el->el_errfile, "cursor > limit\r\n");
446 el->el_line.cursor = el->el_line.lastchar = cp;
448 *nread = (int)(el->el_line.cursor - el->el_line.buffer);
502 el->el_line.cursor = el->el_line.lastchar = cp;
596 el->el_line.cursor
[all...]
H A Dchared.h53 * the cursor.
55 * On the other hand we really don't want to move the cursor, because
56 * all the editing commands don't include the character under the cursor.
74 int cursor; /* position of saved cursor */ member in struct:c_undo_t
H A Dhistedit.h62 const char *cursor; member in struct:lineinfo
H A Drefresh.c205 /* reset the Drawing cursor */
212 /* reset the Drawing cursor */
216 if (el->el_line.cursor >= el->el_line.lastchar) {
219 el->el_line.cursor = el->el_line.lastchar - 1;
221 el->el_line.cursor = el->el_line.lastchar;
247 if (cp == el->el_line.cursor) {
276 re_putc(el, '\0', 0); /* make line ended with NUL, no cursor shift */
293 * moving the cursor by writing the character that is at the
317 "\r\ncursor.h = %d, cursor.v = %d, cur.h = %d, cur.v = %d\r\n",
320 term_move_to_line(el, cur.v); /* go to where the cursor i
[all...]
/freebsd-10.2-release/crypto/heimdal/lib/hdb/
H A Dkeytab.c263 krb5_kt_cursor *cursor)
296 cursor->data = c = malloc (sizeof(*c));
309 cursor->data = c;
317 krb5_kt_cursor *cursor)
319 struct hdb_cursor *c = cursor->data;
398 krb5_kt_cursor *cursor)
400 struct hdb_cursor *c = cursor->data;
261 hdb_start_seq_get(krb5_context context, krb5_keytab id, krb5_kt_cursor *cursor) argument
314 hdb_next_entry(krb5_context context, krb5_keytab id, krb5_keytab_entry *entry, krb5_kt_cursor *cursor) argument
396 hdb_end_seq_get(krb5_context context, krb5_keytab id, krb5_kt_cursor *cursor) argument
/freebsd-10.2-release/contrib/ntp/lib/isc/
H A Dentropy.c93 isc_uint32_t cursor; /*%< current add point in the pool */ member in struct:__anon4075
281 val ^= rp->pool[(rp->cursor + TAP1) & (RND_POOLWORDS - 1)];
282 val ^= rp->pool[(rp->cursor + TAP2) & (RND_POOLWORDS - 1)];
283 val ^= rp->pool[(rp->cursor + TAP3) & (RND_POOLWORDS - 1)];
284 val ^= rp->pool[(rp->cursor + TAP4) & (RND_POOLWORDS - 1)];
285 val ^= rp->pool[(rp->cursor + TAP5) & (RND_POOLWORDS - 1)];
287 rp->pool[rp->cursor++] ^= val;
289 rp->pool[rp->cursor++] ^=
300 if (rp->cursor == RND_POOLWORDS) {
301 rp->cursor
[all...]
/freebsd-10.2-release/contrib/libarchive/libarchive/
H A Darchive_read_support_format_rar.c257 unsigned int cursor; member in struct:rar
1059 while (i < rar->cursor)
1069 if (client_offset < rar->dbo[rar->cursor].start_offset &&
1073 if (rar->cursor == 0)
1079 rar->cursor--;
1080 client_offset -= rar->dbo[rar->cursor+1].start_offset -
1081 rar->dbo[rar->cursor].end_offset;
1082 if (client_offset < rar->dbo[rar->cursor].start_offset)
1084 ret = __archive_read_seek(a, rar->dbo[rar->cursor].start_offset -
1085 rar->dbo[rar->cursor]
[all...]
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Host/common/
H A DEditline.cpp355 // then go to the next line ("\n") and then move cursor up
363 //::fprintf (out_file, "\033[1A\033[%uD\033[2K", (uint32_t)(m_lines_prompt.size() + lines[line_idx].size())); // Make cursor go up a line and clear that line
409 line_info->cursor,
427 ::el_deletestr (m_editline, line_info->cursor - line_info->buffer);
648 // delete the character at the cursor
651 line_info->buffer == line_info->cursor &&
652 line_info->cursor == line_info->lastchar)
679 ::fprintf (out_file, "\033[%uD\033[K", (uint32_t)(strlen(GetPrompt()) + line_info->cursor - line_info->buffer));
/freebsd-10.2-release/contrib/binutils/binutils/
H A Dresrc.c86 /* We read the directory entries in a cursor or icon file into
112 } cursor; member in union:icondir::__anon295
145 /* The number of cursor resources we have written out. */
702 /* Define a cursor resource. A cursor file may contain a set of
703 bitmaps, each representing the same cursor at various different
705 real cursor resource is then a group resource which can be used to
720 e = open_file_search (filename, FOPEN_RB, "cursor file", &real_filename);
722 /* A cursor file is basically an icon file. The start of the file
731 fatal (_("cursor fil
2421 write_rc_cursor(FILE *e, const rc_cursor *cursor) argument
[all...]

Completed in 268 milliseconds

123456