Lines Matching refs:host

335 	ZEND_ARG_INFO(0, host)
2600 char *mailbox, *host, *personal; in PHP_FUNCTION() local
2605 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sss", &mailbox, &mailbox_len, &host, &host_l… in PHP_FUNCTION()
2615 if (host) { in PHP_FUNCTION()
2616 addr->host = cpystr(host); in PHP_FUNCTION()
2667 if (addresstmp->host) { in PHP_FUNCTION()
2668 add_property_string(tovals, "host", addresstmp->host, 1); in PHP_FUNCTION()
3927 if (addr->host == NULL || strcmp(addr->host, ERRHOST) == 0) { in _php_imap_mail()
3932 bufferTo = safe_erealloc(bufferTo, bt_len, 1, strlen(addr->host)); in _php_imap_mail()
3933 bt_len += strlen(addr->host); in _php_imap_mail()
3934 offset += slprintf(bufferTo + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host); in _php_imap_mail()
3956 if (addr->host == NULL || strcmp(addr->host, ERRHOST) == 0) { in _php_imap_mail()
3961 bufferCc = safe_erealloc(bufferCc, bt_len, 1, strlen(addr->host)); in _php_imap_mail()
3962 bt_len += strlen(addr->host); in _php_imap_mail()
3963 offset += slprintf(bufferCc + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host); in _php_imap_mail()
3982 if (addr->host == NULL || strcmp(addr->host, ERRHOST) == 0) { in _php_imap_mail()
3987 bufferBcc = safe_erealloc(bufferBcc, bt_len, 1, strlen(addr->host)); in _php_imap_mail()
3988 bt_len += strlen(addr->host); in _php_imap_mail()
3989 offset += slprintf(bufferBcc + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host); in _php_imap_mail()
4387 ret += _php_rfc822_len(tmp->host); in _php_imap_address_size()
4438 if (addresstmp->host) add_property_string(tmpvals, "host", addresstmp->host, 1); in _php_imap_parse_address()