Lines Matching refs:file_len
574 size_t file_len; in PHP_FUNCTION() local
577 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Ors|ll", &z_ftp, php_ftp_ce, &z_file, &file, &file_len… in PHP_FUNCTION()
599 if (!ftp_get(ftp, stream, file, file_len, xtype, resumepos)) { in PHP_FUNCTION()
618 size_t file_len; in PHP_FUNCTION() local
621 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Ors|ll", &z_ftp, php_ftp_ce, &z_file, &file, &file_len… in PHP_FUNCTION()
647 if ((ret = ftp_nb_get(ftp, stream, file, file_len, xtype, resumepos)) == PHP_FTP_FAILED) { in PHP_FUNCTION()
1098 size_t file_len; in PHP_FUNCTION() local
1100 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Op", &z_ftp, php_ftp_ce, &file, &file_len) == FAILURE)… in PHP_FUNCTION()
1106 RETURN_LONG(ftp_size(ftp, file, file_len)); in PHP_FUNCTION()
1116 size_t file_len; in PHP_FUNCTION() local
1118 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Op", &z_ftp, php_ftp_ce, &file, &file_len) == FAILURE)… in PHP_FUNCTION()
1124 RETURN_LONG(ftp_mdtm(ftp, file, file_len)); in PHP_FUNCTION()
1159 size_t file_len; in PHP_FUNCTION() local
1161 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &z_ftp, php_ftp_ce, &file, &file_len) == FAILURE)… in PHP_FUNCTION()
1167 if (!ftp_delete(ftp, file, file_len)) { in PHP_FUNCTION()