Searched refs:entries (Results 101 - 125 of 483) sorted by relevance

1234567891011>>

/macosx-10.10.1/BerkeleyDB-21/db/dbinc/
H A Ddb_server_int.h45 LIST_ENTRY(home_entry) entries; member in struct:home_entry
94 LIST_ENTRY(ct_entry) entries; /* List of entries */ member in struct:ct_entry
H A Drepmgr.h129 TAILQ_ENTRY(__repmgr_retry) entries; member in struct:__repmgr_retry
173 STAILQ_ENTRY(__queued_output) entries; member in struct:__queued_output
186 STAILQ_ENTRY(__repmgr_message) entries; member in struct:__repmgr_message
207 TAILQ_ENTRY(__repmgr_connection) entries; member in struct:__repmgr_connection
/macosx-10.10.1/ksh-23/ksh/src/cmd/ksh93/tests/
H A Dvartree1.sh75 if [[ "${!dest_tree.l1["$a"].l2["$b"].l3["$c"].entries[*]}" == "" ]] ; then
76 typeset -A dest_tree.l1["$a"].l2["$b"].l3["$c"].entries
79 #dest_tree.l1["$a"].l2["$b"].l3["$c"].entries+=( "$index" )
82 new_index=$(( ${#dest_tree.l1["$a"].l2["$b"].l3["$c"].entries[@]}+1 ))
87 if [[ "${dest_tree.l1["$a"].l2["$b"].l3["$c"].entries[${new_index}]}" != "" ]] ; then
92 add_tree_leaf dest_tree.l1["$a"].l2["$b"].l3["$c"].entries[${new_index}] "${index}" "${tree_mode}"
199 unset 'mytree_global.l1[urw].l2[itc zapfdingbats].l3[medium].entries[abcd].filenames[0]' ||
200 err_exit "variable 'mytree_global.l1[urw].l2[itc zapfdingbats].l3[medium].entries[abcd].filenames[0]' not found"
204 unset 'mytree_local.l1[urw].l2[itc zapfdingbats].l3[medium].entries[abcd].filenames[0]' ||
205 err_exit "variable 'mytree_local.l1[urw].l2[itc zapfdingbats].l3[medium].entries[abc
[all...]
/macosx-10.10.1/ncurses-44/ncurses/ncurses/tinfo/
H A DMKfallback.sh75 /* fallback entries for: $* */
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dargp-help.c388 /* A cluster of entries to reflect the argp tree structure. */
422 struct hol_entry *entries;
423 /* The number of entries in this hol. If this field is zero, the others
431 /* Clusters of entries in this hol. */
437 hol_cluster in which these entries occur, or 0, if at the root. */
469 hol->entries = malloc (sizeof (struct hol_entry) * hol->num_entries);
472 assert (hol->entries && hol->short_options);
476 /* Fill in the entries. */
478 for (o = opts, entry = hol->entries; ! oend (o); entry++)
549 free (hol->entries);
417 struct hol_entry *entries; member in struct:hol
876 struct hol_entry *entries = local
[all...]
/macosx-10.10.1/tcl-105/tk/tk/unix/
H A DtkUnixMenu.c192 * Processes configuration options for menu entries. Called when the
236 * store the indicator diameter for radio button and check box entries.
754 * entries, unless this entry is a radio|check button because then
1007 * Fields of menu entries are changed to reflect their current positions,
1061 mePtr = menuPtr->entries[i];
1075 * entries' height and y position, because when we see them the
1108 menuPtr->entries[j]->y = y + currentRowHeight
1109 - menuPtr->entries[j]->height;
1110 menuPtr->entries[j]->x = x;
1111 x += menuPtr->entries[
[all...]
/macosx-10.10.1/tcl-105/tk84/tk/unix/
H A DtkUnixMenu.c180 * Processes configuration options for menu entries. Called when
226 * and check box entries.
781 * entries, unless this entry is a radio|check button because
1036 * Fields of menu entries are changed to reflect their
1098 mePtr = menuPtr->entries[i];
1112 * entries' height and y position, because when we see them
1146 menuPtr->entries[j]->y = y + currentRowHeight
1147 - menuPtr->entries[j]->height;
1148 menuPtr->entries[j]->x = x;
1149 x += menuPtr->entries[
[all...]
/macosx-10.10.1/IOFireWireSBP2-425/IOFireWireSBP2/
H A DIOFireWireSBP2UserClient.cpp571 UInt32 entries; local
604 entries = params->reconnectStatusBlockLength;
605 if( entries > sizeof(FWSBP2StatusBlock) )
607 entries = sizeof(FWSBP2StatusBlock);
609 entries /= sizeof( UInt32 );
634 args[2] = (io_user_reference_t)(entries * sizeof(UInt64));
638 for( i = 0; i < entries; i++ )
688 UInt32 entries = params->statusBlockLength; local
689 if( entries > sizeof(FWSBP2StatusBlock) )
690 entries
785 UInt32 entries = params->statusBlockLength; local
856 UInt32 entries = params->length; local
920 UInt32 entries = params->length; local
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Ducol_sit.cpp102 } entries[UCOL_SIT_ITEMS_COUNT]; member in struct:CollatorSpec
307 spec->entries[i].start = start;
309 spec->entries[i].len = (int32_t)(end - start);
358 if(s->entries[i].start) {
365 optName = *(s->entries[i].start);
367 for(j = 0; j < s->entries[i].len; j++) {
369 destination[len+j] = uprv_toupper(*(s->entries[i].start+j));
372 len += s->entries[i].len;
374 len += s->entries[i].len;
376 uprv_strncat(destination,s->entries[
[all...]
/macosx-10.10.1/doc_cmds-49/makewhatis/
H A Dmakewhatis.c838 struct dirent **entries; local
851 nentries = scandir(section_dir, &entries, NULL, alphasort);
862 struct page_info *info = new_page_info(section_dir, entries[i]);
865 free(entries[i]);
867 free(entries);
910 struct dirent **entries; local
920 nsections = scandir(dir_name, &entries, select_sections, alphasort);
930 snprintf(section_dir, sizeof section_dir, "%s/%s", dir_name, entries[i]->d_name);
934 entries[i]->d_name, machine);
938 free(entries[
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/test/
H A Dsdb013.tcl83 set entries [expr $nentries * 100]
84 set ret [sdb013_populate $db $method $entries]
126 set entries [expr $nentries * 100]
127 set ret [sdb013_populate $db $method $entries]
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DMapData.h176 Entry* entries = m_mapData->m_entries; local
179 while (index < end && !entries[index].key)
188 Entry* entries = m_mapData->m_entries; local
191 if (index < end && entries[index].key)
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/tests/progs/
H A Dldif-filter.c44 - 'a': Sort attributes in entries.\n\
45 - 'e': Sort any entries separated by just one empty line.\n\
129 /* Flush entries to stdout and free them */
153 Strings ss = { NULL, 0, 0 }; /* entries + attrs of partial entry */
154 size_t entries = 0, attrs_totlen = 0, line_len; local
159 /* LDIF = Entries ss[..entries-1] + sep + attrs ss[entries..] + line */
176 /* Collect attrs for partial entry in ss[entries...] */
188 /* Empty line - consume sep+attrs or entries+sep */
191 if ( entries
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_cdsa_client/
H A Daclclient.cpp66 AutoAclEntryInfoList entries; local
67 getAcl(entries, tag);
68 for (uint32 n = 0; n < entries.count(); n++)
69 deleteAcl(entries[n].handle(), cred);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cdsa_client/lib/
H A Daclclient.cpp66 AutoAclEntryInfoList entries; local
67 getAcl(entries, tag);
68 for (uint32 n = 0; n < entries.count(); n++)
69 deleteAcl(entries[n].handle(), cred);
/macosx-10.10.1/SecurityTokend-55108/lib/
H A DSecTokend.h166 CSSM_RETURN (*getDatabaseAcl)(const char *tag, uint32 *count, CSSM_ACL_ENTRY_INFO **entries);
169 uint32 *count, CSSM_ACL_ENTRY_INFO **entries);
172 const char *tag, uint32 *count, CSSM_ACL_ENTRY_INFO **entries);
175 CSSM_RETURN (*freeAclData)(uint32 count, CSSM_ACL_ENTRY_INFO *entries);
/macosx-10.10.1/SecurityTokend-55108/security_tokend_client/
H A DSecTokend.h166 CSSM_RETURN (*getDatabaseAcl)(const char *tag, uint32 *count, CSSM_ACL_ENTRY_INFO **entries);
169 uint32 *count, CSSM_ACL_ENTRY_INFO **entries);
172 const char *tag, uint32 *count, CSSM_ACL_ENTRY_INFO **entries);
175 CSSM_RETURN (*freeAclData)(uint32 count, CSSM_ACL_ENTRY_INFO *entries);
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/
H A DWebBackForwardList.h63 const BackForwardListItemVector& entries() const { return m_entries; } function in class:WebKit::WebBackForwardList
/macosx-10.10.1/eap8021x-198/eapolclient.tproj/
H A DAlert.c39 LIST_ENTRY(Alert_s) entries;
55 LIST_FOREACH(scan, S_AlertHead_p, entries) {
195 LIST_INSERT_HEAD(S_AlertHead_p, alert_p, entries);
213 LIST_REMOVE(alert_p, entries);
/macosx-10.10.1/emacs-93/emacs/lisp/net/
H A Dnetrc.el44 "Parse FILE and return a list of all entries in the file."
99 If PORT specified, only return entries with matching port tokens.
108 ;; No machine name matches, so we look for default entries.
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/lib/
H A Dwindlopen.c255 int entries; local
290 entries = 0;
297 ++entries;
301 if (entries == 0) {
/macosx-10.10.1/ruby-106/ruby/lib/
H A Dfind.rb51 fs = Dir.entries(file)
/macosx-10.10.1/tcl-105/tk/tk/generic/
H A DtkMacWinMenu.c73 register TkMenuEntry *entryPtr = menuPtr->entries[index];
/macosx-10.10.1/xnu-2782.1.97/libkern/kxld/
H A Dkxld_array.h91 STAILQ_ENTRY(kxld_array_pool) entries; member in struct:kxld_array_pool
H A Dkxld_vtable.h56 KXLDArray entries; member in struct:kxld_vtable

Completed in 390 milliseconds

1234567891011>>