Lines Matching refs:buf

349 	ZEND_ARG_INFO(0, buf)
353 ZEND_ARG_INFO(0, buf)
4329 RFC822BUFFER buf; in _php_rfc822_write_address() local
4331 buf.beg = address; in _php_rfc822_write_address()
4332 buf.cur = buf.beg; in _php_rfc822_write_address()
4333 buf.end = buf.beg + sizeof(address) - 1; in _php_rfc822_write_address()
4334 buf.s = &ret; in _php_rfc822_write_address()
4335 buf.f = _php_rfc822_soutr; in _php_rfc822_write_address()
4336 rfc822_output_address_list(&buf, addresslist, 0, NULL); in _php_rfc822_write_address()
4337 rfc822_output_flush(&buf); in _php_rfc822_write_address()
4662 static void build_thread_tree_helper(THREADNODE *cur, zval *tree, long *numNodes, char *buf) in build_thread_tree_helper() argument
4667 snprintf(buf, 25, "%ld.num", thisNode); in build_thread_tree_helper()
4669 add_assoc_long(tree, buf, cur->num); in build_thread_tree_helper()
4671 snprintf(buf, 25, "%ld.next", thisNode); in build_thread_tree_helper()
4674 add_assoc_long(tree, buf, *numNodes); in build_thread_tree_helper()
4675 build_thread_tree_helper(cur->next, tree, numNodes, buf); in build_thread_tree_helper()
4677 add_assoc_long(tree, buf, 0); in build_thread_tree_helper()
4680 snprintf(buf, 25, "%ld.branch", thisNode); in build_thread_tree_helper()
4683 add_assoc_long(tree, buf, *numNodes); in build_thread_tree_helper()
4684 build_thread_tree_helper(cur->branch, tree, numNodes, buf); in build_thread_tree_helper()
4686 add_assoc_long(tree, buf, 0); in build_thread_tree_helper()
4696 char buf[25]; in build_thread_tree() local
4700 build_thread_tree_helper(top, *tree, &numNodes, buf); in build_thread_tree()
4811 char buf[GETS_FETCH_SIZE]; in php_mail_gets() local
4824 if (!f(stream, read, buf)) { in php_mail_gets()
4827 } else if (read != php_stream_write(IMAPG(gets_stream), buf, read)) { in php_mail_gets()
4834 char *buf = pemalloc(size + 1, 1); in php_mail_gets() local
4836 if (f(stream, size, buf)) { in php_mail_gets()
4837 buf[size] = '\0'; in php_mail_gets()
4840 free(buf); in php_mail_gets()
4841 buf = NULL; in php_mail_gets()
4843 return buf; in php_mail_gets()