Lines Matching refs:row
1468 std::string rtype1, rtype2, row, val; in DoCommand() local
1487 row = ikey.Encode().ToString(); in DoCommand()
1489 for(k=0;row[k]!='\x01' && row[k]!='\0';k++) in DoCommand()
1493 for(int j=0;row[j]!=delim_[0] && row[j]!='\0' && row[j]!='\x01';j++) in DoCommand()
1494 rtype1+=row[j]; in DoCommand()
1723 std::string rtype1, rtype2, row, val; in DoDumpCommand() local
1766 row = iter->key().ToString(); in DoDumpCommand()
1768 s1 = row.size()+val.size(); in DoDumpCommand()
1769 for(int j=0;row[j]!=delim_[0] && row[j]!='\0';j++) in DoDumpCommand()
1770 rtype1+=row[j]; in DoDumpCommand()
2099 InMemoryHandler(std::stringstream& row, bool print_values, in InMemoryHandler() argument
2102 row_(row), in InMemoryHandler()
2232 std::stringstream row; in DumpWalFile() local
2241 row.str(""); in DumpWalFile()
2247 row << WriteBatchInternal::Sequence(&batch) << ","; in DumpWalFile()
2248 row << WriteBatchInternal::Count(&batch) << ","; in DumpWalFile()
2249 row << WriteBatchInternal::ByteSize(&batch) << ","; in DumpWalFile()
2250 row << reader.LastRecordOffset() << ","; in DumpWalFile()
2251 InMemoryHandler handler(row, print_values, is_write_committed); in DumpWalFile()
2253 row << "\n"; in DumpWalFile()
2255 std::cout << row.str(); in DumpWalFile()