Lines Matching refs:otmp
1063 char_u *otmp = NULL; in do_filter() local
1138 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL)) in do_filter()
1167 cmd_buf = make_filter_cmd(cmd, itmp, otmp); in do_filter()
1222 if (otmp != NULL) in do_filter()
1224 if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM, in do_filter()
1232 semsg(_(e_notread), otmp); in do_filter()
1342 if (otmp != NULL) in do_filter()
1343 mch_remove(otmp); in do_filter()
1345 vim_free(otmp); in do_filter()
1551 char_u *otmp) // NULL or name of output file in make_filter_cmd() argument
1573 if (otmp != NULL) in make_filter_cmd()
1574 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; // " " in make_filter_cmd()
1584 if (itmp != NULL || otmp != NULL) in make_filter_cmd()
1603 if (itmp != NULL || otmp != NULL) in make_filter_cmd()
1643 if (otmp != NULL) in make_filter_cmd()
1644 append_redir(buf, (int)len, p_srr, otmp); in make_filter_cmd()