Lines Matching refs:tmp

625 static int add_assoc_object(zval *arg, char *key, zval *tmp TSRMLS_DC)  in add_assoc_object()
634 return zend_hash_update(symtable, key, strlen(key)+1, (void *) &tmp, sizeof(zval *), NULL); in add_assoc_object()
640 static inline int add_next_index_object(zval *arg, zval *tmp TSRMLS_DC) in add_next_index_object()
650 return zend_hash_next_index_insert(symtable, (void *) &tmp, sizeof(zval *), NULL); in add_next_index_object()
1634 char tmp[MAILTMPLEN]; in PHP_FUNCTION() local
1648 tmp[0] = cache->recent ? (cache->seen ? 'R': 'N') : ' '; in PHP_FUNCTION()
1649 tmp[1] = (cache->recent | cache->seen) ? ' ' : 'U'; in PHP_FUNCTION()
1650 tmp[2] = cache->flagged ? 'F' : ' '; in PHP_FUNCTION()
1651 tmp[3] = cache->answered ? 'A' : ' '; in PHP_FUNCTION()
1652 tmp[4] = cache->deleted ? 'D' : ' '; in PHP_FUNCTION()
1653 tmp[5] = cache->draft ? 'X' : ' '; in PHP_FUNCTION()
1654 snprintf(tmp + 6, sizeof(tmp) - 6, "%4ld) ", cache->msgno); in PHP_FUNCTION()
1655 mail_date(tmp+11, cache); in PHP_FUNCTION()
1656 tmp[22] = ' '; in PHP_FUNCTION()
1657 tmp[23] = '\0'; in PHP_FUNCTION()
1658 mail_fetchfrom(tmp+23, imap_le_struct->imap_stream, msgno, (long)20); in PHP_FUNCTION()
1659 strcat(tmp, " "); in PHP_FUNCTION()
1661 strcat(tmp, "{"); in PHP_FUNCTION()
1663 strlcat(tmp, imap_le_struct->imap_stream->user_flags[find_rightmost_bit (&i)], sizeof(tmp)); in PHP_FUNCTION()
1664 if (i) strlcat(tmp, " ", sizeof(tmp)); in PHP_FUNCTION()
1666 strlcat(tmp, "} ", sizeof(tmp)); in PHP_FUNCTION()
1668 mail_fetchsubject(t = tmp + strlen(tmp), imap_le_struct->imap_stream, msgno, (long)25); in PHP_FUNCTION()
1669 snprintf(t += strlen(t), sizeof(tmp) - strlen(tmp), " (%ld chars)", cache->rfc822_size); in PHP_FUNCTION()
1670 add_next_index_string(return_value, tmp, 1); in PHP_FUNCTION()
3482 char *tmp=NULL, *mystring=NULL, *t=NULL, *tempstring=NULL, *str_copy = NULL; in PHP_FUNCTION() local
3780 tmp = emalloc(SENDBUFLEN + 1); in PHP_FUNCTION()
3782 rfc822_header(tmp, env, topbod); in PHP_FUNCTION()
3786 int l = strlen(tmp) - 2, l2; in PHP_FUNCTION()
3790 tmp[l] = '\0'; in PHP_FUNCTION()
3792 memcpy(tempstring, tmp, l); in PHP_FUNCTION()
3811 mystring = estrdup(tmp); in PHP_FUNCTION()
3839 t = tmp; in PHP_FUNCTION()
3846 spprintf(&tempstring, 0, "%s--%s%s%s%s", mystring, cookie, CRLF, tmp, CRLF); in PHP_FUNCTION()
3873 if (tmp) { in PHP_FUNCTION()
3874 efree(tmp); in PHP_FUNCTION()
4378 ADDRESS *tmp; in _php_imap_address_size() local
4381 tmp = addresslist; in _php_imap_address_size()
4383 if (tmp) do { in _php_imap_address_size()
4384 ret += _php_rfc822_len(tmp->personal); in _php_imap_address_size()
4385 ret += _php_rfc822_len(tmp->adl); in _php_imap_address_size()
4386 ret += _php_rfc822_len(tmp->mailbox); in _php_imap_address_size()
4387 ret += _php_rfc822_len(tmp->host); in _php_imap_address_size()
4389 } while ((tmp = tmp->next)); in _php_imap_address_size()