Lines Matching refs:p_next
458 nw->p_next = NULL;
460 while ( it->p_next )
462 nw->p_next = (struct pair*) malloc( sizeof( struct pair ) );
463 it = it->p_next;
464 nw = nw->p_next;
467 nw->p_next = NULL;
488 next = it->p_next;
528 it->p_next = NULL;
536 while ( it->p_next && ( strcmp( it->p_next->p_name, name ) != 0 ) )
538 it = it->p_next;
540 if ( it->p_next )
541 it->p_next->p_name = copy( name );
544 it->p_next = (struct pair*) malloc( sizeof( struct pair ) );
545 it->p_next->p_name = copy( name );
546 it->p_next->p_value = copy( val );
547 it->p_next->p_next = NULL;
565 it = it->p_next;
591 if ( it->p_next )
594 it->p_name = it->p_next->p_name;
595 it->p_value = it->p_next->p_value;
596 tmp = it->p_next->p_next;
597 free( it->p_next );
598 it->p_next = tmp;
608 while ( it->p_next && ( strcmp( it->p_next->p_name, symbol ) != 0 ) )
610 it = it->p_next;
612 if ( it->p_next )
614 struct pair *tmp = it->p_next;
615 it->p_next = it->p_next->p_next;