Searched refs:ServerLogEntry (Results 1 - 12 of 12) sorted by relevance
/external/chromium_org/remoting/webapp/ |
H A D | server_log_entry.js | 19 remoting.ServerLogEntry = function() { 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 [all...] |
H A D | log_to_server.js | 65 var entry = remoting.ServerLogEntry.makeClientSessionStateChange( 161 var entry = remoting.ServerLogEntry.makeStats(this.statsAccumulator, mode); 176 * @param {remoting.ServerLogEntry} entry 232 var entry = remoting.ServerLogEntry.makeSessionIdOld(this.sessionId, mode); 237 entry = remoting.ServerLogEntry.makeSessionIdNew(this.sessionId, mode);
|
/external/chromium_org/remoting/host/ |
H A D | server_log_entry.cc | 59 ServerLogEntry::ServerLogEntry() { function in class:remoting::ServerLogEntry 62 ServerLogEntry::~ServerLogEntry() { 66 scoped_ptr<buzz::XmlElement> ServerLogEntry::MakeStanza() { 72 scoped_ptr<ServerLogEntry> ServerLogEntry::MakeForSessionStateChange( 74 scoped_ptr<ServerLogEntry> entry(new ServerLogEntry()); 82 scoped_ptr<ServerLogEntry> ServerLogEntr [all...] |
H A D | server_log_entry.h | 22 class ServerLogEntry { class in namespace:remoting 37 static scoped_ptr<ServerLogEntry> MakeForSessionStateChange(bool connection); 40 static scoped_ptr<ServerLogEntry> MakeForHeartbeat(); 43 static scoped_ptr<ServerLogEntry> MakeForHostStatus( 46 ~ServerLogEntry(); 63 ServerLogEntry();
|
H A D | log_to_server.h | 41 ServerLogEntry::Mode mode, 65 void Log(const ServerLogEntry& entry); 69 ServerLogEntry::Mode mode_; 78 std::deque<ServerLogEntry> pending_entries_;
|
H A D | log_to_server.cc | 24 ServerLogEntry::Mode mode, 45 scoped_ptr<ServerLogEntry> entry( 46 ServerLogEntry::MakeForSessionStateChange(connected)); 94 void LogToServer::Log(const ServerLogEntry& entry) { 107 scoped_ptr<XmlElement> stanza(ServerLogEntry::MakeStanza()); 109 ServerLogEntry& entry = pending_entries_.front();
|
H A D | server_log_entry_unittest.cc | 65 scoped_ptr<ServerLogEntry> entry( 66 ServerLogEntry::MakeForSessionStateChange(true)); 79 scoped_ptr<ServerLogEntry> entry(ServerLogEntry::MakeForHeartbeat()); 91 scoped_ptr<ServerLogEntry> entry( 92 ServerLogEntry::MakeForSessionStateChange(true)); 120 scoped_ptr<ServerLogEntry> entry( 121 ServerLogEntry::MakeForSessionStateChange(true)); 122 entry->AddModeField(ServerLogEntry::IT2ME); 136 scoped_ptr<ServerLogEntry> entr [all...] |
H A D | host_status_sender.cc | 124 scoped_ptr<XmlElement> log(ServerLogEntry::MakeStanza()); 125 scoped_ptr<ServerLogEntry> log_entry( 126 ServerLogEntry::MakeForHostStatus(status, exit_code));
|
H A D | heartbeat_sender.cc | 257 scoped_ptr<XmlElement> log(ServerLogEntry::MakeStanza()); 258 scoped_ptr<ServerLogEntry> log_entry(ServerLogEntry::MakeForHeartbeat());
|
H A D | log_to_server_unittest.cc | 132 ServerLogEntry::ME2ME,
|
H A D | remoting_me2me_host.cc | 1026 new LogToServer(host_->AsWeakPtr(), ServerLogEntry::ME2ME,
|
/external/chromium_org/remoting/host/it2me/ |
H A D | it2me_host.cc | 208 new LogToServer(host_->AsWeakPtr(), ServerLogEntry::IT2ME,
|
Completed in 999 milliseconds