Lines Matching refs:size_t

74 					const size_t cmd_len,
76 const size_t args_len);
79 static int my_send(ftpbuf_t *ftp, php_socket_t s, void *buf, size_t len);
80 static int my_recv(ftpbuf_t *ftp, php_socket_t s, void *buf, size_t len);
102 …* ftp_genlist(ftpbuf_t *ftp, const char *cmd, const size_t cmd_len, const char *path, const size_…
221 if (!ftp_putcmd(ftp, "QUIT", sizeof("QUIT")-1, NULL, (size_t) 0)) { in ftp_quit()
240 ftp_login(ftpbuf_t *ftp, const char *user, const size_t user_len, const char *pass, const size_t pa… in ftp_login()
399 if (!ftp_putcmd(ftp, "REIN", sizeof("REIN")-1, NULL, (size_t) 0)) { in ftp_reinit()
425 if (!ftp_putcmd(ftp, "SYST", sizeof("SYST")-1, NULL, (size_t) 0)) { in ftp_syst()
461 if (!ftp_putcmd(ftp, "PWD", sizeof("PWD")-1, NULL, (size_t) 0)) { in ftp_pwd()
483 ftp_exec(ftpbuf_t *ftp, const char *cmd, const size_t cmd_len) in ftp_exec()
502 ftp_raw(ftpbuf_t *ftp, const char *cmd, const size_t cmd_len, zval *return_value) in ftp_raw()
507 if (!ftp_putcmd(ftp, cmd, cmd_len, NULL, (size_t) 0)) { in ftp_raw()
523 ftp_chdir(ftpbuf_t *ftp, const char *dir, const size_t dir_len) in ftp_chdir()
558 if (!ftp_putcmd(ftp, "CDUP", sizeof("CDUP")-1, NULL, (size_t) 0)) { in ftp_cdup()
571 ftp_mkdir(ftpbuf_t *ftp, const char *dir, const size_t dir_len) in ftp_mkdir()
603 ftp_rmdir(ftpbuf_t *ftp, const char *dir, const size_t dir_len) in ftp_rmdir()
624 size_t buffer_len; in ftp_chmod()
692 ftp_nlist(ftpbuf_t *ftp, const char *path, const size_t path_len) in ftp_nlist()
701 ftp_list(ftpbuf_t *ftp, const char *path, const size_t path_len, int recursive) in ftp_list()
710 ftp_mlsd(ftpbuf_t *ftp, const char *path, const size_t path_len) in ftp_mlsd()
829 if (!ftp_putcmd(ftp, "EPSV", sizeof("EPSV")-1, NULL, (size_t) 0)) { in ftp_pasv()
860 if (!ftp_putcmd(ftp, "PASV", sizeof("PASV")-1, NULL, (size_t) 0)) { in ftp_pasv()
890 ftp_get(ftpbuf_t *ftp, php_stream *outstream, const char *path, const size_t path_len, ftptype_t ty… in ftp_get()
893 size_t rcvd; in ftp_get()
935 if (rcvd == (size_t)-1) { in ftp_get()
986 ftp_put(ftpbuf_t *ftp, const char *path, const size_t path_len, php_stream *instream, ftptype_t typ… in ftp_put()
1069 ftp_append(ftpbuf_t *ftp, const char *path, const size_t path_len, php_stream *instream, ftptype_t … in ftp_append()
1136 ftp_size(ftpbuf_t *ftp, const char *path, const size_t path_len) in ftp_size()
1157 ftp_mdtm(ftpbuf_t *ftp, const char *path, const size_t path_len) in ftp_mdtm()
1205 ftp_delete(ftpbuf_t *ftp, const char *path, const size_t path_len) in ftp_delete()
1224 ftp_rename(ftpbuf_t *ftp, const char *src, const size_t src_len, const char *dest, const size_t des… in ftp_rename()
1248 ftp_site(ftpbuf_t *ftp, const char *cmd, const size_t cmd_len) in ftp_site()
1269 ftp_putcmd(ftpbuf_t *ftp, const char *cmd, const size_t cmd_len, const char *args, const size_t arg… in ftp_putcmd()
1400 my_send(ftpbuf_t *ftp, php_socket_t s, void *buf, size_t len) in my_send()
1494 my_recv(ftpbuf_t *ftp, php_socket_t s, void *buf, size_t len) in my_recv()
1987 ftp_genlist(ftpbuf_t *ftp, const char *cmd, const size_t cmd_len, const char *path, const size_t pa… in ftp_genlist()
1993 size_t size, rcvd; in ftp_genlist()
1994 size_t lines; in ftp_genlist()
2036 if (rcvd == (size_t)-1 || rcvd > ((size_t)(-1))-size) { in ftp_genlist()
2092 ftp_nb_get(ftpbuf_t *ftp, php_stream *outstream, const char *path, const size_t path_len, ftptype_t… in ftp_nb_get()
2155 size_t rcvd; in ftp_nb_continue_read()
2169 if (rcvd == (size_t)-1) { in ftp_nb_continue_read()
2213 ftp_nb_put(ftpbuf_t *ftp, const char *path, const size_t path_len, php_stream *instream, ftptype_t … in ftp_nb_put()