Lines Matching refs:myzvalue

75 static void _php_make_header_object(zval *myzvalue, ENVELOPE *en);
4121 static void _php_make_header_object(zval *myzvalue, ENVELOPE *en) in _php_make_header_object() argument
4126 object_init(myzvalue); in _php_make_header_object()
4128 if (en->remail) add_property_string(myzvalue, "remail", en->remail); in _php_make_header_object()
4129 if (en->date) add_property_string(myzvalue, "date", (char*)en->date); in _php_make_header_object()
4130 if (en->date) add_property_string(myzvalue, "Date", (char*)en->date); in _php_make_header_object()
4131 if (en->subject) add_property_string(myzvalue, "subject", en->subject); in _php_make_header_object()
4132 if (en->subject) add_property_string(myzvalue, "Subject", en->subject); in _php_make_header_object()
4133 if (en->in_reply_to) add_property_string(myzvalue, "in_reply_to", en->in_reply_to); in _php_make_header_object()
4134 if (en->message_id) add_property_string(myzvalue, "message_id", en->message_id); in _php_make_header_object()
4135 if (en->newsgroups) add_property_string(myzvalue, "newsgroups", en->newsgroups); in _php_make_header_object()
4136 if (en->followup_to) add_property_string(myzvalue, "followup_to", en->followup_to); in _php_make_header_object()
4137 if (en->references) add_property_string(myzvalue, "references", en->references); in _php_make_header_object()
4143 add_property_str(myzvalue, "toaddress", fulladdress); in _php_make_header_object()
4145 add_assoc_object(myzvalue, "to", &paddress); in _php_make_header_object()
4152 add_property_str(myzvalue, "fromaddress", fulladdress); in _php_make_header_object()
4154 add_assoc_object(myzvalue, "from", &paddress); in _php_make_header_object()
4161 add_property_str(myzvalue, "ccaddress", fulladdress); in _php_make_header_object()
4163 add_assoc_object(myzvalue, "cc", &paddress); in _php_make_header_object()
4170 add_property_str(myzvalue, "bccaddress", fulladdress); in _php_make_header_object()
4172 add_assoc_object(myzvalue, "bcc", &paddress); in _php_make_header_object()
4179 add_property_str(myzvalue, "reply_toaddress", fulladdress); in _php_make_header_object()
4181 add_assoc_object(myzvalue, "reply_to", &paddress); in _php_make_header_object()
4188 add_property_str(myzvalue, "senderaddress", fulladdress); in _php_make_header_object()
4190 add_assoc_object(myzvalue, "sender", &paddress); in _php_make_header_object()
4197 add_property_str(myzvalue, "return_pathaddress", fulladdress); in _php_make_header_object()
4199 add_assoc_object(myzvalue, "return_path", &paddress); in _php_make_header_object()