Lines Matching refs:next
70 struct ap_slotmem_instance_t *next; /* location of next allocated segment */
244 ap_slotmem_instance_t *next = *mem;
245 while (next) {
246 if (AP_SLOTMEM_IS_PERSIST(next)) {
247 store_slotmem(next);
249 if (next->fbased) {
251 apr_shm_remove(next->name, next->gpool);
252 name = slotmem_filename(next->gpool, next->name, 0);
254 apr_file_remove(name, next->gpool);
257 apr_shm_destroy((apr_shm_t *)next->shm);
258 next = next->next;
304 ap_slotmem_instance_t *next = globallistmem;
318 if (next) {
320 if (strcmp(next->name, fname) == 0) {
322 *new = next;
327 if (!next->next) {
330 next = next->next;
431 res->next = NULL;
437 next->next = res;
451 ap_slotmem_instance_t *next = globallistmem;
469 if (next) {
471 if (strcmp(next->name, fname) == 0) {
473 *new = next;
474 *item_size = next->desc.size;
475 *item_num = next->desc.num;
482 if (!next->next) {
485 next = next->next;
489 /* next try to attach to existing shared memory */
513 res->next = NULL;
518 next->next = res;