/external/webrtc/src/system_wrappers/source/ |
D | data_log_c.cc | 56 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 …]
|
D | data_log_unittest.cc | 137 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()
|
D | data_log.cc | 41 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()
|
D | data_log_unittest_disabled.cc | 28 DataLog::InsertCell(table_name, "test", static_cast<double>(i)); in PerformLogging()
|
D | data_log_no_op.cc | 65 int DataLogImpl::InsertCell(const std::string& /*table_name*/, in InsertCell() function in webrtc::DataLogImpl
|
/external/webrtc/src/system_wrappers/interface/ |
D | data_log.h | 80 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()
|
D | data_log_impl.h | 111 int InsertCell(const std::string& table_name,
|