Lines Matching refs:inbuf
401 syst = ftp->inbuf; in ftp_syst()
438 if ((pwd = strchr(ftp->inbuf, '"')) == NULL) { in ftp_pwd()
482 add_next_index_string(return_value, ftp->inbuf, 1); in ftp_raw()
483 …if (isdigit(ftp->inbuf[0]) && isdigit(ftp->inbuf[1]) && isdigit(ftp->inbuf[2]) && ftp->inbuf[3] ==… in ftp_raw()
555 if ((mkd = strchr(ftp->inbuf, '"')) == NULL) { in ftp_mkdir()
638 *response = estrdup(ftp->inbuf); in ftp_alloc()
742 for (ptr = ftp->inbuf; *ptr && *ptr != '('; ptr++); in ftp_pasv()
772 for (ptr = ftp->inbuf; *ptr && !isdigit(*ptr); ptr++); in ftp_pasv()
978 return atol(ftp->inbuf); in ftp_size()
1003 for (ptr = ftp->inbuf; *ptr && !isdigit(*ptr); ptr++); in ftp_mdtm()
1147 memmove(ftp->inbuf, ftp->extra, ftp->extralen); in ftp_readline()
1151 data = ftp->inbuf; in ftp_readline()
1204 …if (isdigit(ftp->inbuf[0]) && isdigit(ftp->inbuf[1]) && isdigit(ftp->inbuf[2]) && ftp->inbuf[3] ==… in ftp_getresp()
1210 if (!isdigit(ftp->inbuf[0]) || !isdigit(ftp->inbuf[1]) || !isdigit(ftp->inbuf[2])) { in ftp_getresp()
1214 ftp->resp = 100 * (ftp->inbuf[0] - '0') + 10 * (ftp->inbuf[1] - '0') + (ftp->inbuf[2] - '0'); in ftp_getresp()
1216 memmove(ftp->inbuf, ftp->inbuf + 4, FTP_BUFSIZE - 4); in ftp_getresp()