Home | History | Annotate | Download | only in ltrace

Lines Matching defs:it

7  * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
12 * This program is distributed in the hope that it will be useful, but
350 struct library_symbol *it;
352 for (it = lib->symbols; it != NULL; it = it->next) {
355 || library_symbol_clone(*nsymp, it) < 0) {
372 struct library_exported_name *it;
374 for (it = lib->exported_names; it != NULL; it = it->next) {
377 || library_exported_name_clone(*nnamep, it) < 0) {
418 struct library_exported_name *it;
419 for (it = lib->exported_names; it != NULL; ) {
420 struct library_exported_name *next = it->next;
421 if (it->own_name)
422 free((char *)it->name);
423 free(it);
424 it = next;
451 struct library_symbol *it = start_after == NULL ? lib->symbols
454 while (it != NULL) {
455 struct library_symbol *next = it->next;
457 switch ((*cb)(it, data)) {
461 return it;
466 it = next;