Lines Matching refs:ga_text
4983 garray_T ga_text; in read_dump_file() local
4993 ga_init2(&ga_text, 1, 90); in read_dump_file()
5013 if (ga_text.ga_data == NULL) in read_dump_file()
5014 dump_is_corrupt(&ga_text); in read_dump_file()
5028 ga_append(&ga_text, NUL); in read_dump_file()
5029 ml_append(curbuf->b_ml.ml_line_count, ga_text.ga_data, in read_dump_file()
5030 ga_text.ga_len, FALSE); in read_dump_file()
5034 ga_text.ga_len = 0; in read_dump_file()
5040 int prev_len = ga_text.ga_len; in read_dump_file()
5045 dump_is_corrupt(&ga_text); // duplicate cursor in read_dump_file()
5053 ga_append(&ga_text, c); in read_dump_file()
5060 ga_append(&ga_text, c); in read_dump_file()
5065 if (ga_text.ga_data != NULL) in read_dump_file()
5066 prev_char = vim_strnsave(((char_u *)ga_text.ga_data) + prev_len, in read_dump_file()
5067 ga_text.ga_len - prev_len); in read_dump_file()
5122 dump_is_corrupt(&ga_text); in read_dump_file()
5162 dump_is_corrupt(&ga_text); in read_dump_file()
5166 dump_is_corrupt(&ga_text); in read_dump_file()
5169 dump_is_corrupt(&ga_text); in read_dump_file()
5178 dump_is_corrupt(&ga_text); in read_dump_file()
5194 ga_concat(&ga_text, prev_char); in read_dump_file()
5201 dump_is_corrupt(&ga_text); in read_dump_file()
5206 if (ga_text.ga_len > 0) in read_dump_file()
5209 dump_is_corrupt(&ga_text); in read_dump_file()
5210 ga_append(&ga_text, NUL); in read_dump_file()
5211 ml_append(curbuf->b_ml.ml_line_count, ga_text.ga_data, in read_dump_file()
5212 ga_text.ga_len, FALSE); in read_dump_file()
5215 ga_clear(&ga_text); in read_dump_file()