OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ServerLogEntry
(Results
1 - 20
of
20
) 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
...]
log_to_server.h
41
ServerLogEntry
::Mode mode,
65
void Log(const
ServerLogEntry
& entry);
69
ServerLogEntry
::Mode mode_;
78
std::deque<
ServerLogEntry
> pending_entries_;
log_to_server.cc
25
ServerLogEntry
::Mode mode,
46
scoped_ptr<
ServerLogEntry
> entry(
95
void LogToServer::Log(const
ServerLogEntry
& entry) {
108
scoped_ptr<XmlElement> stanza(
ServerLogEntry
::MakeStanza());
110
ServerLogEntry
& entry = pending_entries_.front();
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_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());
log_to_server_unittest.cc
132
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,
log_to_server.h
40
LogToServer(
ServerLogEntry
::Mode mode,
57
void Log(const
ServerLogEntry
& entry);
66
ServerLogEntry
::Mode mode_;
71
std::deque<
ServerLogEntry
> pending_entries_;
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
...]
log_to_server.cc
54
LogToServer::LogToServer(
ServerLogEntry
::Mode mode,
72
scoped_ptr<
ServerLogEntry
> entry(
111
scoped_ptr<
ServerLogEntry
> entry(MakeLogEntryForStatistics(statistics));
134
void LogToServer::Log(const
ServerLogEntry
& entry) {
147
scoped_ptr<XmlElement> stanza(
ServerLogEntry
::MakeStanza());
149
ServerLogEntry
& entry = pending_entries_.front();
178
scoped_ptr<
ServerLogEntry
> entry(MakeLogEntryForSessionIdOld(session_id_));
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(
/external/chromium_org/remoting/jingle_glue/
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
...]
server_log_entry.h
22
class
ServerLogEntry
{
30
ServerLogEntry
();
31
~
ServerLogEntry
();
/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
382
log_to_server_.reset(new client::LogToServer(
ServerLogEntry
::ME2ME,
/external/chromium_org/remoting/host/it2me/
it2me_host.cc
209
new LogToServer(host_->AsWeakPtr(),
ServerLogEntry
::IT2ME,
Completed in 4331 milliseconds