Lines Matching refs:file_len
585 size_t file_len; in PHP_FUNCTION() local
588 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Ors|ll", &z_ftp, php_ftp_ce, &z_file, &file, &file_len… in PHP_FUNCTION()
610 if (!ftp_get(ftp, stream, file, file_len, xtype, resumepos)) { in PHP_FUNCTION()
629 size_t file_len; in PHP_FUNCTION() local
632 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Ors|ll", &z_ftp, php_ftp_ce, &z_file, &file, &file_len… in PHP_FUNCTION()
658 if ((ret = ftp_nb_get(ftp, stream, file, file_len, xtype, resumepos)) == PHP_FTP_FAILED) { in PHP_FUNCTION()
1109 size_t file_len; in PHP_FUNCTION() local
1111 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Op", &z_ftp, php_ftp_ce, &file, &file_len) == FAILURE)… in PHP_FUNCTION()
1117 RETURN_LONG(ftp_size(ftp, file, file_len)); in PHP_FUNCTION()
1127 size_t file_len; in PHP_FUNCTION() local
1129 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Op", &z_ftp, php_ftp_ce, &file, &file_len) == FAILURE)… in PHP_FUNCTION()
1135 RETURN_LONG(ftp_mdtm(ftp, file, file_len)); in PHP_FUNCTION()
1170 size_t file_len; in PHP_FUNCTION() local
1172 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &z_ftp, php_ftp_ce, &file, &file_len) == FAILURE)… in PHP_FUNCTION()
1178 if (!ftp_delete(ftp, file, file_len)) { in PHP_FUNCTION()