Lines Matching refs:to_r
108 char *to_r, *subject_r; in PHP_FUNCTION() local
128 to_r = estrndup(to, to_len); in PHP_FUNCTION()
130 if (!isspace((unsigned char) to_r[to_len - 1])) { in PHP_FUNCTION()
133 to_r[to_len - 1] = '\0'; in PHP_FUNCTION()
135 for (i = 0; to_r[i]; i++) { in PHP_FUNCTION()
136 if (iscntrl((unsigned char) to_r[i])) { in PHP_FUNCTION()
141 SKIP_LONG_HEADER_SEP(to_r, i); in PHP_FUNCTION()
142 to_r[i] = ' '; in PHP_FUNCTION()
146 to_r = to; in PHP_FUNCTION()
173 if (php_mail(to_r, subject_r, message, headers_trimmed, extra_cmd TSRMLS_CC)) { in PHP_FUNCTION()
186 if (to_r != to) { in PHP_FUNCTION()
187 efree(to_r); in PHP_FUNCTION()