HomeSort by relevance Sort by last modified time
    Searched refs:chain (Results 1 - 25 of 202) sorted by null

1 2 3 4 5 6 7 8 9

  /webstack/webstack/branches/CoolStack12Rtm/src/openldap-2.3.30/libraries/libldap/
messages.c 30 ldap_first_message( LDAP *ld, LDAPMessage *chain )
34 assert( chain != NULL );
36 return chain;
50 ldap_count_messages( LDAP *ld, LDAPMessage *chain )
57 for ( i = 0; chain != NULL; chain = chain->lm_chain ) {
getentry.c 32 ldap_first_entry( LDAP *ld, LDAPMessage *chain )
36 assert( chain != NULL );
38 return chain->lm_msgtype == LDAP_RES_SEARCH_ENTRY
39 ? chain
40 : ldap_next_entry( ld, chain );
64 ldap_count_entries( LDAP *ld, LDAPMessage *chain )
71 for ( i = 0; chain != NULL; chain = chain->lm_chain ) {
72 if( chain->lm_msgtype == LDAP_RES_SEARCH_ENTRY )
    [all...]
references.c 30 ldap_first_reference( LDAP *ld, LDAPMessage *chain )
34 assert( chain != NULL );
36 return chain->lm_msgtype == LDAP_RES_SEARCH_REFERENCE
37 ? chain
38 : ldap_next_reference( ld, chain );
62 ldap_count_references( LDAP *ld, LDAPMessage *chain )
69 for ( i = 0; chain != NULL; chain = chain->lm_chain ) {
70 if( chain->lm_msgtype == LDAP_RES_SEARCH_REFERENCE )
    [all...]
  /webstack/webstack/trunk/src/openldap-2.3.30/libraries/libldap/
messages.c 30 ldap_first_message( LDAP *ld, LDAPMessage *chain )
34 assert( chain != NULL );
36 return chain;
50 ldap_count_messages( LDAP *ld, LDAPMessage *chain )
57 for ( i = 0; chain != NULL; chain = chain->lm_chain ) {
getentry.c 32 ldap_first_entry( LDAP *ld, LDAPMessage *chain )
36 assert( chain != NULL );
38 return chain->lm_msgtype == LDAP_RES_SEARCH_ENTRY
39 ? chain
40 : ldap_next_entry( ld, chain );
64 ldap_count_entries( LDAP *ld, LDAPMessage *chain )
71 for ( i = 0; chain != NULL; chain = chain->lm_chain ) {
72 if( chain->lm_msgtype == LDAP_RES_SEARCH_ENTRY )
    [all...]
references.c 30 ldap_first_reference( LDAP *ld, LDAPMessage *chain )
34 assert( chain != NULL );
36 return chain->lm_msgtype == LDAP_RES_SEARCH_REFERENCE
37 ? chain
38 : ldap_next_reference( ld, chain );
62 ldap_count_references( LDAP *ld, LDAPMessage *chain )
69 for ( i = 0; chain != NULL; chain = chain->lm_chain ) {
70 if( chain->lm_msgtype == LDAP_RES_SEARCH_REFERENCE )
    [all...]
  /webstack/webstack/branches/CoolStack12Rtm/src/gettext-0.16/gettext-runtime/gnulib-lib/
allocsa.c 120 void **chain = &mallocsa_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;
  /webstack/webstack/branches/CoolStack12Rtm/src/gettext-0.16/gettext-tools/gnulib-lib/
allocsa.c 120 void **chain = &mallocsa_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;
  /webstack/webstack/branches/CoolStack12Rtm/src/gettext-0.16/gettext-tools/libgettextpo/
allocsa.c 120 void **chain = &mallocsa_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;
  /webstack/webstack/branches/CoolStack12Rtm/src/openldap-2.3.30/tests/data/
slapd-chain1.conf 33 # uses the chain overlay as global;
34 # no chain-URI is configured, so the URI is parsed out of the referral
35 overlay chain
36 chain-uri @URI2@
37 chain-idassert-bind bindmethod=simple
slapd-chain2.conf 55 # uses the chain overlay as database specific;
56 # the chain-URI is configured, so only that URI is chained
57 overlay chain
58 chain-uri @URI1@
59 chain-idassert-bind bindmethod=simple
  /webstack/webstack/trunk/src/gettext-0.16/gettext-runtime/gnulib-lib/
allocsa.c 120 void **chain = &mallocsa_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;
  /webstack/webstack/trunk/src/gettext-0.16/gettext-tools/gnulib-lib/
allocsa.c 120 void **chain = &mallocsa_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;
  /webstack/webstack/trunk/src/gettext-0.16/gettext-tools/libgettextpo/
allocsa.c 120 void **chain = &mallocsa_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;
  /webstack/webstack/trunk/src/openldap-2.3.30/tests/data/
slapd-chain1.conf 33 # uses the chain overlay as global;
34 # no chain-URI is configured, so the URI is parsed out of the referral
35 overlay chain
36 chain-uri @URI2@
37 chain-idassert-bind bindmethod=simple
slapd-chain2.conf 55 # uses the chain overlay as database specific;
56 # the chain-URI is configured, so only that URI is chained
57 overlay chain
58 chain-uri @URI1@
59 chain-idassert-bind bindmethod=simple
  /webstack/webstack/branches/CoolStack12Rtm/src/mysql-5.0.45/ndb/src/ndbapi/
NdbLinHash.hpp 203 * chain=chainp will copy the contents of HASH_T into chain
206 NdbElement_t<C> * chain; local
207 for(chain = *chainp; chain != 0; chain = chain->next){
208 if(chain->len == len && !memcmp(chain->str, str, len))
211 oldChain = chain;
375 NdbElement_t<C> **oldbucketp, *chain, *headofold, *headofnew, *next; local
    [all...]
  /webstack/webstack/trunk/src/mysql-5.0.33.32bit/ndb/src/ndbapi/
NdbLinHash.hpp 204 * chain=chainp will copy the contents of HASH_T into chain
207 NdbElement_t<C> * chain; local
208 for(chain = *chainp; chain != 0; chain = chain->next){
209 if(chain->len == len && !memcmp(chain->str, str, len))
212 oldChain = chain;
376 NdbElement_t<C> **oldbucketp, *chain, *headofold, *headofnew, *next; local
    [all...]
  /webstack/webstack/trunk/src/mysql-5.0.33.64bit/ndb/src/ndbapi/
NdbLinHash.hpp 204 * chain=chainp will copy the contents of HASH_T into chain
207 NdbElement_t<C> * chain; local
208 for(chain = *chainp; chain != 0; chain = chain->next){
209 if(chain->len == len && !memcmp(chain->str, str, len))
212 oldChain = chain;
376 NdbElement_t<C> **oldbucketp, *chain, *headofold, *headofnew, *next; local
    [all...]
  /webstack/webstack/trunk/src/mysql-5.0.45/ndb/src/ndbapi/
NdbLinHash.hpp 203 * chain=chainp will copy the contents of HASH_T into chain
206 NdbElement_t<C> * chain; local
207 for(chain = *chainp; chain != 0; chain = chain->next){
208 if(chain->len == len && !memcmp(chain->str, str, len))
211 oldChain = chain;
375 NdbElement_t<C> **oldbucketp, *chain, *headofold, *headofnew, *next; local
    [all...]
  /webstack/php-experiment/php-5.2.9RC3/main/streams/
php_stream_filter_api.h 28 * Each stream can have a chain of filters for reading and another for writing.
33 * The first filter in the chain is invoked on the brigade and (depending on
64 PSFS_FEED_ME, /* filter needs more data; stop processing chain until more is available */
65 PSFS_PASS_ON /* filter generated output buckets; pass them on to next in chain */
115 /* link into stream and chain */
116 php_stream_filter_chain *chain; member in struct:_php_stream_filter
127 PHPAPI void _php_stream_filter_prepend(php_stream_filter_chain *chain, php_stream_filter *filter TSRMLS_DC);
128 PHPAPI int php_stream_filter_prepend_ex(php_stream_filter_chain *chain, php_stream_filter *filter TSRMLS_DC);
129 PHPAPI void _php_stream_filter_append(php_stream_filter_chain *chain, php_stream_filter *filter TSRMLS_DC);
130 PHPAPI int php_stream_filter_append_ex(php_stream_filter_chain *chain, php_stream_filter *filter TSRMLS_DC)
    [all...]
filter.c 316 PHPAPI int php_stream_filter_prepend_ex(php_stream_filter_chain *chain, php_stream_filter *filter TSRMLS_DC)
318 filter->next = chain->head;
321 if (chain->head) {
322 chain->head->prev = filter;
324 chain->tail = filter;
326 chain->head = filter;
327 filter->chain = chain;
332 PHPAPI void _php_stream_filter_prepend(php_stream_filter_chain *chain, php_stream_filter *filter TSRMLS_DC)
334 php_stream_filter_prepend_ex(chain, filter TSRMLS_CC)
435 php_stream_filter_chain *chain; local
    [all...]
  /webstack/webstack/branches/CoolStack12Rtm/src/php-5.2.4/main/streams/
filter.c 316 PHPAPI void _php_stream_filter_prepend(php_stream_filter_chain *chain, php_stream_filter *filter TSRMLS_DC)
318 filter->next = chain->head;
321 if (chain->head) {
322 chain->head->prev = filter;
324 chain->tail = filter;
326 chain->head = filter;
327 filter->chain = chain;
330 PHPAPI void _php_stream_filter_append(php_stream_filter_chain *chain, php_stream_filter *filter TSRMLS_DC)
332 php_stream *stream = chain->stream
418 php_stream_filter_chain *chain; local
    [all...]
  /webstack/webstack/trunk/src/php-5.2.0/main/streams/
filter.c 314 PHPAPI void _php_stream_filter_prepend(php_stream_filter_chain *chain, php_stream_filter *filter TSRMLS_DC)
316 filter->next = chain->head;
319 if (chain->head) {
320 chain->head->prev = filter;
322 chain->tail = filter;
324 chain->head = filter;
325 filter->chain = chain;
328 PHPAPI void _php_stream_filter_append(php_stream_filter_chain *chain, php_stream_filter *filter TSRMLS_DC)
330 php_stream *stream = chain->stream
416 php_stream_filter_chain *chain; local
    [all...]
  /webstack/webstack/trunk/src/php-5.2.4/main/streams/
filter.c 316 PHPAPI void _php_stream_filter_prepend(php_stream_filter_chain *chain, php_stream_filter *filter TSRMLS_DC)
318 filter->next = chain->head;
321 if (chain->head) {
322 chain->head->prev = filter;
324 chain->tail = filter;
326 chain->head = filter;
327 filter->chain = chain;
330 PHPAPI void _php_stream_filter_append(php_stream_filter_chain *chain, php_stream_filter *filter TSRMLS_DC)
332 php_stream *stream = chain->stream
418 php_stream_filter_chain *chain; local
    [all...]

Completed in 2970 milliseconds

1 2 3 4 5 6 7 8 9