Home | History | Annotate | Download | only in safe_browsing

Lines Matching refs:pieces

103   // Read out |c| colon-separated pieces from the next line.  The resulting
104 // pieces point into the original data buffer.
105 bool GetPieces(size_t c, std::vector<base::StringPiece>* pieces) {
111 while (pieces->size() + 1 < c) {
118 pieces->push_back(line.substr(0, colon_ofs));
123 pieces->push_back(line);
288 std::vector<base::StringPiece> pieces;
289 if (!reader.GetPieces(2, &pieces))
292 base::StringPiece& command = pieces[0];
306 StringToRanges(pieces[1].as_string(), &chunk_delete.chunk_del);
314 list_name = pieces[1].as_string();
319 if (!base::StringToSizeT(pieces[1], next_update_sec))
325 chunk_url.url = pieces[1].as_string(); // Skip the initial "u:".
332 if (pieces[1] != "pleasereset")