/external/chromium_org/remoting/webapp/ |
D | server_log_entry.js | 19 remoting.ServerLogEntry = function() { class 24 remoting.ServerLogEntry.KEY_EVENT_NAME_ = 'event-name'; 26 remoting.ServerLogEntry.VALUE_EVENT_NAME_SESSION_STATE_ = 30 remoting.ServerLogEntry.KEY_SESSION_ID_ = 'session-id'; 33 remoting.ServerLogEntry.KEY_ROLE_ = 'role'; 35 remoting.ServerLogEntry.VALUE_ROLE_CLIENT_ = 'client'; 38 remoting.ServerLogEntry.KEY_SESSION_STATE_ = 'session-state'; 45 remoting.ServerLogEntry.getValueForSessionState = function(state) { 71 remoting.ServerLogEntry.KEY_CONNECTION_ERROR_ = 'connection-error'; 78 remoting.ServerLogEntry.getValueForError = [all …]
|
D | log_to_server.js | 65 var entry = remoting.ServerLogEntry.makeClientSessionStateChange( 161 var entry = remoting.ServerLogEntry.makeStats(this.statsAccumulator, mode); 232 var entry = remoting.ServerLogEntry.makeSessionIdOld(this.sessionId, mode); 237 entry = remoting.ServerLogEntry.makeSessionIdNew(this.sessionId, mode);
|
/external/chromium_org/remoting/signaling/ |
D | server_log_entry.cc | 35 ServerLogEntry::ServerLogEntry() { in ServerLogEntry() function in remoting::ServerLogEntry 38 ServerLogEntry::~ServerLogEntry() { in ~ServerLogEntry() 41 void ServerLogEntry::Set(const std::string& key, const std::string& value) { in Set() 45 void ServerLogEntry::AddCpuField() { in AddCpuField() 49 void ServerLogEntry::AddModeField(ServerLogEntry::Mode mode) { in AddModeField() 64 void ServerLogEntry::AddRoleField(const char* role) { in AddRoleField() 68 void ServerLogEntry::AddEventNameField(const char* name) { in AddEventNameField() 73 scoped_ptr<XmlElement> ServerLogEntry::MakeStanza() { in MakeStanza() 78 scoped_ptr<XmlElement> ServerLogEntry::ToStanza() const { in ToStanza()
|
D | log_to_server.h | 30 LogToServer(ServerLogEntry::Mode mode, 41 void Log(const ServerLogEntry& entry); 43 ServerLogEntry::Mode mode() { return mode_; } in mode() 48 ServerLogEntry::Mode mode_; 53 std::deque<ServerLogEntry> pending_entries_;
|
D | log_to_server.cc | 18 LogToServer::LogToServer(ServerLogEntry::Mode mode, in LogToServer() 47 void LogToServer::Log(const ServerLogEntry& entry) { in Log() 60 scoped_ptr<XmlElement> stanza(ServerLogEntry::MakeStanza()); in SendPendingEntries() 62 ServerLogEntry& entry = pending_entries_.front(); in SendPendingEntries()
|
D | server_log_entry.h | 22 class ServerLogEntry { 30 ServerLogEntry(); 31 ~ServerLogEntry();
|
D | log_to_server_unittest.cc | 46 new LogToServer(ServerLogEntry::ME2ME, &signal_strategy_, kTestBotJid)); in SetUp() 72 ServerLogEntry entry1; in TEST_F() 73 ServerLogEntry entry2; in TEST_F() 87 ServerLogEntry entry; in TEST_F()
|
/external/chromium_org/remoting/client/ |
D | server_log_entry_client.cc | 95 scoped_ptr<ServerLogEntry> MakeLogEntryForSessionStateChange( in MakeLogEntryForSessionStateChange() 98 scoped_ptr<ServerLogEntry> entry(new ServerLogEntry()); in MakeLogEntryForSessionStateChange() 110 scoped_ptr<ServerLogEntry> MakeLogEntryForStatistics( in MakeLogEntryForStatistics() 112 scoped_ptr<ServerLogEntry> entry(new ServerLogEntry()); in MakeLogEntryForStatistics() 132 scoped_ptr<ServerLogEntry> MakeLogEntryForSessionIdOld( in MakeLogEntryForSessionIdOld() 134 scoped_ptr<ServerLogEntry> entry(new ServerLogEntry()); in MakeLogEntryForSessionIdOld() 141 scoped_ptr<ServerLogEntry> MakeLogEntryForSessionIdNew( in MakeLogEntryForSessionIdNew() 143 scoped_ptr<ServerLogEntry> entry(new ServerLogEntry()); in MakeLogEntryForSessionIdNew() 150 void AddClientFieldsToLogEntry(ServerLogEntry* entry) { in AddClientFieldsToLogEntry() 157 void AddSessionIdToLogEntry(ServerLogEntry* entry, const std::string& id) { in AddSessionIdToLogEntry() [all …]
|
D | server_log_entry_client.h | 15 class ServerLogEntry; variable 18 scoped_ptr<ServerLogEntry> MakeLogEntryForSessionStateChange( 23 scoped_ptr<ServerLogEntry> MakeLogEntryForStatistics( 27 scoped_ptr<ServerLogEntry> MakeLogEntryForSessionIdOld( 31 scoped_ptr<ServerLogEntry> MakeLogEntryForSessionIdNew( 34 void AddClientFieldsToLogEntry(ServerLogEntry* entry); 35 void AddSessionIdToLogEntry(ServerLogEntry* entry, const std::string& id); 36 void AddSessionDurationToLogEntry(ServerLogEntry* entry,
|
D | server_log_entry_client_unittest.cc | 23 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForSessionStateChange( in TEST() 37 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForSessionStateChange( in TEST() 53 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForStatistics(&statistics)); in TEST() 71 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForSessionIdOld("abc")); in TEST() 91 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForSessionStateChange( in TEST() 110 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForSessionStateChange( in TEST()
|
D | client_status_logger.cc | 45 ClientStatusLogger::ClientStatusLogger(ServerLogEntry::Mode mode, in ClientStatusLogger() 59 scoped_ptr<ServerLogEntry> entry( in LogSessionStateChange() 98 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForStatistics(statistics)); in LogStatistics() 126 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForSessionIdOld(session_id_)); in MaybeExpireSessionId()
|
D | client_status_logger.h | 23 ClientStatusLogger(ServerLogEntry::Mode mode,
|
D | client_status_logger_unittest.cc | 73 new ClientStatusLogger(ServerLogEntry::ME2ME, in SetUp()
|
/external/chromium_org/remoting/host/ |
D | server_log_entry_host.cc | 45 scoped_ptr<ServerLogEntry> MakeLogEntryForSessionStateChange( in MakeLogEntryForSessionStateChange() 47 scoped_ptr<ServerLogEntry> entry(new ServerLogEntry()); in MakeLogEntryForSessionStateChange() 54 scoped_ptr<ServerLogEntry> MakeLogEntryForHeartbeat() { in MakeLogEntryForHeartbeat() 55 scoped_ptr<ServerLogEntry> entry(new ServerLogEntry()); in MakeLogEntryForHeartbeat() 62 scoped_ptr<ServerLogEntry> MakeLogEntryForHostStatus( in MakeLogEntryForHostStatus() 64 scoped_ptr<ServerLogEntry> entry(new ServerLogEntry()); in MakeLogEntryForHostStatus() 73 void AddHostFieldsToLogEntry(ServerLogEntry* entry) { in AddHostFieldsToLogEntry() 102 void AddConnectionTypeToLogEntry(ServerLogEntry* entry, in AddConnectionTypeToLogEntry()
|
D | server_log_entry_host.h | 14 class ServerLogEntry; variable 18 scoped_ptr<ServerLogEntry> MakeLogEntryForSessionStateChange( 22 scoped_ptr<ServerLogEntry> MakeLogEntryForHeartbeat(); 25 scoped_ptr<ServerLogEntry> MakeLogEntryForHostStatus( 29 void AddHostFieldsToLogEntry(ServerLogEntry* entry); 32 void AddConnectionTypeToLogEntry(ServerLogEntry* entry,
|
D | server_log_entry_host_unittest.cc | 19 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForSessionStateChange(true)); in TEST() 32 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForHeartbeat()); in TEST() 44 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForSessionStateChange(true)); in TEST() 72 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForSessionStateChange(true)); in TEST() 73 entry->AddModeField(ServerLogEntry::IT2ME); in TEST() 87 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForSessionStateChange(true)); in TEST() 88 entry->AddModeField(ServerLogEntry::ME2ME); in TEST()
|
D | host_status_logger.cc | 18 ServerLogEntry::Mode mode, in HostStatusLogger() 35 scoped_ptr<ServerLogEntry> entry( in LogSessionStateChange()
|
D | host_status_sender.cc | 125 scoped_ptr<XmlElement> log(ServerLogEntry::MakeStanza()); in CreateHostStatusMessage() 126 scoped_ptr<ServerLogEntry> log_entry( in CreateHostStatusMessage()
|
D | host_status_logger.h | 27 ServerLogEntry::Mode mode,
|
D | heartbeat_sender.cc | 258 scoped_ptr<XmlElement> log(ServerLogEntry::MakeStanza()); in CreateHeartbeatMessage() 259 scoped_ptr<ServerLogEntry> log_entry(MakeLogEntryForHeartbeat()); in CreateHeartbeatMessage()
|
D | host_status_logger_unittest.cc | 133 ServerLogEntry::ME2ME, in SetUp()
|
D | remoting_me2me_host.cc | 1326 new HostStatusLogger(host_->AsWeakPtr(), ServerLogEntry::ME2ME, in StartHost()
|
/external/chromium_org/remoting/host/it2me/ |
D | it2me_host.cc | 210 new HostStatusLogger(host_->AsWeakPtr(), ServerLogEntry::IT2ME, in FinishConnect()
|
/external/chromium_org/remoting/client/jni/ |
D | chromoting_jni_instance.cc | 413 new ClientStatusLogger(ServerLogEntry::ME2ME, in ConnectToHostOnNetworkThread()
|