Lines Matching refs:host

334 	ZEND_ARG_INFO(0, host)
2687 zend_string *mailbox, *host, *personal; in PHP_FUNCTION() local
2691 if (zend_parse_parameters(ZEND_NUM_ARGS(), "SSS", &mailbox, &host, &personal) == FAILURE) { in PHP_FUNCTION()
2701 if (host) { in PHP_FUNCTION()
2702 addr->host = cpystr(ZSTR_VAL(host)); in PHP_FUNCTION()
2753 if (addresstmp->host) { in PHP_FUNCTION()
2754 add_property_string(&tovals, "host", addresstmp->host); in PHP_FUNCTION()
4088 if (addr->host == NULL || strcmp(addr->host, ERRHOST) == 0) { in _php_imap_mail()
4093 bufferTo = safe_erealloc(bufferTo, bt_len, 1, strlen(addr->host)); in _php_imap_mail()
4094 bt_len += strlen(addr->host); in _php_imap_mail()
4095 offset += slprintf(bufferTo + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host); in _php_imap_mail()
4117 if (addr->host == NULL || strcmp(addr->host, ERRHOST) == 0) { in _php_imap_mail()
4122 bufferCc = safe_erealloc(bufferCc, bt_len, 1, strlen(addr->host)); in _php_imap_mail()
4123 bt_len += strlen(addr->host); in _php_imap_mail()
4124 offset += slprintf(bufferCc + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host); in _php_imap_mail()
4143 if (addr->host == NULL || strcmp(addr->host, ERRHOST) == 0) { in _php_imap_mail()
4148 bufferBcc = safe_erealloc(bufferBcc, bt_len, 1, strlen(addr->host)); in _php_imap_mail()
4149 bt_len += strlen(addr->host); in _php_imap_mail()
4150 offset += slprintf(bufferBcc + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host); in _php_imap_mail()
4543 ret += _php_rfc822_len(tmp->host); in _php_imap_address_size()
4593 if (addresstmp->host) add_property_string(&tmpvals, "host", addresstmp->host); in _php_imap_parse_address()