Lines Matching refs:callstack

63 void function_entry(private_t *, struct bkpt *, struct callstack *);
64 void function_return(private_t *, struct callstack *);
574 struct callstack *Stk;
613 for (Stk = callstack; Stk != NULL; Stk = Stk->next) {
635 struct callstack *Stk;
645 for (Stk = callstack; Stk != NULL; Stk = Stk->next)
649 Stk = my_malloc(sizeof (struct callstack), NULL);
650 Stk->next = callstack;
651 callstack = Stk;
699 callstack = Stk->next;
711 struct callstack *Stk;
719 for (Stk = callstack; Stk != NULL; Stk = Stk->next)
723 Stk = my_malloc(sizeof (struct callstack), NULL);
724 Stk->next = callstack;
725 callstack = Stk;
750 callstack = Stk->next;
756 struct callstack *
766 struct callstack *Stk = NULL;
789 Stk = my_malloc(sizeof (struct callstack), NULL);
790 Stk->next = callstack;
791 callstack = Stk;
810 struct callstack *
824 struct callstack *Stk = NULL;
831 Stk = my_malloc(sizeof (struct callstack), NULL);
832 Stk->next = callstack;
833 callstack = Stk;
852 Stk = my_malloc(sizeof (struct callstack), NULL);
853 Stk->next = callstack;
854 callstack = Stk;
892 Stk = my_malloc(sizeof (struct callstack), NULL);
893 Stk->next = callstack;
894 callstack = Stk;
924 get_tid(struct callstack *Stk)
983 struct callstack *
986 struct callstack *Stk;
993 for (Stk = callstack; Stk != NULL; Stk = Stk->next)
1026 for (Stk = callstack; Stk != NULL; Stk = Stk->next)
1068 struct callstack *Stk;
1095 /* destroy all the callstack information */
1096 while ((Stk = callstack) != NULL) {
1097 callstack = Stk->next;
1178 struct callstack *Stk, struct dynlib *Dp, struct bkpt *Bp)
1209 struct callstack *Stk, struct dynlib *Dp, struct bkpt *Bp)
1253 struct callstack *Stk;
1443 function_entry(private_t *pri, struct bkpt *Bp, struct callstack *Stk)
1505 function_return(private_t *pri, struct callstack *Stk)
1565 struct callstack *Stk;