Home
last modified time | relevance | path

Searched refs:InsertCell (Results 1 – 7 of 7) sorted by relevance

/external/webrtc/src/system_wrappers/source/
Ddata_log_c.cc56 return webrtc::DataLog::InsertCell(table_name, column_name, value); in WebRtcDataLog_InsertCell_int()
64 return webrtc::DataLog::InsertCell(table_name, column_name, values, length); in WebRtcDataLog_InsertArray_int()
71 return webrtc::DataLog::InsertCell(table_name, column_name, value); in WebRtcDataLog_InsertCell_float()
79 return webrtc::DataLog::InsertCell(table_name, column_name, values, length); in WebRtcDataLog_InsertArray_float()
86 return webrtc::DataLog::InsertCell(table_name, column_name, value); in WebRtcDataLog_InsertCell_double()
94 return webrtc::DataLog::InsertCell(table_name, column_name, values, length); in WebRtcDataLog_InsertArray_double()
101 return webrtc::DataLog::InsertCell(table_name, column_name, value); in WebRtcDataLog_InsertCell_int32()
109 return webrtc::DataLog::InsertCell(table_name, column_name, values, length); in WebRtcDataLog_InsertArray_int32()
116 return webrtc::DataLog::InsertCell(table_name, column_name, value); in WebRtcDataLog_InsertCell_uint32()
124 return webrtc::DataLog::InsertCell(table_name, column_name, values, length); in WebRtcDataLog_InsertArray_uint32()
[all …]
Ddata_log_unittest.cc137 DataLog::InsertCell(DataLog::Combine("table", 1), "arrival", in TEST()
139 DataLog::InsertCell(DataLog::Combine("table", 1), "timestamp", in TEST()
141 DataLog::InsertCell(DataLog::Combine("table", 1), "size", sizes, 5); in TEST()
191 DataLog::InsertCell(DataLog::Combine("table", 2), "arrival", in TEST()
193 DataLog::InsertCell(DataLog::Combine("table", 2), "timestamp", in TEST()
195 DataLog::InsertCell(DataLog::Combine("table", 2), "size", in TEST()
197 DataLog::InsertCell(DataLog::Combine("table", 3), "timestamp", in TEST()
199 DataLog::InsertCell(DataLog::Combine("table", 3), "arrival", in TEST()
201 DataLog::InsertCell(DataLog::Combine("table", 4), "size", in TEST()
Ddata_log.cc41 int InsertCell(const std::string& column_name,
79 int InsertCell(const std::string& column_name,
121 int Row::InsertCell(const std::string& column_name, in InsertCell() function in webrtc::Row
197 int LogTable::InsertCell(const std::string& column_name, in InsertCell() function in webrtc::LogTable
203 return current_row_->InsertCell(column_name, value_container); in InsertCell()
402 int DataLogImpl::InsertCell(const std::string& table_name, in InsertCell() function in webrtc::DataLogImpl
409 return tables_[table_name]->InsertCell(column_name, value_container); in InsertCell()
Ddata_log_unittest_disabled.cc28 DataLog::InsertCell(table_name, "test", static_cast<double>(i)); in PerformLogging()
Ddata_log_no_op.cc65 int DataLogImpl::InsertCell(const std::string& /*table_name*/, in InsertCell() function in webrtc::DataLogImpl
/external/webrtc/src/system_wrappers/interface/
Ddata_log.h80 static int InsertCell(const std::string& table_name, in InsertCell() function
86 return data_log->InsertCell( in InsertCell()
100 static int InsertCell(const std::string& table_name, in InsertCell() function
107 return data_log->InsertCell( in InsertCell()
Ddata_log_impl.h111 int InsertCell(const std::string& table_name,