Lines Matching refs:file_len
585 size_t file_len; in PHP_FUNCTION() local
588 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rrs|ll", &z_ftp, &z_file, &file, &file_len, &mode, &re… in PHP_FUNCTION()
613 if (!ftp_get(ftp, stream, file, file_len, xtype, resumepos)) { in PHP_FUNCTION()
632 size_t file_len; in PHP_FUNCTION() local
635 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rrs|ll", &z_ftp, &z_file, &file, &file_len, &mode, &re… in PHP_FUNCTION()
664 if ((ret = ftp_nb_get(ftp, stream, file, file_len, xtype, resumepos)) == PHP_FTP_FAILED) { in PHP_FUNCTION()
1142 size_t file_len; in PHP_FUNCTION() local
1144 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rp", &z_ftp, &file, &file_len) == FAILURE) { in PHP_FUNCTION()
1153 RETURN_LONG(ftp_size(ftp, file, file_len)); in PHP_FUNCTION()
1163 size_t file_len; in PHP_FUNCTION() local
1165 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rp", &z_ftp, &file, &file_len) == FAILURE) { in PHP_FUNCTION()
1174 RETURN_LONG(ftp_mdtm(ftp, file, file_len)); in PHP_FUNCTION()
1212 size_t file_len; in PHP_FUNCTION() local
1214 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs", &z_ftp, &file, &file_len) == FAILURE) { in PHP_FUNCTION()
1223 if (!ftp_delete(ftp, file, file_len)) { in PHP_FUNCTION()