/external/webrtc/webrtc/system_wrappers/source/ |
D | data_log_c.cc | 54 return webrtc::DataLog::InsertCell(table_name, column_name, value); in WebRtcDataLog_InsertCell_int() 62 return webrtc::DataLog::InsertCell(table_name, column_name, values, length); in WebRtcDataLog_InsertArray_int() 69 return webrtc::DataLog::InsertCell(table_name, column_name, value); in WebRtcDataLog_InsertCell_float() 77 return webrtc::DataLog::InsertCell(table_name, column_name, values, length); in WebRtcDataLog_InsertArray_float() 84 return webrtc::DataLog::InsertCell(table_name, column_name, value); in WebRtcDataLog_InsertCell_double() 92 return webrtc::DataLog::InsertCell(table_name, column_name, values, length); in WebRtcDataLog_InsertArray_double() 99 return webrtc::DataLog::InsertCell(table_name, column_name, value); in WebRtcDataLog_InsertCell_int32() 107 return webrtc::DataLog::InsertCell(table_name, column_name, values, length); in WebRtcDataLog_InsertArray_int32() 114 return webrtc::DataLog::InsertCell(table_name, column_name, value); in WebRtcDataLog_InsertCell_uint32() 122 return webrtc::DataLog::InsertCell(table_name, column_name, values, length); in WebRtcDataLog_InsertArray_uint32() [all …]
|
D | data_log_unittest.cc | 138 DataLog::InsertCell(DataLog::Combine("table", 1), "arrival", in TEST() 140 DataLog::InsertCell(DataLog::Combine("table", 1), "timestamp", in TEST() 142 DataLog::InsertCell(DataLog::Combine("table", 1), "size", sizes, 5); in TEST() 192 DataLog::InsertCell(DataLog::Combine("table", 2), "arrival", in TEST() 194 DataLog::InsertCell(DataLog::Combine("table", 2), "timestamp", in TEST() 196 DataLog::InsertCell(DataLog::Combine("table", 2), "size", in TEST() 198 DataLog::InsertCell(DataLog::Combine("table", 3), "timestamp", in TEST() 200 DataLog::InsertCell(DataLog::Combine("table", 3), "arrival", in TEST() 202 DataLog::InsertCell(DataLog::Combine("table", 4), "size", in TEST()
|
D | data_log.cc | 40 int InsertCell(const std::string& column_name, 78 int InsertCell(const std::string& column_name, 120 int Row::InsertCell(const std::string& column_name, in InsertCell() function in webrtc::Row 196 int LogTable::InsertCell(const std::string& column_name, in InsertCell() function in webrtc::LogTable 202 return current_row_->InsertCell(column_name, value_container); in InsertCell() 391 int DataLogImpl::InsertCell(const std::string& table_name, in InsertCell() function in webrtc::DataLogImpl 398 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/webrtc/modules/audio_coding/neteq/test/ |
D | rtp_to_text.cc | 108 DataLog::InsertCell(table_name, "seq", packet->sequenceNumber()); in main() 109 DataLog::InsertCell(table_name, "ssrc", packet->SSRC()); in main() 110 DataLog::InsertCell(table_name, "payload type", packet->payloadType()); in main() 111 DataLog::InsertCell(table_name, "length", packet->dataLen()); in main() 112 DataLog::InsertCell(table_name, "timestamp", packet->timeStamp()); in main() 113 DataLog::InsertCell(table_name, "marker bit", packet->markerBit()); in main() 114 DataLog::InsertCell(table_name, "arrival", packet->time()); in main()
|
/external/webrtc/webrtc/system_wrappers/include/ |
D | data_log.h | 78 static int InsertCell(const std::string& table_name, in InsertCell() function 84 return data_log->InsertCell( in InsertCell() 98 static int InsertCell(const std::string& table_name, in InsertCell() function 105 return data_log->InsertCell( in InsertCell()
|
D | data_log_impl.h | 109 int InsertCell(const std::string& table_name,
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
D | audio_decoder_unittest.cc | 56 DataLog::InsertCell("CodecTest", "input", input[n]); in CompareInputOutput() 57 DataLog::InsertCell("CodecTest", "output", output[channels * n]); in CompareInputOutput()
|