Lines Matching refs:p_next
453 nw->p_next = NULL;
455 while ( it->p_next )
457 nw->p_next = (struct pair*) malloc( sizeof( struct pair ) );
458 it = it->p_next;
459 nw = nw->p_next;
462 nw->p_next = NULL;
483 next = it->p_next;
523 it->p_next = NULL;
531 while ( it->p_next && ( strcmp( it->p_next->p_name, name ) != 0 ) )
533 it = it->p_next;
535 if ( it->p_next )
536 it->p_next->p_name = copy( name );
539 it->p_next = (struct pair*) malloc( sizeof( struct pair ) );
540 it->p_next->p_name = copy( name );
541 it->p_next->p_value = copy( val );
542 it->p_next->p_next = NULL;
560 it = it->p_next;
586 if ( it->p_next )
589 it->p_name = it->p_next->p_name;
590 it->p_value = it->p_next->p_value;
591 tmp = it->p_next->p_next;
592 free( it->p_next );
593 it->p_next = tmp;
603 while ( it->p_next && ( strcmp( it->p_next->p_name, symbol ) != 0 ) )
605 it = it->p_next;
607 if ( it->p_next )
609 struct pair *tmp = it->p_next;
610 it->p_next = it->p_next->p_next;