Lines Matching refs:tmp_str
1342 struct strlist_st *tmp_str; in add_line_to_comment() local
1344 tmp_str = new_strlist(); in add_line_to_comment()
1345 tmp_str->str = strdup(curr_line); in add_line_to_comment()
1346 tmp_str->next = NULL; in add_line_to_comment()
1350 commhead = tmp_str; in add_line_to_comment()
1351 commtail = tmp_str; in add_line_to_comment()
1354 commtail->next = tmp_str; in add_line_to_comment()
1367 struct strlist_st *tmp_str; in add_qstring_to_str() local
1369 tmp_str = new_strlist(); in add_qstring_to_str()
1370 tmp_str->str = strdup(qstring_buf); in add_qstring_to_str()
1371 tmp_str->next = NULL; in add_qstring_to_str()
1375 strhead = tmp_str; in add_qstring_to_str()
1376 strtail = tmp_str; in add_qstring_to_str()
1379 strtail->next = tmp_str; in add_qstring_to_str()