Lines Matching refs:argc

1154 	int argc = ZEND_NUM_ARGS();  in php_imap_do_open()  local
1156 if (zend_parse_parameters(argc TSRMLS_CC, "pss|lla", &mailbox, &mailbox_len, &user, &user_len, in php_imap_do_open()
1161 if (argc >= 4) { in php_imap_do_open()
1230 if (argc >= 5) { in php_imap_do_open()
1594 int argc = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
1596 if (zend_parse_parameters(argc TSRMLS_CC, "r|l", &streamind, &options) == FAILURE) { in PHP_FUNCTION()
1602 if (argc == 2) { in PHP_FUNCTION()
1682 int msgindex, argc = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
1686 if (zend_parse_parameters(argc TSRMLS_CC, "rl|l", &streamind, &msgno, &flags) == FAILURE) { in PHP_FUNCTION()
1697 if ((argc == 3) && (flags & FT_UID)) { in PHP_FUNCTION()
1710 …body = mail_fetchtext_full (imap_le_struct->imap_stream, msgno, &body_len, (argc == 3 ? flags : NI… in PHP_FUNCTION()
1726 int seq_len, folder_len, argc = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
1729 …if (zend_parse_parameters(argc TSRMLS_CC, "rss|l", &streamind, &seq, &seq_len, &folder, &folder_le… in PHP_FUNCTION()
1735 if (mail_copy_full(imap_le_struct->imap_stream, seq, folder, (argc == 4 ? options : NIL)) == T) { in PHP_FUNCTION()
1752 int argc = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
1754 …if (zend_parse_parameters(argc TSRMLS_CC, "rss|l", &streamind, &seq, &seq_len, &folder, &folder_le… in PHP_FUNCTION()
1760 …if (mail_copy_full(imap_le_struct->imap_stream, seq, folder, (argc == 4 ? (options | CP_MOVE) : CP… in PHP_FUNCTION()
1998 int argc = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
2000 if (zend_parse_parameters(argc TSRMLS_CC, "rZ|l", &streamind, &sequence, &flags) == FAILURE) { in PHP_FUNCTION()
2008 …mail_setflag_full(imap_le_struct->imap_stream, Z_STRVAL_PP(sequence), "\\DELETED", (argc == 3 ? fl… in PHP_FUNCTION()
2020 int argc = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
2022 if (zend_parse_parameters(argc TSRMLS_CC, "rZ|l", &streamind, &sequence, &flags) == FAILURE) { in PHP_FUNCTION()
2030 …mail_clearflag_full(imap_le_struct->imap_stream, Z_STRVAL_PP(sequence), "\\DELETED", (argc == 3 ? … in PHP_FUNCTION()
2041 int defaulthost_len = 0, argc = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
2048 …if (zend_parse_parameters(argc TSRMLS_CC, "rl|lls", &streamind, &msgno, &fromlength, &subjectlengt… in PHP_FUNCTION()
2054 if (argc >= 3) { in PHP_FUNCTION()
2062 if (argc >= 4) { in PHP_FUNCTION()
2124 int headers_len, defaulthost_len = 0, argc = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
2126 …if (zend_parse_parameters(argc TSRMLS_CC, "s|s", &headers, &headers_len, &defaulthost, &defaulthos… in PHP_FUNCTION()
2130 if (argc == 2) { in PHP_FUNCTION()
2285 int msgindex, argc = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
2287 if (zend_parse_parameters(argc TSRMLS_CC, "rl|l", &streamind, &msgno, &flags) == FAILURE) { in PHP_FUNCTION()
2304 if ((argc == 3) && (flags & FT_UID)) { in PHP_FUNCTION()
2314 mail_fetchstructure_full(imap_le_struct->imap_stream, msgno, &body , (argc == 3 ? flags : NIL)); in PHP_FUNCTION()
2335 int argc = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
2337 …if (zend_parse_parameters(argc TSRMLS_CC, "rls|l", &streamind, &msgno, &sec, &sec_len, &flags) == … in PHP_FUNCTION()
2348 if (argc < 4 || !(flags & FT_UID)) { in PHP_FUNCTION()
2353 …body = mail_fetchbody_full(imap_le_struct->imap_stream, msgno, sec, &len, (argc == 4 ? flags : NIL… in PHP_FUNCTION()
2375 int argc = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
2377 …if (zend_parse_parameters(argc TSRMLS_CC, "rls|l", &streamind, &msgno, &sec, &sec_len, &flags) == … in PHP_FUNCTION()
2388 if (argc < 4 || !(flags & FT_UID)) { in PHP_FUNCTION()
2393 body = mail_fetch_mime(imap_le_struct->imap_stream, msgno, sec, &len, (argc == 4 ? flags : NIL)); in PHP_FUNCTION()
3074 int argc = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
3076 …if (zend_parse_parameters(argc TSRMLS_CC, "rss|l", &streamind, &sequence, &sequence_len, &flag, &f… in PHP_FUNCTION()
3082 mail_clearflag_full(imap_le_struct->imap_stream, sequence, flag, (argc == 4 ? flags : NIL)); in PHP_FUNCTION()
3100 int argc = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
3102 …if (zend_parse_parameters(argc TSRMLS_CC, "rll|lss", &streamind, &pgm, &rev, &flags, &criteria, &c… in PHP_FUNCTION()
3112 if (argc >= 4) { in PHP_FUNCTION()
3118 if (argc >= 5) { in PHP_FUNCTION()
3131 …slst = mail_sort(imap_le_struct->imap_stream, (argc == 6 ? charset : NIL), spg, mypgm, (argc >= 4 … in PHP_FUNCTION()
3154 int msgindex, argc = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
3156 if (zend_parse_parameters(argc TSRMLS_CC, "rl|l", &streamind, &msgno, &flags) == FAILURE) { in PHP_FUNCTION()
3167 if ((argc == 3) && (flags & FT_UID)) { in PHP_FUNCTION()
3178 …RETVAL_STRING(mail_fetchheader_full(imap_le_struct->imap_stream, msgno, NIL, NIL, (argc == 3 ? fla… in PHP_FUNCTION()
3394 int argc = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
3396 …if (zend_parse_parameters(argc TSRMLS_CC, "rs|l", &streamind, &sequence, &sequence_len, &flags) ==… in PHP_FUNCTION()
4049 …int to_len, message_len, headers_len, subject_len, cc_len, bcc_len, rpath_len, argc = ZEND_NUM_ARG… in PHP_FUNCTION() local
4051 …if (zend_parse_parameters(argc TSRMLS_CC, "sss|ssss", &to, &to_len, &subject, &subject_len, &messa… in PHP_FUNCTION()
4094 int argc = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
4097 …if (zend_parse_parameters(argc TSRMLS_CC, "rs|ls", &streamind, &criteria, &criteria_len, &flags, &… in PHP_FUNCTION()
4108 mail_search_full(imap_le_struct->imap_stream, (argc == 4 ? charset : NIL), pgm, flags); in PHP_FUNCTION()
4715 int argc = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
4718 if (zend_parse_parameters(argc TSRMLS_CC, "r|l", &streamind, &flags) == FAILURE) { in PHP_FUNCTION()