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
257 * case, it's safe to pretend that there are no
461 /* If it's not a syscall, we need to find the
493 * easily free it, untracing is more work. */
638 struct process *it = start_after == NULL ? list_of_processes
641 while (it != NULL) {
643 struct process *next = it->next;
644 switch ((*cb)(it, data)) {
648 return it;
652 it = next;
663 struct process *it = start_after == NULL ? proc->leader
666 if (it != NULL) {
667 struct process *leader = it->leader;
668 while (it != NULL && it->leader == leader) {
670 struct process *next = it->next;
671 switch ((*cb)(it, data)) {
675 return it;
679 it = next;
796 * supported. If a breakpoint has custom callbacks, it might
805 * breakpoint, because when it hits, we won't know
806 * what to print out. But it's easier to fix it here
808 * look into it. So turn the sanity check off on
956 /* Look through export list of the new library and compare it
980 proc_each_library(struct process *proc, struct library *it,
985 if (it == NULL)
986 it = proc->libraries;
988 it = it->next;
990 while (it != NULL) {
991 struct library *next = it->next;
993 switch (cb(proc, it, data)) {
997 return it;
1002 it = next;