Lines Matching refs:to_r
4248 char *to_r = NULL; in PHP_FUNCTION() local
4366 to_r = estrndup(to, to_len); in PHP_FUNCTION()
4368 if (!isspace((unsigned char) to_r[to_len - 1])) { in PHP_FUNCTION()
4371 to_r[to_len - 1] = '\0'; in PHP_FUNCTION()
4373 for (i = 0; to_r[i]; i++) { in PHP_FUNCTION()
4374 if (iscntrl((unsigned char) to_r[i])) { in PHP_FUNCTION()
4380 SKIP_LONG_HEADER_SEP_MBSTRING(to_r, i); in PHP_FUNCTION()
4381 to_r[i] = ' '; in PHP_FUNCTION()
4385 to_r = to; in PHP_FUNCTION()
4491 if (!err && php_mail(to_r, subject, message, headers, extra_cmd ? ZSTR_VAL(extra_cmd) : NULL)) { in PHP_FUNCTION()
4501 if (to_r != to) { in PHP_FUNCTION()
4502 efree(to_r); in PHP_FUNCTION()