Lines Matching refs:text
88 char *cpytxt(SIZEDTEXT *dst, char *text, unsigned long size);
314 ZEND_ARG_INFO(0, text)
318 ZEND_ARG_INFO(0, text)
322 ZEND_ARG_INFO(0, text)
326 ZEND_ARG_INFO(0, text)
679 if(cur->text.data) in mail_free_foblist()
680 fs_give((void **)&(cur->text.data)); in mail_free_foblist()
711 if ((*errlist)->text.data) { in mail_free_errorlist()
712 fs_give((void **) &(*errlist)->text.data); in mail_free_errorlist()
1492 limits.text.data = "STORAGE"; in PHP_FUNCTION()
1493 limits.text.size = mailbox_size; in PHP_FUNCTION()
2470 char *text, *decode; in PHP_FUNCTION() local
2474 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &text, &text_len) == FAILURE) { in PHP_FUNCTION()
2478 decode = (char *) rfc822_base64((unsigned char *) text, text_len, &newlength); in PHP_FUNCTION()
2493 char *text, *decode; in PHP_FUNCTION() local
2497 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &text, &text_len) == FAILURE) { in PHP_FUNCTION()
2501 decode = (char *) rfc822_qprint((unsigned char *) text, text_len, &newlength); in PHP_FUNCTION()
2516 char *text, *decode; in PHP_FUNCTION() local
2520 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &text, &text_len) == FAILURE) { in PHP_FUNCTION()
2524 decode = (char *) rfc822_8bit((unsigned char *) text, text_len, &newlength); in PHP_FUNCTION()
2539 char *text, *decode; in PHP_FUNCTION() local
2543 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &text, &text_len) == FAILURE) { in PHP_FUNCTION()
2547 decode = rfc822_binary(text, text_len, &newlength); in PHP_FUNCTION()
3644 bod->contents.text.data = (char *) fs_get(Z_STRLEN_PP(pvalue) + 1); in PHP_FUNCTION()
3645 memcpy(bod->contents.text.data, Z_STRVAL_PP(pvalue), Z_STRLEN_PP(pvalue)+1); in PHP_FUNCTION()
3646 bod->contents.text.size = Z_STRLEN_PP(pvalue); in PHP_FUNCTION()
3648 bod->contents.text.data = (char *) fs_get(1); in PHP_FUNCTION()
3649 memcpy(bod->contents.text.data, "", 1); in PHP_FUNCTION()
3650 bod->contents.text.size = 0; in PHP_FUNCTION()
3757 bod->contents.text.data = (char *) fs_get(Z_STRLEN_PP(pvalue) + 1); in PHP_FUNCTION()
3758 memcpy(bod->contents.text.data, Z_STRVAL_PP(pvalue), Z_STRLEN_PP(pvalue) + 1); in PHP_FUNCTION()
3759 bod->contents.text.size = Z_STRLEN_PP(pvalue); in PHP_FUNCTION()
3761 bod->contents.text.data = (char *) fs_get(1); in PHP_FUNCTION()
3762 memcpy(bod->contents.text.data, "", 1); in PHP_FUNCTION()
3763 bod->contents.text.size = 0; in PHP_FUNCTION()
3861 spprintf(&tempstring, 0, "%s%s%s", mystring, bod->contents.text.data, CRLF); in PHP_FUNCTION()
3871 spprintf(&tempstring, 0, "%s%s%s", mystring, bod->contents.text.data, CRLF); in PHP_FUNCTION()
4225 char *str, *string, *charset, encoding, *text, *decode; in PHP_FUNCTION() local
4240 text = &charset[end + 1]; in PHP_FUNCTION()
4246 memcpy(text, &string[offset], charset_token-offset); in PHP_FUNCTION()
4247 text[charset_token - offset] = 0x00; in PHP_FUNCTION()
4251 add_property_string(myobject, "text", text, 1); in PHP_FUNCTION()
4261 memcpy(text, &string[encoding_token + 3], end_token - (encoding_token + 3)); /* Extract text */ in PHP_FUNCTION()
4262 text[end_token - (encoding_token + 3)] = 0x00; in PHP_FUNCTION()
4263 decode = text; in PHP_FUNCTION()
4265 …for(i=0; text[i] != 0x00; i++) if (text[i] == '_') text[i] = ' '; /* Replace all *_' with space. */ in PHP_FUNCTION()
4266 decode = (char *)rfc822_qprint((unsigned char *) text, strlen(text), &newlength); in PHP_FUNCTION()
4268 …decode = (char *)rfc822_base64((unsigned char *) text, strlen(text), &newlength); /* Decode 'B' en… in PHP_FUNCTION()
4282 if (decode != text) { in PHP_FUNCTION()
4303 …memcpy(text, &string[charset_token], end - charset_token); /* Extract unencoded text from string */ in PHP_FUNCTION()
4304 text[end - charset_token] = 0x00; in PHP_FUNCTION()
4308 add_property_string(myobject, "text", text, 1); in PHP_FUNCTION()