Lines Matching refs:remote

953 	char		*local, *remote;  in PHP_FUNCTION()  local
957 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rpp|ll", &z_ftp, &local, &local_len, &remote, &remote_… in PHP_FUNCTION()
998 if (!ftp_get(ftp, outstream, remote, remote_len, xtype, resumepos)) { in PHP_FUNCTION()
1018 char *local, *remote; in PHP_FUNCTION() local
1023 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rss|ll", &z_ftp, &local, &local_len, &remote, &remote_… in PHP_FUNCTION()
1066 if ((ret = ftp_nb_get(ftp, outstream, remote, remote_len, xtype, resumepos)) == PHP_FTP_FAILED) { in PHP_FUNCTION()
1133 char *remote; in PHP_FUNCTION() local
1135 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rsr|ll", &z_ftp, &remote, &remote_len, &z_file, &mode,… in PHP_FUNCTION()
1153 startpos = ftp_size(ftp, remote, remote_len); in PHP_FUNCTION()
1163 if (!ftp_put(ftp, remote, remote_len, stream, xtype, startpos)) { in PHP_FUNCTION()
1183 char *remote; in PHP_FUNCTION() local
1185 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rsr|ll", &z_ftp, &remote, &remote_len, &z_file, &mode,… in PHP_FUNCTION()
1203 startpos = ftp_size(ftp, remote, remote_len); in PHP_FUNCTION()
1217 if (((ret = ftp_nb_put(ftp, remote, remote_len, stream, xtype, startpos)) == PHP_FTP_FAILED)) { in PHP_FUNCTION()
1234 char *remote, *local; in PHP_FUNCTION() local
1239 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rpp|ll", &z_ftp, &remote, &remote_len, &local, &local_… in PHP_FUNCTION()
1260 startpos = ftp_size(ftp, remote, remote_len); in PHP_FUNCTION()
1270 if (!ftp_put(ftp, remote, remote_len, instream, xtype, startpos)) { in PHP_FUNCTION()
1288 char *remote, *local; in PHP_FUNCTION() local
1293 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rpp|l", &z_ftp, &remote, &remote_len, &local, &local_l… in PHP_FUNCTION()
1306 if (!ftp_append(ftp, remote, remote_len, instream, xtype)) { in PHP_FUNCTION()
1324 char *remote, *local; in PHP_FUNCTION() local
1329 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rpp|ll", &z_ftp, &remote, &remote_len, &local, &local_… in PHP_FUNCTION()
1350 startpos = ftp_size(ftp, remote, remote_len); in PHP_FUNCTION()
1364 ret = ftp_nb_put(ftp, remote, remote_len, instream, xtype, startpos); in PHP_FUNCTION()