Searched refs:cursor (Results 101 - 125 of 966) sorted by relevance

1234567891011>>

/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/lib/
H A DPrimaryKey.cpp72 DbCursor cursor(keychain->database());
74 // @@@ Set up cursor to find item with this.
83 cursor->recordType(rt);
84 cursor->conjunctive(CSSM_DB_AND);
96 cursor->add(CSSM_DB_EQUAL, infos.at(ix), value);
99 return cursor;
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/persist/
H A DEntityJoin.java54 * // Perform the join operation by traversing the results with a cursor.
108 * Opens a cursor that returns the entities qualifying for the join. The
109 * join operation is performed as the returned cursor is accessed.
111 * <p>The operations performed with the cursor will not be transaction
114 * @return the cursor.
125 * Opens a cursor that returns the entities qualifying for the join. The
126 * join operation is performed as the returned cursor is accessed.
129 * the cursor, or null if the operations should not be transaction
132 * @param config the cursor configuration that determines the default lock
133 * mode used for all cursor operation
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/krb5/
H A Dkeytab_any.c123 krb5_kt_cursor cursor; member in struct:any_cursor_extra_data
142 ret = krb5_kt_start_seq_get(context, ed->a->kt, &ed->cursor);
159 krb5_kt_cursor *cursor)
164 ed = (struct any_cursor_extra_data *)cursor->data;
166 ret = krb5_kt_next_entry(context, ed->a->kt, entry, &ed->cursor);
172 ret2 = krb5_kt_end_seq_get (context, ed->a->kt, &ed->cursor);
176 ret2 = krb5_kt_start_seq_get(context, ed->a->kt, &ed->cursor);
190 krb5_kt_cursor *cursor)
195 ed = (struct any_cursor_extra_data *)cursor->data;
197 ret = krb5_kt_end_seq_get(context, ed->a->kt, &ed->cursor);
156 any_next_entry(krb5_context context, krb5_keytab id, krb5_keytab_entry *entry, krb5_kt_cursor *cursor) argument
188 any_end_seq_get(krb5_context context, krb5_keytab id, krb5_kt_cursor *cursor) argument
[all...]
H A Dkeytab_keyfile.c241 krb5_kt_cursor *cursor)
248 pos = krb5_storage_seek(cursor->sp, 0, SEEK_CUR);
258 ret = krb5_ret_int32(cursor->sp, &kvno);
266 if (cursor->data)
280 ret = krb5_storage_read(cursor->sp, entry->keyblock.keyvalue.data, 8);
291 if (cursor->data) {
292 krb5_storage_seek(cursor->sp, pos + 4 + 8, SEEK_SET);
293 cursor->data = NULL;
295 cursor->data = cursor;
238 akf_next_entry(krb5_context context, krb5_keytab id, krb5_keytab_entry *entry, krb5_kt_cursor *cursor) argument
300 akf_end_seq_get(krb5_context context, krb5_keytab id, krb5_kt_cursor *cursor) argument
[all...]
/macosx-10.10.1/tcl-105/tk84/tk/macosx/
H A DtkMacOSXCursor.c4 * This file contains Macintosh specific cursor related routines.
19 * There are three different ways to set the cursor on the Mac.
24 #define NONE -1 /* Hidden cursor */
36 TkCursor info; /* Generic cursor info used by tkCursor.c */
37 Handle macCursor; /* Resource containing Macintosh cursor.
39 int type; /* Type of Mac cursor: for theme cursors
40 * this is the theme cursor constant,
43 * cursor. */
47 * The table below is used to map from the name of a predefined cursor
98 * cursor
367 CursHandle cursor; local
439 TkpSetCursor( TkpCursor cursor) argument
[all...]
/macosx-10.10.1/Heimdal-398.1.2/admin/
H A Dpurge.c106 krb5_kt_cursor cursor; local
122 ret = krb5_kt_start_seq_get(context, keytab, &cursor);
128 while(krb5_kt_next_entry(context, keytab, &entry, &cursor) == 0) {
132 krb5_kt_end_seq_get(context, keytab, &cursor);
136 ret = krb5_kt_start_seq_get(context, keytab, &cursor);
142 while(krb5_kt_next_entry(context, keytab, &entry, &cursor) == 0) {
165 ret = krb5_kt_end_seq_get(context, keytab, &cursor);
/macosx-10.10.1/tcl-105/tk/tk/library/
H A Dpanedwindow.tcl113 # Handle motion on the widget. This is used to change the cursor
121 # May change the cursor. Sets up a timer to verify that we are still
130 set Priv($w,panecursor) [$w cget -cursor]
132 $w configure -cursor [$w cget -sashcursor]
134 $w configure -cursor sb_h_double_arrow
136 $w configure -cursor sb_v_double_arrow
147 $w configure -cursor $Priv($w,panecursor)
154 # Handles returning the normal cursor when we are no longer over the
162 # May restore the default cursor, or schedule a timer to do it.
172 $w configure -cursor
[all...]
/macosx-10.10.1/tcl-105/tk84/tk/library/
H A Dpanedwindow.tcl103 # Handle motion on the widget. This is used to change the cursor
111 # May change the cursor. Sets up a timer to verify that we are still
120 set Priv($w,panecursor) [$w cget -cursor]
123 $w configure -cursor sb_h_double_arrow
125 $w configure -cursor sb_v_double_arrow
128 $w configure -cursor [$w cget -sashcursor]
139 $w configure -cursor $Priv($w,panecursor)
146 # Handles returning the normal cursor when we are no longer over the
154 # May restore the default cursor, or schedule a timer to do it.
164 $w configure -cursor
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/perl/BerkeleyDB/t/
H A Ddb-3.1.t46 # create a cursor
47 my $cursor = $db->db_cursor() ;
48 ok $cursor, " created cursor";
52 cmp_ok $cursor->c_get($key, $value, DB_SET), '==', 0, " c_get ok" ;
57 cmp_ok $cursor->c_count($count), '==', 0, " c_count ok" ;
61 cmp_ok $cursor->c_get($key, $value, DB_SET), '==', 0, " c_get ok" ;
65 cmp_ok $cursor->c_count($count), '==', 0, " c_count ok" ;
70 undef $cursor ;
H A Dbtree.t138 # create the cursor
139 ok 35, my $cursor = $db->db_cursor() ;
145 while ($cursor->c_get($k, $v, DB_NEXT) == 0) {
151 ok 36, $cursor->status() == DB_NOTFOUND ;
152 ok 37, $cursor->status() eq $DB_errors{'DB_NOTFOUND'};
160 for ( $status = $cursor->c_get($k, $v, DB_LAST) ;
162 $status = $cursor->c_get($k, $v, DB_PREV)) {
170 ok 42, $cursor->status() == $status ;
171 ok 43, $cursor->status() eq $status ;
176 ok 46, $cursor
[all...]
H A Dstrict.t115 # closing a cursor & a database
121 ok 26, my $cursor = $db->db_cursor() ;
122 ok 27, $cursor->c_close() == 0 ;
130 # closing a database with an open cursor
135 ok 31, my $cursor = $db->db_cursor() ;
137 ok 32, $@ =~ /\QBerkeleyDB Aborting: attempted to close a database with 1 open cursor(s) at/;
142 # closing a transaction & a cursor
157 ok 37, my $cursor = $db->db_cursor() ;
158 eval { $status = $cursor->c_close() ; } ;
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/demos-en/
H A Dtwind2.rb89 cursor 'top_left_arrow'
98 cursor 'top_left_arrow'
108 cursor 'top_left_arrow'
121 cursor 'top_left_arrow'
147 cursor 'top_left_arrow'
158 cursor 'top_left_arrow'
173 cursor 'top_left_arrow'
192 :cursor=>'top_left_arrow',
199 :cursor=>'top_left_arrow',
206 :cursor
[all...]
H A Dtext.rb76 3. Insert text. Press mouse button 1 to set the insertion cursor, then
82 selection nearest the mouse cursor and you can drag that end of the
93 click button 2 to copy the selection to the point of the mouse cursor.
97 character to the left of the insertion cursor. Delete and Control-d
98 erase the character to the right of the insertion cursor. Meta-backspace
99 deletes the word to the left of the insertion cursor, and Meta-d deletes
100 the word to the right of the insertion cursor. Control-k deletes from
101 the insertion cursor to the end of the line, or it deletes the newline
104 cursor. Control-t transposes the two characters on either side of the
105 insertion cursor
[all...]
/macosx-10.10.1/lukemftp-14/tnftp/libedit/
H A Dhistory.c118 hentry_t *cursor; /* Current element in the list */ member in struct:history_t
199 h->cursor = h->list.next;
200 if (h->cursor != &h->list)
201 *ev = h->cursor->ev;
219 h->cursor = h->list.prev;
220 if (h->cursor != &h->list)
221 *ev = h->cursor->ev;
239 if (h->cursor == &h->list) {
244 if (h->cursor->next == &h->list) {
249 h->cursor
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/examples_java/src/db/
H A DBtRecExample.java73 // Acquire a cursor for the database.
74 cursor = db.openCursor(null, null);
102 status = cursor.getSearchRecordNumber(key, data, null);
109 // Move the cursor a record forward.
110 status = cursor.getNext(key, data, null);
123 status = cursor.getRecordNumber(datano, null);
134 cursor.close();
135 cursor = null;
156 if (cursor != null) {
157 cursor
230 private Cursor cursor; field in class:BtRecExample
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/persist/test/
H A DOperationTest.java194 EntityCursor<MyEntity> cursor = secIndex.entities(txn, null);
195 cursor.next();
196 assertEquals(1, cursor.count());
197 cursor.close();
201 cursor = secIndex.entities(txn, null);
202 cursor.next();
203 assertEquals(2, cursor.count());
204 cursor.close();
229 /* update() with primary entity cursor. */
249 /* update() with primary keys cursor
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dstrrepl.cpp28 * text and sets the cursor to the given position.
32 * @param theCursorPos cursor position that will be returned by
49 * text and does not modify the cursor.
105 int32_t& cursor) {
118 // Setup default cursor position (for cursorPos within output)
158 // Record the position of the cursor
177 int32_t len = r->replace(text, destLimit, destLimit, cursor);
188 // Record the position of the cursor
203 // Adjust the cursor for positions outside the key. These
231 cursor
102 replace(Replaceable& text, int32_t start, int32_t limit, int32_t& cursor) argument
245 int32_t cursor = cursorPos; local
[all...]
/macosx-10.10.1/tcl-105/tk/tk/unix/
H A DtkUnixCursor.c4 * This file contains X specific cursor manipulation routines.
18 * defined in tkCursor.c. Each system specific cursor module will define a
19 * different cursor structure. All of these structures must have the same
24 TkCursor info; /* Generic cursor info used by tkCursor.c */
25 Display *display; /* Display for which cursor is valid. */
29 * The table below is used to map from the name of a cursor to its index in
30 * the official cursor font:
118 * The table below is used to map from a cursor name to the data that defines
119 * the cursor. This table is used for cursors defined by Tk that don't exist
120 * in the X cursor tabl
214 Cursor cursor = None; local
385 Cursor cursor = None; local
580 Cursor cursor; local
[all...]
/macosx-10.10.1/libpcap-48/libpcap/
H A Dsf-pcap-ng.c221 * Block cursor - used when processing the contents of a block.
287 read_block(FILE *fp, pcap_t *p, struct block_cursor *cursor, char *errbuf) argument
359 * Initialize the cursor.
361 cursor->data = p->buffer + sizeof(bhdr);
362 cursor->data_remaining = bhdr.total_length - sizeof(bhdr) -
364 cursor->block_type = bhdr.block_type;
369 get_from_block_data(struct block_cursor *cursor, size_t chunk_size, argument
378 if (cursor->data_remaining < chunk_size) {
382 cursor->block_type);
389 data = cursor
396 get_opthdr_from_block_data(pcap_t *p, struct block_cursor *cursor, char *errbuf) argument
420 get_optvalue_from_block_data(struct block_cursor *cursor, struct option_header *opthdr, char *errbuf) argument
442 process_idb_options(pcap_t *p, struct block_cursor *cursor, u_int *tsresol, u_int64_t *tsoffset, char *errbuf) argument
560 add_interface(pcap_t *p, struct block_cursor *cursor, char *errbuf) argument
696 struct block_cursor cursor; local
1018 struct block_cursor cursor; local
[all...]
/macosx-10.10.1/Heimdal-398.1.2/appl/dceutils/
H A Dk5dce.h159 #define krb5_cc_start_seq_get(cache, cursor) (*(cache)->ops->get_first)(cache, cursor)
160 #define krb5_cc_next_cred(cache, cursor, creds) (*(cache)->ops->get_next)(cache, cursor, creds)
162 #define krb5_cc_end_seq_get(cache, cursor) (*(cache)->ops->end_get)(cache, cursor)
/macosx-10.10.1/Heimdal-398.1.2/lib/hx509/
H A Dks_mem.c111 void **cursor)
119 *cursor = iter;
128 void *cursor,
131 unsigned long *iter = cursor;
148 void *cursor)
150 free(cursor);
108 mem_iter_start(hx509_context context, hx509_certs certs, void *data, void **cursor) argument
125 mem_iter(hx509_context contexst, hx509_certs certs, void *data, void *cursor, hx509_cert *cert) argument
145 mem_iter_end(hx509_context context, hx509_certs certs, void *data, void *cursor) argument
/macosx-10.10.1/rsync-45/rsync/popt/
H A Dpopthelp.c497 static int singleOptionUsage(FILE * fp, int cursor, argument
510 return cursor; /* we did these already */
519 if (len == 3) return cursor;
524 if ((cursor + len) > 79) {
526 cursor = 7;
535 return cursor + len + 1;
545 static int itemUsage(FILE * fp, int cursor, poptItem item, int nitems, argument
561 cursor = singleOptionUsage(fp, cursor, opt, translation_domain);
566 return cursor;
574 singleTableUsage(poptContext con, FILE * fp, int cursor, const struct poptOption * opt, const char * translation_domain) argument
639 int cursor; local
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/incrtcl/iwidgets/generic/
H A Dmessagedialog.itk41 keep -background -cursor -font -foreground -modality
81 keep -background -bitmap -cursor -foreground -image
91 keep -background -cursor -font -foreground -text
/macosx-10.10.1/libunwind-35.3/src/
H A DUnwindLevel1.c350 unw_cursor_t* cursor = (unw_cursor_t*)context; local
353 if ( unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS )
369 unw_cursor_t* cursor = (unw_cursor_t*)context; local
371 unw_get_reg(cursor, index, &result);
383 unw_cursor_t* cursor = (unw_cursor_t*)context; local
384 unw_set_reg(cursor, index, new_value);
393 unw_cursor_t* cursor = (unw_cursor_t*)context; local
395 unw_get_reg(cursor, UNW_REG_IP, &result);
407 unw_cursor_t* cursor = (unw_cursor_t*)context; local
408 unw_set_reg(cursor, UNW_REG_I
417 unw_cursor_t* cursor = (unw_cursor_t*)context; local
[all...]
/macosx-10.10.1/tcl-105/tk84/tk/library/demos/
H A Dunicodeout.tcl54 set oldCursor [$w cget -cursor]
55 $w conf -cursor watch
78 $w conf -cursor $oldCursor

Completed in 510 milliseconds

1234567891011>>