Lines Matching refs:remote

977 	char		*local, *remote;  in PHP_FUNCTION()  local
981 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rpp|ll", &z_ftp, &local, &local_len, &remote, &remote_… in PHP_FUNCTION()
1022 if (!ftp_get(ftp, outstream, remote, remote_len, xtype, resumepos)) { in PHP_FUNCTION()
1044 char *local, *remote; in PHP_FUNCTION() local
1049 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rss|ll", &z_ftp, &local, &local_len, &remote, &remote_… in PHP_FUNCTION()
1092 if ((ret = ftp_nb_get(ftp, outstream, remote, remote_len, xtype, resumepos)) == PHP_FTP_FAILED) { in PHP_FUNCTION()
1161 char *remote; in PHP_FUNCTION() local
1163 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rsr|ll", &z_ftp, &remote, &remote_len, &z_file, &mode,… in PHP_FUNCTION()
1181 startpos = ftp_size(ftp, remote, remote_len); in PHP_FUNCTION()
1191 if (!ftp_put(ftp, remote, remote_len, stream, xtype, startpos)) { in PHP_FUNCTION()
1213 char *remote; in PHP_FUNCTION() local
1215 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rsr|ll", &z_ftp, &remote, &remote_len, &z_file, &mode,… in PHP_FUNCTION()
1233 startpos = ftp_size(ftp, remote, remote_len); in PHP_FUNCTION()
1247 if (((ret = ftp_nb_put(ftp, remote, remote_len, stream, xtype, startpos)) == PHP_FTP_FAILED)) { in PHP_FUNCTION()
1266 char *remote, *local; in PHP_FUNCTION() local
1271 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rpp|ll", &z_ftp, &remote, &remote_len, &local, &local_… in PHP_FUNCTION()
1292 startpos = ftp_size(ftp, remote, remote_len); in PHP_FUNCTION()
1302 if (!ftp_put(ftp, remote, remote_len, instream, xtype, startpos)) { in PHP_FUNCTION()
1322 char *remote, *local; in PHP_FUNCTION() local
1327 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rpp|l", &z_ftp, &remote, &remote_len, &local, &local_l… in PHP_FUNCTION()
1340 if (!ftp_append(ftp, remote, remote_len, instream, xtype)) { in PHP_FUNCTION()
1360 char *remote, *local; in PHP_FUNCTION() local
1365 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rpp|ll", &z_ftp, &remote, &remote_len, &local, &local_… in PHP_FUNCTION()
1386 startpos = ftp_size(ftp, remote, remote_len); in PHP_FUNCTION()
1400 ret = ftp_nb_put(ftp, remote, remote_len, instream, xtype, startpos); in PHP_FUNCTION()