Home
last modified time | relevance | path

Searched refs:ServerLogEntry (Results 1 – 24 of 24) sorted by relevance

/external/chromium_org/remoting/webapp/
Dserver_log_entry.js19 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 …]
Dlog_to_server.js65 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/
Dserver_log_entry.cc35 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()
Dlog_to_server.h30 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_;
Dlog_to_server.cc18 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()
Dserver_log_entry.h22 class ServerLogEntry {
30 ServerLogEntry();
31 ~ServerLogEntry();
Dlog_to_server_unittest.cc46 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/
Dserver_log_entry_client.cc95 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 …]
Dserver_log_entry_client.h15 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,
Dserver_log_entry_client_unittest.cc23 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()
Dclient_status_logger.cc45 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()
Dclient_status_logger.h23 ClientStatusLogger(ServerLogEntry::Mode mode,
Dclient_status_logger_unittest.cc73 new ClientStatusLogger(ServerLogEntry::ME2ME, in SetUp()
/external/chromium_org/remoting/host/
Dserver_log_entry_host.cc45 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()
Dserver_log_entry_host.h14 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,
Dserver_log_entry_host_unittest.cc19 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()
Dhost_status_logger.cc18 ServerLogEntry::Mode mode, in HostStatusLogger()
35 scoped_ptr<ServerLogEntry> entry( in LogSessionStateChange()
Dhost_status_sender.cc125 scoped_ptr<XmlElement> log(ServerLogEntry::MakeStanza()); in CreateHostStatusMessage()
126 scoped_ptr<ServerLogEntry> log_entry( in CreateHostStatusMessage()
Dhost_status_logger.h27 ServerLogEntry::Mode mode,
Dheartbeat_sender.cc258 scoped_ptr<XmlElement> log(ServerLogEntry::MakeStanza()); in CreateHeartbeatMessage()
259 scoped_ptr<ServerLogEntry> log_entry(MakeLogEntryForHeartbeat()); in CreateHeartbeatMessage()
Dhost_status_logger_unittest.cc133 ServerLogEntry::ME2ME, in SetUp()
Dremoting_me2me_host.cc1326 new HostStatusLogger(host_->AsWeakPtr(), ServerLogEntry::ME2ME, in StartHost()
/external/chromium_org/remoting/host/it2me/
Dit2me_host.cc210 new HostStatusLogger(host_->AsWeakPtr(), ServerLogEntry::IT2ME, in FinishConnect()
/external/chromium_org/remoting/client/jni/
Dchromoting_jni_instance.cc413 new ClientStatusLogger(ServerLogEntry::ME2ME, in ConnectToHostOnNetworkThread()