Lines Matching refs:element
12 + struct ignorepath_entry* next; /* Points to the next ignorepath element */
24 + struct ignorepath_entry* element = ignorepath;
32 + while ( element ) {
33 + if ( strcmp( element->name, targetpath ) == 0 ) {
38 + element = element->next;
64 + struct ignorepath_entry* element = ignorepath;
83 + element = ignorepath;
89 + while ( element->next ) element = element->next;
90 + element->next = xmalloc( sizeof( struct ignorepath_entry ) );
91 + element->next->next = 0;
92 + strcpy( &element->next->name[0], optarg );
95 + element = ignorepath;
96 + while ( element ) {
97 + printf( " * '%s'\n", &element->name[0] );
98 + element = element->next;