Lines Matching refs:remote

705 	char		*local, *remote;  in PHP_FUNCTION()  local
709 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rpp|ll", &z_ftp, &local, &local_len, &remote, &remote_… in PHP_FUNCTION()
750 if (!ftp_get(ftp, outstream, remote, remote_len, xtype, resumepos)) { in PHP_FUNCTION()
771 char *local, *remote; in PHP_FUNCTION() local
776 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rss|ll", &z_ftp, &local, &local_len, &remote, &remote_… in PHP_FUNCTION()
819 if ((ret = ftp_nb_get(ftp, outstream, remote, remote_len, xtype, resumepos)) == PHP_FTP_FAILED) { in PHP_FUNCTION()
886 char *remote; in PHP_FUNCTION() local
888 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rsr|ll", &z_ftp, &remote, &remote_len, &z_file, &mode,… in PHP_FUNCTION()
906 startpos = ftp_size(ftp, remote, remote_len); in PHP_FUNCTION()
916 if (!ftp_put(ftp, remote, remote_len, stream, xtype, startpos)) { in PHP_FUNCTION()
937 char *remote; in PHP_FUNCTION() local
939 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rsr|ll", &z_ftp, &remote, &remote_len, &z_file, &mode,… in PHP_FUNCTION()
957 startpos = ftp_size(ftp, remote, remote_len); in PHP_FUNCTION()
971 if (((ret = ftp_nb_put(ftp, remote, remote_len, stream, xtype, startpos)) == PHP_FTP_FAILED)) { in PHP_FUNCTION()
989 char *remote, *local; in PHP_FUNCTION() local
994 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rpp|ll", &z_ftp, &remote, &remote_len, &local, &local_… in PHP_FUNCTION()
1015 startpos = ftp_size(ftp, remote, remote_len); in PHP_FUNCTION()
1025 if (!ftp_put(ftp, remote, remote_len, instream, xtype, startpos)) { in PHP_FUNCTION()
1044 char *remote, *local; in PHP_FUNCTION() local
1049 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rpp|l", &z_ftp, &remote, &remote_len, &local, &local_l… in PHP_FUNCTION()
1062 if (!ftp_append(ftp, remote, remote_len, instream, xtype)) { in PHP_FUNCTION()
1081 char *remote, *local; in PHP_FUNCTION() local
1086 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rpp|ll", &z_ftp, &remote, &remote_len, &local, &local_… in PHP_FUNCTION()
1107 startpos = ftp_size(ftp, remote, remote_len); in PHP_FUNCTION()
1121 ret = ftp_nb_put(ftp, remote, remote_len, instream, xtype, startpos); in PHP_FUNCTION()