Lines Matching refs:text

87 char *cpytxt(SIZEDTEXT *dst, char *text, unsigned long size);
293 if(cur->text.data) in mail_free_foblist()
294 fs_give((void **)&(cur->text.data)); in mail_free_foblist()
325 if ((*errlist)->text.data) { in mail_free_errorlist()
326 fs_give((void **) &(*errlist)->text.data); in mail_free_errorlist()
1119 limits.text.data = (unsigned char*)"STORAGE"; in PHP_FUNCTION()
1120 limits.text.size = mailbox_size; in PHP_FUNCTION()
2056 zend_string *text; in PHP_FUNCTION() local
2060 if (zend_parse_parameters(ZEND_NUM_ARGS(), "S", &text) == FAILURE) { in PHP_FUNCTION()
2064 decode = (char *) rfc822_base64((unsigned char *) ZSTR_VAL(text), ZSTR_LEN(text), &newlength); in PHP_FUNCTION()
2078 zend_string *text; in PHP_FUNCTION() local
2082 if (zend_parse_parameters(ZEND_NUM_ARGS(), "S", &text) == FAILURE) { in PHP_FUNCTION()
2086 decode = (char *) rfc822_qprint((unsigned char *) ZSTR_VAL(text), ZSTR_LEN(text), &newlength); in PHP_FUNCTION()
2100 zend_string *text; in PHP_FUNCTION() local
2104 if (zend_parse_parameters(ZEND_NUM_ARGS(), "S", &text) == FAILURE) { in PHP_FUNCTION()
2108 decode = (char *) rfc822_8bit((unsigned char *) ZSTR_VAL(text), ZSTR_LEN(text), &newlength); in PHP_FUNCTION()
2122 zend_string *text; in PHP_FUNCTION() local
2126 if (zend_parse_parameters(ZEND_NUM_ARGS(), "S", &text) == FAILURE) { in PHP_FUNCTION()
2130 decode = (char*)rfc822_binary(ZSTR_VAL(text), ZSTR_LEN(text), &newlength); in PHP_FUNCTION()
3259 bod->contents.text.data = fs_get(Z_STRLEN_P(pvalue) + 1); in PHP_FUNCTION()
3260 memcpy(bod->contents.text.data, Z_STRVAL_P(pvalue), Z_STRLEN_P(pvalue)+1); in PHP_FUNCTION()
3261 bod->contents.text.size = Z_STRLEN_P(pvalue); in PHP_FUNCTION()
3263 bod->contents.text.data = fs_get(1); in PHP_FUNCTION()
3264 memcpy(bod->contents.text.data, "", 1); in PHP_FUNCTION()
3265 bod->contents.text.size = 0; in PHP_FUNCTION()
3381 bod->contents.text.data = fs_get(Z_STRLEN_P(pvalue) + 1); in PHP_FUNCTION()
3382 memcpy(bod->contents.text.data, Z_STRVAL_P(pvalue), Z_STRLEN_P(pvalue) + 1); in PHP_FUNCTION()
3383 bod->contents.text.size = Z_STRLEN_P(pvalue); in PHP_FUNCTION()
3385 bod->contents.text.data = fs_get(1); in PHP_FUNCTION()
3386 memcpy(bod->contents.text.data, "", 1); in PHP_FUNCTION()
3387 bod->contents.text.size = 0; in PHP_FUNCTION()
3484 …printf(&tempstring, 0, "%s%s%s", mystring, bod->contents.text.data ? (char *) bod->contents.text.d… in PHP_FUNCTION()
3494 …printf(&tempstring, 0, "%s%s%s", mystring, bod->contents.text.data ? (char *) bod->contents.text.d… in PHP_FUNCTION()
3858 char *string, *charset, encoding, *text, *decode; in PHP_FUNCTION() local
3872 text = &charset[end + 1]; in PHP_FUNCTION()
3878 memcpy(text, &string[offset], charset_token-offset); in PHP_FUNCTION()
3879 text[charset_token - offset] = 0x00; in PHP_FUNCTION()
3882 add_property_string(&myobject, "text", text); in PHP_FUNCTION()
3892 memcpy(text, &string[encoding_token + 3], end_token - (encoding_token + 3)); /* Extract text */ in PHP_FUNCTION()
3893 text[end_token - (encoding_token + 3)] = 0x00; in PHP_FUNCTION()
3894 decode = text; in PHP_FUNCTION()
3896 …for(i=0; text[i] != 0x00; i++) if (text[i] == '_') text[i] = ' '; /* Replace all *_' with space. */ in PHP_FUNCTION()
3897 decode = (char *)rfc822_qprint((unsigned char *) text, strlen(text), &newlength); in PHP_FUNCTION()
3899 …decode = (char *)rfc822_base64((unsigned char *) text, strlen(text), &newlength); /* Decode 'B' en… in PHP_FUNCTION()
3912 if (decode != text) { in PHP_FUNCTION()
3933 …memcpy(text, &string[charset_token], end - charset_token); /* Extract unencoded text from string */ in PHP_FUNCTION()
3934 text[end - charset_token] = 0x00; in PHP_FUNCTION()
3937 add_property_string(&myobject, "text", text); in PHP_FUNCTION()