Home | History | Annotate | Download | only in ftp

Lines Matching refs:entry

39     FtpDirectoryListingEntry entry;
41 entry.type = FtpDirectoryListingEntry::DIRECTORY;
42 entry.size = -1;
44 entry.type = FtpDirectoryListingEntry::FILE;
45 if (!base::StringToInt64(columns[2], &entry.size))
47 if (entry.size < 0)
53 &entry.last_modified)) {
57 entry.name = FtpUtil::GetStringPartAfterColumns(lines[i], 3);
58 if (entry.name.empty()) {
60 // It's not obvious how to display such an entry, so ignore them.
66 entries->push_back(entry);