Lines Matching refs:ls
1035 struct unw_labeled_state *ls; in desc_copy_state() local
1037 for (ls = sr->labeled_states; ls; ls = ls->next) { in desc_copy_state()
1038 if (ls->label == label) { in desc_copy_state()
1040 memcpy(&sr->curr, &ls->saved_state, sizeof(sr->curr)); in desc_copy_state()
1041 sr->curr.next = dup_state_stack(ls->saved_state.next); in desc_copy_state()
1051 struct unw_labeled_state *ls; in desc_label_state() local
1053 ls = alloc_labeled_state(); in desc_label_state()
1054 if (!ls) { in desc_label_state()
1058 ls->label = label; in desc_label_state()
1059 memcpy(&ls->saved_state, &sr->curr, sizeof(ls->saved_state)); in desc_label_state()
1060 ls->saved_state.next = dup_state_stack(sr->curr.next); in desc_label_state()
1063 ls->next = sr->labeled_states; in desc_label_state()
1064 sr->labeled_states = ls; in desc_label_state()
1531 struct unw_labeled_state *ls, *next; in build_script() local
1701 for (ls = sr.labeled_states; ls; ls = next) { in build_script()
1702 next = ls->next; in build_script()
1703 free_state_stack(&ls->saved_state); in build_script()
1704 free_labeled_state(ls); in build_script()