Home | History | Annotate | Download | only in cast_channel

Lines Matching refs:proto

47   void LogSocketEvent(int channel_id, proto::EventType event_type);
49 proto::EventType event_type,
54 proto::EventType event_type,
58 void LogSocketReadyState(int channel_id, proto::ReadyState new_state);
59 void LogSocketConnectState(int channel_id, proto::ConnectionState new_state);
60 void LogSocketReadState(int channel_id, proto::ReadState new_state);
61 void LogSocketWriteState(int channel_id, proto::WriteState new_state);
62 void LogSocketErrorState(int channel_id, proto::ErrorState new_state);
69 proto::EventType event_type,
73 // Assembles logs collected so far and return it as a serialized Log proto,
97 // Partially constructed AggregatedSocketEvent proto populated by Logger.
100 proto::AggregatedSocketEvent aggregated_socket_event;
101 // Events to be assigned to the AggregatedSocketEvent proto. Contains the
104 std::deque<proto::SocketEvent> socket_events;
113 // Returns a SocketEvent proto with common fields (EventType, timestamp)
115 proto::SocketEvent CreateEvent(proto::EventType event_type);
120 // Returns a reference to the AggregatedSocketEvent proto created/modified.
121 proto::AggregatedSocketEvent& LogSocketEvent(
123 const proto::SocketEvent& socket_event);
129 // Log proto holding global statistics.
130 proto::Log log_;