OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ServerLogEntry
(Results
1 - 24
of
24
) sorted by null
/external/chromium_org/remoting/host/
server_log_entry_host.h
14
class
ServerLogEntry
;
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,
server_log_entry_host.cc
45
scoped_ptr<
ServerLogEntry
> MakeLogEntryForSessionStateChange(
47
scoped_ptr<
ServerLogEntry
> entry(new
ServerLogEntry
());
54
scoped_ptr<
ServerLogEntry
> MakeLogEntryForHeartbeat() {
55
scoped_ptr<
ServerLogEntry
> entry(new
ServerLogEntry
());
62
scoped_ptr<
ServerLogEntry
> MakeLogEntryForHostStatus(
64
scoped_ptr<
ServerLogEntry
> entry(new
ServerLogEntry
());
73
void AddHostFieldsToLogEntry(
ServerLogEntry
* entry)
[
all
...]
server_log_entry_host_unittest.cc
19
scoped_ptr<
ServerLogEntry
> entry(MakeLogEntryForSessionStateChange(true));
32
scoped_ptr<
ServerLogEntry
> entry(MakeLogEntryForHeartbeat());
44
scoped_ptr<
ServerLogEntry
> entry(MakeLogEntryForSessionStateChange(true));
72
scoped_ptr<
ServerLogEntry
> entry(MakeLogEntryForSessionStateChange(true));
73
entry->AddModeField(
ServerLogEntry
::IT2ME);
87
scoped_ptr<
ServerLogEntry
> entry(MakeLogEntryForSessionStateChange(true));
88
entry->AddModeField(
ServerLogEntry
::ME2ME);
host_status_logger.cc
18
ServerLogEntry
::Mode mode,
35
scoped_ptr<
ServerLogEntry
> entry(
host_status_logger.h
27
ServerLogEntry
::Mode mode,
host_status_sender.cc
125
scoped_ptr<XmlElement> log(
ServerLogEntry
::MakeStanza());
126
scoped_ptr<
ServerLogEntry
> log_entry(
heartbeat_sender.cc
258
scoped_ptr<XmlElement> log(
ServerLogEntry
::MakeStanza());
259
scoped_ptr<
ServerLogEntry
> log_entry(MakeLogEntryForHeartbeat());
host_status_logger_unittest.cc
133
ServerLogEntry
::ME2ME,
remoting_me2me_host.cc
[
all
...]
/external/chromium_org/remoting/client/
server_log_entry_client.h
15
class
ServerLogEntry
;
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,
server_log_entry_client.cc
95
scoped_ptr<
ServerLogEntry
> MakeLogEntryForSessionStateChange(
98
scoped_ptr<
ServerLogEntry
> entry(new
ServerLogEntry
());
110
scoped_ptr<
ServerLogEntry
> MakeLogEntryForStatistics(
112
scoped_ptr<
ServerLogEntry
> entry(new
ServerLogEntry
());
132
scoped_ptr<
ServerLogEntry
> MakeLogEntryForSessionIdOld(
134
scoped_ptr<
ServerLogEntry
> entry(new
ServerLogEntry
());
141
scoped_ptr<
ServerLogEntry
> MakeLogEntryForSessionIdNew
[
all
...]
server_log_entry_client_unittest.cc
23
scoped_ptr<
ServerLogEntry
> entry(MakeLogEntryForSessionStateChange(
37
scoped_ptr<
ServerLogEntry
> entry(MakeLogEntryForSessionStateChange(
53
scoped_ptr<
ServerLogEntry
> entry(MakeLogEntryForStatistics(&statistics));
71
scoped_ptr<
ServerLogEntry
> entry(MakeLogEntryForSessionIdOld("abc"));
91
scoped_ptr<
ServerLogEntry
> entry(MakeLogEntryForSessionStateChange(
110
scoped_ptr<
ServerLogEntry
> entry(MakeLogEntryForSessionStateChange(
client_status_logger.cc
45
ClientStatusLogger::ClientStatusLogger(
ServerLogEntry
::Mode mode,
59
scoped_ptr<
ServerLogEntry
> entry(
98
scoped_ptr<
ServerLogEntry
> entry(MakeLogEntryForStatistics(statistics));
126
scoped_ptr<
ServerLogEntry
> entry(MakeLogEntryForSessionIdOld(session_id_));
client_status_logger.h
23
ClientStatusLogger(
ServerLogEntry
::Mode mode,
client_status_logger_unittest.cc
73
new ClientStatusLogger(
ServerLogEntry
::ME2ME,
/external/chromium_org/remoting/signaling/
server_log_entry.cc
35
ServerLogEntry
::
ServerLogEntry
() {
38
ServerLogEntry
::~
ServerLogEntry
() {
41
void
ServerLogEntry
::Set(const std::string& key, const std::string& value) {
45
void
ServerLogEntry
::AddCpuField() {
49
void
ServerLogEntry
::AddModeField(
ServerLogEntry
::Mode mode) {
64
void
ServerLogEntry
::AddRoleField(const char* role) {
68
void
ServerLogEntry
::AddEventNameField(const char* name)
[
all
...]
log_to_server.h
30
LogToServer(
ServerLogEntry
::Mode mode,
41
void Log(const
ServerLogEntry
& entry);
43
ServerLogEntry
::Mode mode() { return mode_; }
48
ServerLogEntry
::Mode mode_;
53
std::deque<
ServerLogEntry
> pending_entries_;
server_log_entry.h
22
class
ServerLogEntry
{
30
ServerLogEntry
();
31
~
ServerLogEntry
();
log_to_server.cc
18
LogToServer::LogToServer(
ServerLogEntry
::Mode mode,
47
void LogToServer::Log(const
ServerLogEntry
& entry) {
60
scoped_ptr<XmlElement> stanza(
ServerLogEntry
::MakeStanza());
62
ServerLogEntry
& entry = pending_entries_.front();
log_to_server_unittest.cc
46
new LogToServer(
ServerLogEntry
::ME2ME, &signal_strategy_, kTestBotJid));
72
ServerLogEntry
entry1;
73
ServerLogEntry
entry2;
87
ServerLogEntry
entry;
/external/chromium_org/remoting/webapp/
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
.getValueForError
[
all
...]
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/client/jni/
chromoting_jni_instance.cc
413
new ClientStatusLogger(
ServerLogEntry
::ME2ME,
/external/chromium_org/remoting/host/it2me/
it2me_host.cc
210
new HostStatusLogger(host_->AsWeakPtr(),
ServerLogEntry
::IT2ME,
Completed in 1800 milliseconds