Lines Matching refs:bod

3540 	BODY *bod=NULL, *topbod=NULL;  in PHP_FUNCTION()  local
3627 bod = mail_newbody(); in PHP_FUNCTION()
3628 topbod = bod; in PHP_FUNCTION()
3632 bod->type = (short) Z_LVAL_P(pvalue); in PHP_FUNCTION()
3636 bod->encoding = (short) Z_LVAL_P(pvalue); in PHP_FUNCTION()
3643 tmp_param->next = bod->parameter; in PHP_FUNCTION()
3644 bod->parameter = tmp_param; in PHP_FUNCTION()
3658 bod->parameter = disp_param; in PHP_FUNCTION()
3663 bod->subtype = cpystr(Z_STRVAL_P(pvalue)); in PHP_FUNCTION()
3667 bod->id = cpystr(Z_STRVAL_P(pvalue)); in PHP_FUNCTION()
3671 bod->description = cpystr(Z_STRVAL_P(pvalue)); in PHP_FUNCTION()
3675 bod->disposition.type = (char *) fs_get(Z_STRLEN_P(pvalue) + 1); in PHP_FUNCTION()
3676 memcpy(bod->disposition.type, Z_STRVAL_P(pvalue), Z_STRLEN_P(pvalue)+1); in PHP_FUNCTION()
3690 bod->disposition.parameter = disp_param; in PHP_FUNCTION()
3695 bod->contents.text.data = fs_get(Z_STRLEN_P(pvalue) + 1); in PHP_FUNCTION()
3696 memcpy(bod->contents.text.data, Z_STRVAL_P(pvalue), Z_STRLEN_P(pvalue)+1); in PHP_FUNCTION()
3697 bod->contents.text.size = Z_STRLEN_P(pvalue); in PHP_FUNCTION()
3699 bod->contents.text.data = fs_get(1); in PHP_FUNCTION()
3700 memcpy(bod->contents.text.data, "", 1); in PHP_FUNCTION()
3701 bod->contents.text.size = 0; in PHP_FUNCTION()
3705 bod->size.lines = Z_LVAL_P(pvalue); in PHP_FUNCTION()
3709 bod->size.bytes = Z_LVAL_P(pvalue); in PHP_FUNCTION()
3713 bod->md5 = cpystr(Z_STRVAL_P(pvalue)); in PHP_FUNCTION()
3723 bod->nested.part = mail_newbody_part(); in PHP_FUNCTION()
3724 mypart = bod->nested.part; in PHP_FUNCTION()
3731 bod = &mypart->body; in PHP_FUNCTION()
3734 bod->type = type; in PHP_FUNCTION()
3739 bod->encoding = (short) Z_LVAL_P(pvalue); in PHP_FUNCTION()
3747 tmp_param->next = bod->parameter; in PHP_FUNCTION()
3748 bod->parameter = tmp_param; in PHP_FUNCTION()
3762 bod->parameter = disp_param; in PHP_FUNCTION()
3767 bod->subtype = cpystr(Z_STRVAL_P(pvalue)); in PHP_FUNCTION()
3771 bod->id = cpystr(Z_STRVAL_P(pvalue)); in PHP_FUNCTION()
3775 bod->description = cpystr(Z_STRVAL_P(pvalue)); in PHP_FUNCTION()
3779 bod->disposition.type = (char *) fs_get(Z_STRLEN_P(pvalue) + 1); in PHP_FUNCTION()
3780 memcpy(bod->disposition.type, Z_STRVAL_P(pvalue), Z_STRLEN_P(pvalue)+1); in PHP_FUNCTION()
3794 bod->disposition.parameter = disp_param; in PHP_FUNCTION()
3799 bod->contents.text.data = fs_get(Z_STRLEN_P(pvalue) + 1); in PHP_FUNCTION()
3800 memcpy(bod->contents.text.data, Z_STRVAL_P(pvalue), Z_STRLEN_P(pvalue) + 1); in PHP_FUNCTION()
3801 bod->contents.text.size = Z_STRLEN_P(pvalue); in PHP_FUNCTION()
3803 bod->contents.text.data = fs_get(1); in PHP_FUNCTION()
3804 memcpy(bod->contents.text.data, "", 1); in PHP_FUNCTION()
3805 bod->contents.text.size = 0; in PHP_FUNCTION()
3809 bod->size.lines = Z_LVAL_P(pvalue); in PHP_FUNCTION()
3813 bod->size.bytes = Z_LVAL_P(pvalue); in PHP_FUNCTION()
3817 bod->md5 = cpystr(Z_STRVAL_P(pvalue)); in PHP_FUNCTION()
3827 if (bod && bod->type == TYPEMULTIPART && (!bod->nested.part || !bod->nested.part->next)) { in PHP_FUNCTION()
3869 bod = topbod; in PHP_FUNCTION()
3871 if (bod && bod->type == TYPEMULTIPART) { in PHP_FUNCTION()
3874 part = bod->nested.part; in PHP_FUNCTION()
3877 for (param = bod->parameter; param && !cookie; param = param->next) { in PHP_FUNCTION()
3905 bod=&part->body; in PHP_FUNCTION()
3907 spprintf(&tempstring, 0, "%s%s%s", mystring, bod->contents.text.data, CRLF); in PHP_FUNCTION()
3916 } else if (bod) { in PHP_FUNCTION()
3917 spprintf(&tempstring, 0, "%s%s%s", mystring, bod->contents.text.data, CRLF); in PHP_FUNCTION()