Searched refs:next (Results 151 - 175 of 3838) sorted by relevance

1234567891011>>

/macosx-10.10.1/postfix-255/postfix/src/dns/
H A Ddns_rr.c131 rr->next = 0;
140 if (rr->next)
141 dns_rr_free(rr->next);
162 dst->next = 0;
173 list->next = dns_rr_append(list->next, rr);
259 for (len = 0, rr = list; rr != 0; len++, rr = rr->next)
262 for (len = 0, rr = list; rr != 0; len++, rr = rr->next)
274 rr_array[i]->next = rr_array[i + 1];
275 rr_array[i]->next
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Ddtrace_ptss.h81 struct dtrace_ptss_page_entry* next; member in struct:dtrace_ptss_page_entry
86 struct dtrace_ptss_page* next; member in struct:dtrace_ptss_page
/macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/
H A DIOKitDebug.cpp76 IORegistryEntry * next; local
92 while( (next = iter->getNextObjectRecursive())) {
93 snprintf(format + 1, sizeof(format) - 1, "%ds", 2 * next->getDepth( plane ));
95 DEBG( "\033[33m%s", next->getName( plane ));
96 if( (next->getLocation( plane )))
97 DEBG("@%s", next->getLocation( plane ));
98 DEBG("\033[0m <class %s", next->getMetaClass()->getClassName());
99 if( (service = OSDynamicCast(IOService, next)))
/macosx-10.10.1/zsh-61/zsh/Src/Builtins/
H A Dsched.c44 struct schedcmd *next; member in struct:schedcmd
113 schedcmds = sch->next;
171 sch && sn; sch = (schl = sch)->next, sn--);
177 schl->next = sch->next;
180 schedcmds = sch->next;
207 for (sn = 1, sch = schedcmds; sch; sch = sch->next, sn++) {
316 sch->next = schedcmds;
322 sch2->next && sch2->next
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dfilter.c290 char *next; local
305 if ( (next = find_right_paren( str )) == NULL ) {
309 *next = '\0';
315 *next++ = ')';
322 return next;
331 char *next; local
436 next = str;
438 while ( *next && balance ) {
440 if ( *next == '(' ) {
442 } else if ( *next
520 char *next = NULL; local
781 char *next; local
956 char *next = NULL; local
[all...]
/macosx-10.10.1/apache-793/httpd/server/
H A Dlisten.c267 *walk = new->next;
268 new->next = ap_listeners;
275 walk = &(*walk)->next;
296 while (last && last->next) {
297 last = last->next;
306 new->next = 0;
310 /* Go to the next sockaddr. */
311 sa = sa->next;
318 * doesn't actually support IPv6. Try the next address.
336 last->next
362 ap_listen_rec *next; local
[all...]
H A Dutil_filter.c321 f->next = NULL;
324 f->next = *outf;
336 while (first && (first->next != (*outf))) {
337 first = first->next;
342 first->next = f;
349 while (!INSERT_BEFORE(f, fscan->next))
350 fscan = fscan->next;
352 f->next = fscan->next;
353 fscan->next
[all...]
/macosx-10.10.1/ntp-92/libntp/
H A Dauthkeys.c22 struct savekey *next; member in struct:savekey
101 sk = sk->next;
125 sk = sk->next;
160 sk = sk->next;
203 sk->next = authfreekeys;
231 sk = sk->next;
265 key_hash[KEYHASH(keyno)] = sk->next;
267 while (skp->next != sk)
268 skp = skp->next;
269 skp->next
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/unittests/ADT/
H A DTinyPtrVectorTest.cpp75 EXPECT_EQ(Values[i], *llvm::next(V.begin(), i));
77 EXPECT_EQ(V.end(), llvm::next(V.begin(), Values.size()));
337 this->V.erase(llvm::next(this->V.begin(), 1));
338 this->TestPtrs.erase(llvm::next(this->TestPtrs.begin(), 1));
340 this->V.erase(llvm::next(this->V.begin(), 2));
341 this->TestPtrs.erase(llvm::next(this->TestPtrs.begin(), 2));
343 this->V.erase(llvm::next(this->V.begin(), 5));
344 this->TestPtrs.erase(llvm::next(this->TestPtrs.begin(), 5));
346 this->V.erase(llvm::next(this->V.begin(), 13));
347 this->TestPtrs.erase(llvm::next(thi
[all...]
/macosx-10.10.1/emacs-93/emacs/src/
H A Dgmalloc.c186 __malloc_size_t next; /* Index of next free cluster. */ member in struct:__anon8472::__anon8476
210 struct list *next; member in struct:list
220 struct alignlist *next; member in struct:alignlist
587 _heapinfo[0].free.next = _heapinfo[0].free.prev = 0;
741 struct list *next; local
778 next = _fraghead[log].next;
779 if (next != NULL)
784 result = (__ptr_t) next;
1035 struct list *prev, *next; local
[all...]
H A Dundo.c328 Lisp_Object prev, next, last_boundary;
344 next = list;
348 if (CONSP (next) && NILP (XCAR (next)))
353 /* Advance to next element. */
354 prev = next;
355 next = XCDR (next);
364 while (CONSP (next) && ! NILP (XCAR (next)))
327 Lisp_Object prev, next, last_boundary; local
463 Lisp_Object next; variable
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/mod_db4/
H A Dmm_hash.c31 MM_Bucket *next; local
37 next = cur->next;
43 cur = next;
64 for (b = table->buckets[ hash ]; b; b = b->next) {
82 for(b = table->buckets[ hash ]; b; b = b->next) {
97 b->next = table->buckets[ hash ];
110 for (b = table->buckets[ hash ]; b; b = b->next) {
118 prev->next = b->next;
[all...]
/macosx-10.10.1/Heimdal-398.1.2/base/
H A Ddict.c40 struct hashentry *next; member in struct:hashentry
58 i = g->next;
154 for (p = dict->tab[v % dict->size]; p != NULL; p = p->next)
213 h->next = *tabptr;
216 if (h->next)
217 h->next->prev = &h->next;
241 if ((*(h->prev) = h->next) != NULL)
242 h->next->prev = h->prev;
261 for (g = *h; g; g = g->next)
[all...]
/macosx-10.10.1/apr-32/apr/apr/file_io/unix/
H A Dfilepath.c191 const char *next = addpath; local
192 while (*next && (*next != '/')) {
193 ++next;
195 seglen = next - addpath;
231 memcpy(path + pathlen, "../", *next ? 3 : 2);
232 pathlen += *next ? 3 : 2;
255 if (*next) {
262 /* Skip over trailing slash to the next segment
264 if (*next) {
[all...]
/macosx-10.10.1/libresolv-57/
H A Dres_update.h31 #define LINK(type) struct { type *prev, *next; }
37 #define NEXT(elt, link) ((elt)->link.next)
41 (elt)->link.next = (type *)(-1); \
47 (list).tail->link.next = (elt); \
51 (elt)->link.next = NULL; \
61 (elt)->link.next = (list).head; \
66 if ((elt)->link.next != NULL) \
67 (elt)->link.next->link.prev = (elt)->link.prev; \
71 (elt)->link.prev->link.next = (elt)->link.next; \
[all...]
/macosx-10.10.1/rsync-45/rsync/
H A Dchmod.c31 struct chmod_mode_struct *next; member in struct:chmod_mode_struct
66 prev_mode->next = curr_mode;
69 curr_mode->next = NULL;
184 while (curr_mode->next)
185 curr_mode = curr_mode->next;
186 curr_mode->next = first_mode;
200 for ( ; chmod_modes; chmod_modes = chmod_modes->next) {
218 struct chmod_mode_struct *next; local
221 next = chmod_modes->next;
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/sfio/
H A Dsfreserve.c56 { if((n = f->endb - f->next) > 0 && n == f->val )
57 { data = (Void_t*)f->next;
58 f->next += n;
85 if((n = f->endb - f->next) < 0)
104 if((n = now = f->endb - f->next) < 0)
113 { if((iosz = f->push->endb - f->push->next) == 0)
135 if((n = f->endb - f->next) < sz)
137 { f->endb = f->endr = f->next;
151 if((n = f->endb - f->next) <= 0)
169 data = (Void_t*)f->next;
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/dsaschema/
H A Ddsaschema.c321 static char *next; local
325 next = line;
327 while ( *next && strchr( sep, *next ) ) {
328 next++;
331 if ( *next == '\0' ) {
332 next = NULL;
335 tmp = next;
337 for ( inquote = 0; *next; ) {
338 switch ( *next ) {
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dldapsync.c262 char *next, *end; local
279 for ( next=cookie->octet_str.bv_val; next < end; ) {
280 if ( !strncmp( next, "rid=", STRLENOF("rid=") )) {
281 char *rid_ptr = next;
282 cookie->rid = strtol( &rid_ptr[ STRLENOF( "rid=" ) ], &next, 10 );
283 if ( next == rid_ptr ||
284 next > end ||
285 ( *next && *next !
[all...]
/macosx-10.10.1/apache-793/httpd/modules/slotmem/
H A Dmod_slotmem_shm.c70 struct ap_slotmem_instance_t *next; /* location of next allocated segment */ member in struct:ap_slotmem_instance_t
278 ap_slotmem_instance_t *next = *mem; local
279 while (next) {
280 if (AP_SLOTMEM_IS_PERSIST(next)) {
281 store_slotmem(next);
283 if (next->fbased) {
285 apr_shm_remove(next->name, next->gpool);
286 name = slotmem_filename(next
338 ap_slotmem_instance_t *next = globallistmem; local
494 ap_slotmem_instance_t *next = globallistmem; local
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/examples_cxx/excxx_repquote/
H A DRepConfigInfo.h15 RepHostInfoObj* next; // used for chaining multiple "other" hosts. member in struct:RepHostInfoObj
/macosx-10.10.1/Heimdal-398.1.2/lib/sl/
H A Dslc.h47 struct assignment *next; member in struct:assignment
/macosx-10.10.1/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOConfigDirectoryIterator.cpp59 IOConfigDirectory * next; local
64 status = owner->getIndexValue( position, next );
67 fDirectorySet->setObject( next );
68 next->release();
H A DIOFWCommand.cpp279 IOFWCommand *next; local
283 next = prev.fQueueNext;
287 fQueueNext = next;
289 if(!next)
292 next->fQueuePrev = this;
355 IOFWCommand *next; local
358 next = fQueueNext;
359 while(next)
361 if(CMP_ABSOLUTETIME(&next->fDeadline, &fDeadline) == 1)
363 next
[all...]
H A DIOFWUserAsyncStreamListener.cpp75 IOFWPacketHeader* next,
177 while (fLastWrittenHeader->CommonHeader.next != firstHeader)
179 tempHeader = fLastWrittenHeader->CommonHeader.next ;
336 if ( !IsAsyncStreamFreePacketHeader(currentHeader->CommonHeader.next) )
339 newHeader->CommonHeader.next = currentHeader->CommonHeader.next ;
340 currentHeader->CommonHeader.next = newHeader ;
343 currentHeader = currentHeader->CommonHeader.next ;
349 currentHeader->CommonHeader.next,
360 if ( !IsAsyncStreamFreePacketHeader(currentHeader->CommonHeader.next) )
[all...]

Completed in 479 milliseconds

1234567891011>>