Searched refs:chain (Results 1 - 25 of 38) sorted by relevance

12

/haiku-fatelf/src/add-ons/kernel/network/stack/
H A Dstack.cpp45 struct chain;
46 typedef DoublyLinkedList<chain> ChainList;
71 struct chain : DoublyLinkedListLinkImpl<chain> { struct in inherits:DoublyLinkedListLinkImpl
72 chain(int family, int type, int protocol);
73 ~chain();
81 static struct chain* Lookup(hash_table* chains, int family, int type,
83 static struct chain* Add(hash_table* chains, int family, int type,
85 static struct chain* Add(hash_table* chains, int family, int type,
89 chain* nex
197 chain::chain(int _family, int _type, int _protocol) function in class:chain
301 struct chain* chain = (struct chain*)_chain; local
316 struct chain* chain = (struct chain*)_chain; local
346 struct chain* chain = new (std::nothrow) ::chain(family, type, protocol); local
390 struct chain* chain = Add(chains, family, type, 0, modules); local
402 struct chain* chain = (struct chain*)hash_remove_first(chains, &cookie); local
434 struct chain* chain; local
487 struct chain* chain; local
531 struct chain* chain; local
591 struct chain* chain; local
613 struct chain* chain; local
640 struct chain* chain; local
666 struct chain* chain = chain::Lookup(sProtocolChains, family, type, protocol); local
690 struct chain* chain local
726 struct chain* chain local
[all...]
/haiku-fatelf/src/bin/coreutils/lib/
H A Dmalloca.c123 void **chain = &mmalloca_results[slot]; local
124 for (; *chain != NULL;)
126 if (*chain == p)
130 *chain = ((struct header *) p_begin)->next;
134 chain = &((struct header *) ((char *) *chain - HEADER_SIZE))->next;
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dmalloca.c120 void **chain = &mmalloca_results[slot]; local
121 for (; *chain != NULL;)
123 if (*chain == p)
127 *chain = ((struct header *) p_begin)->next;
131 chain = &((struct header *) ((char *) *chain - HEADER_SIZE))->next;
/haiku-fatelf/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar9002/
H A Dar9287_olc.h29 int32_t txPower, uint16_t chain);
H A Dar9287_olc.c133 uint16_t chain)
138 /* Enable OLPC for chain 0 */
145 /* Enable OLPC for chain 1 */
152 /* Write the OLPC ref power for chain 0 */
154 if (chain == 0) {
162 /* Write the OLPC ref power for chain 1 */
164 if (chain == 1) {
132 ar9287olcSetPDADCs(struct ath_hal *ah, int32_t txPower, uint16_t chain) argument
/haiku-fatelf/headers/cpp/
H A Dparsestream.h52 parsebuf *chain; member in class:parsebuf
76 parsebuf() { chain= NULL;
H A Deditbuf.h110 struct edit_mark *chain; member in struct:edit_mark
/haiku-fatelf/src/add-ons/mail_daemon/inbound_filters/match_header/
H A DConfigView.cpp46 int32 chain; member in class:RuleFilterConfig
85 chain = settings->FindInt32("argument");
87 chain = -1;
88 printf("Chain: %ld\n",chain);
98 if (account->AccountID() == chain)
/haiku-fatelf/src/bin/gawk/
H A Darray.c33 * The decision is made to grow the array if the average chain length is
676 NODE **old, **new, *chain, *next; local
728 for (chain = old[i]; chain != NULL; chain = next) {
729 next = chain->ahnext;
730 hash1 = hash(chain->ahname_str,
731 chain->ahname_len, newsize);
734 chain->ahnext = new[hash1];
735 new[hash1] = chain;
833 NODE **old, **new, *chain, *bucket; local
[all...]
/haiku-fatelf/src/bin/network/wget/src/
H A Dcookies.c64 in a linked list called "chain". A cookie chain can be reached by
169 location of the cookie previous in chain, or NULL if the found
170 cookie is the head of a chain.
178 struct cookie *chain, *prev;
180 chain = hash_table_get (jar->chains, cookie->domain);
181 if (!chain)
185 for (; chain; prev = chain, chain
176 struct cookie *chain, *prev; local
790 struct cookie *chain = hash_table_get (jar->chains, host); local
1307 struct cookie *chain = iter.value; local
[all...]
/haiku-fatelf/src/libs/stdc++/legacy/
H A Deditbuf.cc281 for (m = mark_list(); m != NULL; m = m->chain)
609 start_mark.chain = &end_mark;
611 end_mark.chain = NULL;
621 chain = buf->start_mark.chain;
622 buf->start_mark.chain = this;
645 for (mark = this; mark->chain != NULL; mark = mark->chain) ;
646 // Assume that the last mark on the chain is the end_mark.
652 // Must unlink mark from chain o
[all...]
/haiku-fatelf/src/apps/mail/
H A DSettings.h69 void SetDefaultChain(uint32 chain);
H A DSettings.cpp406 Settings::SetDefaultChain(uint32 chain) argument
409 fDefaultChain = chain;
/haiku-fatelf/src/system/boot/loader/file_systems/fat/
H A DStream.h26 Stream(Volume &volume, uint32 chain, off_t size, const char *name);
H A DStream.cpp33 Stream::Stream(Volume &volume, uint32 chain, off_t size, const char *name) argument
36 fFirstCluster(chain),
41 TRACE(("FATFS::Stream::(, %d, %Ld, %s)\n", chain, size, name));
451 TRACE(("FATFS::Stream::%s: %d clusters in chain\n", __FUNCTION__, i));
/haiku-fatelf/src/bin/pcmcia-cs/
H A Dyacc_cis.y80 %type <tuple> tuple chain cis;
83 cis: chain
85 | chain mfc
89 chain: /* nothing */ label
91 | chain tuple
106 mfc: MFC '{' chain '}'
108 | mfc ',' '{' chain '}'
/haiku-fatelf/src/bin/gdb/bfd/
H A Dmerge.c77 struct sec_merge_sec_info *chain; member in struct:sec_merge_info
371 if ((secinfo = sinfo->chain)
385 sinfo->chain = NULL;
400 if (sinfo->chain)
402 secinfo->next = sinfo->chain->next;
403 sinfo->chain->next = secinfo;
407 sinfo->chain = secinfo;
503 for (secinfo = sinfo->chain; secinfo; secinfo = secinfo->next)
659 /* And now adjust the rest, removing them from the chain (but not hashtable)
689 if (! sinfo->chain)
[all...]
H A Dmipsbsd.c353 arelent_chain *chain = section->constructor_chain; local
357 *relptr++ = &chain->relent;
358 chain = chain->next;
H A Di386lynx.c560 arelent_chain *chain = section->constructor_chain;
563 *relptr++ = &chain->relent;
564 chain = chain->next;
559 arelent_chain *chain = section->constructor_chain; variable
H A Dhp300hpux.c862 arelent_chain *chain = section->constructor_chain; local
865 *relptr++ = &chain->relent;
866 chain = chain->next;
H A Driscix.c456 arelent_chain *chain = section->constructor_chain; local
459 *relptr++ = &chain->relent;
460 chain = chain->next;
/haiku-fatelf/src/add-ons/print/drivers/pdf/source/
H A DRegExp.cpp481 char *chain; local
488 chain = NULL;
496 if (chain == NULL) // First piece.
499 Tail(chain, latest);
500 chain = latest;
502 if (chain == NULL) // Loop ran zero times.
764 // - Tail - set the next-pointer at the end of a node chain
/haiku-fatelf/src/bin/less/
H A Dregexp.c373 register char *chain; local
380 chain = NULL;
386 if (chain == NULL) /* First piece. */
389 regtail(chain, latest);
390 chain = latest;
392 if (chain == NULL) /* Loop ran zero times. */
649 - regtail - set the next-pointer at the end of a node chain
/haiku-fatelf/src/kits/tracker/
H A DRegExp.cpp494 char* chain; local
501 chain = NULL;
509 if (chain == NULL) // First piece.
512 Tail(chain, latest);
513 chain = latest;
515 if (chain == NULL) // Loop ran zero times.
789 // - Tail - set the next-pointer at the end of a node chain
/haiku-fatelf/src/bin/gdb/gdb/
H A Dsymtab.h117 /* for opaque typedef struct chain */
119 struct symbol *chain; member in union:general_symbol_info::__anon3873
172 #define SYMBOL_VALUE_CHAIN(symbol) (symbol)->ginfo.value.chain

Completed in 320 milliseconds

12