Lines Matching refs:ls
1034 struct unw_labeled_state *ls; in desc_copy_state() local
1036 for (ls = sr->labeled_states; ls; ls = ls->next) { in desc_copy_state()
1037 if (ls->label == label) { in desc_copy_state()
1039 memcpy(&sr->curr, &ls->saved_state, sizeof(sr->curr)); in desc_copy_state()
1040 sr->curr.next = dup_state_stack(ls->saved_state.next); in desc_copy_state()
1050 struct unw_labeled_state *ls; in desc_label_state() local
1052 ls = alloc_labeled_state(); in desc_label_state()
1053 if (!ls) { in desc_label_state()
1057 ls->label = label; in desc_label_state()
1058 memcpy(&ls->saved_state, &sr->curr, sizeof(ls->saved_state)); in desc_label_state()
1059 ls->saved_state.next = dup_state_stack(sr->curr.next); in desc_label_state()
1062 ls->next = sr->labeled_states; in desc_label_state()
1063 sr->labeled_states = ls; in desc_label_state()
1530 struct unw_labeled_state *ls, *next; in build_script() local
1700 for (ls = sr.labeled_states; ls; ls = next) { in build_script()
1701 next = ls->next; in build_script()
1702 free_state_stack(&ls->saved_state); in build_script()
1703 free_labeled_state(ls); in build_script()