DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
daphne::StreamInfo Class Referencefinal

#include <daphne_control_high.pb.h>

Inheritance diagram for daphne::StreamInfo:
[legend]
Collaboration diagram for daphne::StreamInfo:
[legend]

Classes

class  _Internal
 
struct  Impl_
 

Public Types

enum  : int { kTotalPacketsFieldNumber = 1 , kNewPacketsFieldNumber = 2 , kTotalDroppedPacketsFieldNumber = 3 , kNewDroppedPacketsFieldNumber = 4 }
 

Public Member Functions

 StreamInfo ()
 
 ~StreamInfo () override
 
template<typename = void>
PROTOBUF_CONSTEXPR StreamInfo (::google::protobuf::internal::ConstantInitialized)
 
 StreamInfo (const StreamInfo &from)
 
 StreamInfo (StreamInfo &&from) noexcept
 
StreamInfooperator= (const StreamInfo &from)
 
StreamInfooperator= (StreamInfo &&from) noexcept
 
const ::google::protobuf::UnknownFieldSet & unknown_fields () const
 
inline ::google::protobuf::UnknownFieldSet * mutable_unknown_fields ()
 
void Swap (StreamInfo *other)
 
void UnsafeArenaSwap (StreamInfo *other)
 
StreamInfoNew (::google::protobuf::Arena *arena=nullptr) const final
 
void CopyFrom (const StreamInfo &from)
 
void MergeFrom (const StreamInfo &from)
 
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear () final
 
bool IsInitialized () const final
 
::size_t ByteSizeLong () const final
 
const char * _InternalParse (const char *ptr, ::google::protobuf::internal::ParseContext *ctx) final
 
::uint8_t * _InternalSerialize (::uint8_t *target, ::google::protobuf::io::EpsCopyOutputStream *stream) const final
 
int GetCachedSize () const final
 
const ::google::protobuf::Message::ClassData * GetClassData () const final
 
::google::protobuf::Metadata GetMetadata () const final
 
void clear_total_packets ()
 
::uint64_t total_packets () const
 
void set_total_packets (::uint64_t value)
 
void clear_new_packets ()
 
::uint64_t new_packets () const
 
void set_new_packets (::uint64_t value)
 
void clear_total_dropped_packets ()
 
::uint64_t total_dropped_packets () const
 
void set_total_dropped_packets (::uint64_t value)
 
void clear_new_dropped_packets ()
 
::uint64_t new_dropped_packets () const
 
void set_new_dropped_packets (::uint64_t value)
 
template<typename >
PROTOBUF_CONSTEXPR StreamInfo (::_pbi::ConstantInitialized)
 
template<typename >
PROTOBUF_CONSTEXPR StreamInfo (::_pbi::ConstantInitialized)
 

Static Public Member Functions

static const ::google::protobuf::Descriptor * descriptor ()
 
static const ::google::protobuf::Descriptor * GetDescriptor ()
 
static const ::google::protobuf::Reflection * GetReflection ()
 
static const StreamInfodefault_instance ()
 
static const StreamInfointernal_default_instance ()
 

Static Public Attributes

static constexpr int kIndexInFileMessages
 
static const ClassData _class_data_
 

Protected Member Functions

 StreamInfo (::google::protobuf::Arena *arena)
 

Private Types

typedef void InternalArenaConstructable_
 
typedef void DestructorSkippable_
 

Private Member Functions

void SharedCtor (::google::protobuf::Arena *arena)
 
void SharedDtor ()
 
void SetCachedSize (int size) const final
 
void InternalSwap (StreamInfo *other)
 
::uint64_t _internal_total_packets () const
 
void _internal_set_total_packets (::uint64_t value)
 
::uint64_t _internal_new_packets () const
 
void _internal_set_new_packets (::uint64_t value)
 
::uint64_t _internal_total_dropped_packets () const
 
void _internal_set_total_dropped_packets (::uint64_t value)
 
::uint64_t _internal_new_dropped_packets () const
 
void _internal_set_new_dropped_packets (::uint64_t value)
 

Static Private Member Functions

static void MergeImpl (::google::protobuf::Message &to_msg, const ::google::protobuf::Message &from_msg)
 
::absl::string_view FullMessageName ()
 

Private Attributes

union { 
 
   Impl_   _impl_ 
 
};  
 

Static Private Attributes

static const ::google::protobuf::internal::TcParseTable< 2, 4, 0, 0, 2 > _table_
 

Friends

class ::google::protobuf::internal::AnyMetadata
 
class ::google::protobuf::internal::TcParser
 
template<typename T >
class ::google::protobuf::Arena::InternalHelper
 
struct ::TableStruct_daphnemodules_2fdaphne_5fcontrol_5fhigh_2eproto
 
void swap (StreamInfo &a, StreamInfo &b)
 

Detailed Description

Definition at line 3647 of file daphne_control_high.pb.h.

Member Typedef Documentation

◆ DestructorSkippable_

◆ InternalArenaConstructable_

Member Enumeration Documentation

◆ anonymous enum

anonymous enum : int
Enumerator
kTotalPacketsFieldNumber 
kNewPacketsFieldNumber 
kTotalDroppedPacketsFieldNumber 
kNewDroppedPacketsFieldNumber 

Definition at line 3774 of file daphne_control_high.pb.h.

Constructor & Destructor Documentation

◆ StreamInfo() [1/7]

daphne::StreamInfo::StreamInfo ( )
inline

Definition at line 3650 of file daphne_control_high.pb.h.

◆ ~StreamInfo()

daphne::StreamInfo::~StreamInfo ( )
override

Definition at line 5761 of file daphne_control_high.pb.cc.

5761 {
5762 // @@protoc_insertion_point(destructor:daphne.StreamInfo)
5763 _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>();
5764 SharedDtor();
5765}

◆ StreamInfo() [2/7]

template<typename = void>
PROTOBUF_CONSTEXPR daphne::StreamInfo::StreamInfo ( ::google::protobuf::internal::ConstantInitialized )
explicit

◆ StreamInfo() [3/7]

daphne::StreamInfo::StreamInfo ( const StreamInfo & from)

Definition at line 5745 of file daphne_control_high.pb.cc.

5746 : ::google::protobuf::Message(), _impl_(from._impl_) {
5747 _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(
5748 from._internal_metadata_);
5749 // @@protoc_insertion_point(copy_constructor:daphne.StreamInfo)
5750}

◆ StreamInfo() [4/7]

daphne::StreamInfo::StreamInfo ( StreamInfo && from)
inlinenoexcept

Definition at line 3656 of file daphne_control_high.pb.h.

3657 : StreamInfo() {
3658 *this = ::std::move(from);
3659 }

◆ StreamInfo() [5/7]

daphne::StreamInfo::StreamInfo ( ::google::protobuf::Arena * arena)
explicitprotected

Definition at line 5740 of file daphne_control_high.pb.cc.

5741 : ::google::protobuf::Message(arena) {
5742 SharedCtor(arena);
5743 // @@protoc_insertion_point(arena_constructor:daphne.StreamInfo)
5744}
void SharedCtor(::google::protobuf::Arena *arena)

◆ StreamInfo() [6/7]

template<typename >
PROTOBUF_CONSTEXPR daphne::StreamInfo::StreamInfo ( ::_pbi::ConstantInitialized )

Definition at line 364 of file daphne_control_high.pb.cc.

365 : _impl_{
366 /*decltype(_impl_.total_packets_)*/ ::uint64_t{0u},
367 /*decltype(_impl_.new_packets_)*/ ::uint64_t{0u},
368 /*decltype(_impl_.total_dropped_packets_)*/ ::uint64_t{0u},
369 /*decltype(_impl_.new_dropped_packets_)*/ ::uint64_t{0u},
370 /*decltype(_impl_._cached_size_)*/ {},
371 } {}

◆ StreamInfo() [7/7]

template<typename >
PROTOBUF_CONSTEXPR daphne::StreamInfo::StreamInfo ( ::_pbi::ConstantInitialized )

Definition at line 51 of file DaphneControllerModule.pb.cc.

52 : _impl_{
53 /*decltype(_impl_.total_packets_)*/ ::uint64_t{0u},
54 /*decltype(_impl_.new_packets_)*/ ::uint64_t{0u},
55 /*decltype(_impl_.total_dropped_packets_)*/ ::uint64_t{0u},
56 /*decltype(_impl_.new_dropped_packets_)*/ ::uint64_t{0u},
57 /*decltype(_impl_._cached_size_)*/ {},
58 } {}

Member Function Documentation

◆ _internal_new_dropped_packets()

uint64_t daphne::StreamInfo::_internal_new_dropped_packets ( ) const
inlineprivate

Definition at line 8678 of file daphne_control_high.pb.h.

8678 {
8679 PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
8681}

◆ _internal_new_packets()

uint64_t daphne::StreamInfo::_internal_new_packets ( ) const
inlineprivate

Definition at line 8634 of file daphne_control_high.pb.h.

8634 {
8635 PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
8636 return _impl_.new_packets_;
8637}

◆ _internal_set_new_dropped_packets()

void daphne::StreamInfo::_internal_set_new_dropped_packets ( ::uint64_t value)
inlineprivate

Definition at line 8682 of file daphne_control_high.pb.h.

8682 {
8683 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
8684 ;
8686}

◆ _internal_set_new_packets()

void daphne::StreamInfo::_internal_set_new_packets ( ::uint64_t value)
inlineprivate

Definition at line 8638 of file daphne_control_high.pb.h.

8638 {
8639 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
8640 ;
8641 _impl_.new_packets_ = value;
8642}

◆ _internal_set_total_dropped_packets()

void daphne::StreamInfo::_internal_set_total_dropped_packets ( ::uint64_t value)
inlineprivate

Definition at line 8660 of file daphne_control_high.pb.h.

8660 {
8661 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
8662 ;
8664}

◆ _internal_set_total_packets()

void daphne::StreamInfo::_internal_set_total_packets ( ::uint64_t value)
inlineprivate

Definition at line 8616 of file daphne_control_high.pb.h.

8616 {
8617 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
8618 ;
8619 _impl_.total_packets_ = value;
8620}

◆ _internal_total_dropped_packets()

uint64_t daphne::StreamInfo::_internal_total_dropped_packets ( ) const
inlineprivate

Definition at line 8656 of file daphne_control_high.pb.h.

8656 {
8657 PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
8659}

◆ _internal_total_packets()

uint64_t daphne::StreamInfo::_internal_total_packets ( ) const
inlineprivate

Definition at line 8612 of file daphne_control_high.pb.h.

8612 {
8613 PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
8614 return _impl_.total_packets_;
8615}

◆ _InternalParse()

const char * daphne::StreamInfo::_InternalParse ( const char * ptr,
::google::protobuf::internal::ParseContext * ctx )
final

◆ _InternalSerialize()

uint8_t * daphne::StreamInfo::_InternalSerialize ( ::uint8_t * target,
::google::protobuf::io::EpsCopyOutputStream * stream ) const
final

Definition at line 5840 of file daphne_control_high.pb.cc.

5842 {
5843 // @@protoc_insertion_point(serialize_to_array_start:daphne.StreamInfo)
5844 ::uint32_t cached_has_bits = 0;
5845 (void)cached_has_bits;
5846
5847 // uint64 total_packets = 1;
5848 if (this->_internal_total_packets() != 0) {
5849 target = stream->EnsureSpace(target);
5850 target = ::_pbi::WireFormatLite::WriteUInt64ToArray(
5851 1, this->_internal_total_packets(), target);
5852 }
5853
5854 // uint64 new_packets = 2;
5855 if (this->_internal_new_packets() != 0) {
5856 target = stream->EnsureSpace(target);
5857 target = ::_pbi::WireFormatLite::WriteUInt64ToArray(
5858 2, this->_internal_new_packets(), target);
5859 }
5860
5861 // uint64 total_dropped_packets = 3;
5862 if (this->_internal_total_dropped_packets() != 0) {
5863 target = stream->EnsureSpace(target);
5864 target = ::_pbi::WireFormatLite::WriteUInt64ToArray(
5865 3, this->_internal_total_dropped_packets(), target);
5866 }
5867
5868 // uint64 new_dropped_packets = 4;
5869 if (this->_internal_new_dropped_packets() != 0) {
5870 target = stream->EnsureSpace(target);
5871 target = ::_pbi::WireFormatLite::WriteUInt64ToArray(
5872 4, this->_internal_new_dropped_packets(), target);
5873 }
5874
5875 if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) {
5876 target =
5877 ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray(
5878 _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream);
5879 }
5880 // @@protoc_insertion_point(serialize_to_array_end:daphne.StreamInfo)
5881 return target;
5882}
::uint64_t _internal_total_dropped_packets() const
::uint64_t _internal_total_packets() const
::uint64_t _internal_new_dropped_packets() const
::uint64_t _internal_new_packets() const

◆ ByteSizeLong()

size_t daphne::StreamInfo::ByteSizeLong ( ) const
final

Definition at line 5884 of file daphne_control_high.pb.cc.

5884 {
5885// @@protoc_insertion_point(message_byte_size_start:daphne.StreamInfo)
5886 ::size_t total_size = 0;
5887
5888 ::uint32_t cached_has_bits = 0;
5889 // Prevent compiler warnings about cached_has_bits being unused
5890 (void) cached_has_bits;
5891
5892 // uint64 total_packets = 1;
5893 if (this->_internal_total_packets() != 0) {
5894 total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(
5895 this->_internal_total_packets());
5896 }
5897
5898 // uint64 new_packets = 2;
5899 if (this->_internal_new_packets() != 0) {
5900 total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(
5901 this->_internal_new_packets());
5902 }
5903
5904 // uint64 total_dropped_packets = 3;
5905 if (this->_internal_total_dropped_packets() != 0) {
5906 total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(
5908 }
5909
5910 // uint64 new_dropped_packets = 4;
5911 if (this->_internal_new_dropped_packets() != 0) {
5912 total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(
5914 }
5915
5916 return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_);
5917}
mutable::google::protobuf::internal::CachedSize _cached_size_

◆ Clear()

PROTOBUF_NOINLINE void daphne::StreamInfo::Clear ( )
final

Definition at line 5773 of file daphne_control_high.pb.cc.

5773 {
5774// @@protoc_insertion_point(message_clear_start:daphne.StreamInfo)
5775 ::uint32_t cached_has_bits = 0;
5776 // Prevent compiler warnings about cached_has_bits being unused
5777 (void) cached_has_bits;
5778
5779 ::memset(&_impl_.total_packets_, 0, static_cast<::size_t>(
5780 reinterpret_cast<char*>(&_impl_.new_dropped_packets_) -
5781 reinterpret_cast<char*>(&_impl_.total_packets_)) + sizeof(_impl_.new_dropped_packets_));
5782 _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>();
5783}

◆ clear_new_dropped_packets()

void daphne::StreamInfo::clear_new_dropped_packets ( )
inline

Definition at line 8667 of file daphne_control_high.pb.h.

8667 {
8668 _impl_.new_dropped_packets_ = ::uint64_t{0u};
8669}

◆ clear_new_packets()

void daphne::StreamInfo::clear_new_packets ( )
inline

Definition at line 8623 of file daphne_control_high.pb.h.

8623 {
8624 _impl_.new_packets_ = ::uint64_t{0u};
8625}

◆ clear_total_dropped_packets()

void daphne::StreamInfo::clear_total_dropped_packets ( )
inline

Definition at line 8645 of file daphne_control_high.pb.h.

8645 {
8646 _impl_.total_dropped_packets_ = ::uint64_t{0u};
8647}

◆ clear_total_packets()

void daphne::StreamInfo::clear_total_packets ( )
inline

Definition at line 8601 of file daphne_control_high.pb.h.

8601 {
8602 _impl_.total_packets_ = ::uint64_t{0u};
8603}

◆ CopyFrom()

void daphne::StreamInfo::CopyFrom ( const StreamInfo & from)

Definition at line 5949 of file daphne_control_high.pb.cc.

5949 {
5950// @@protoc_insertion_point(class_specific_copy_from_start:daphne.StreamInfo)
5951 if (&from == this) return;
5952 Clear();
5953 MergeFrom(from);
5954}
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final
void MergeFrom(const StreamInfo &from)

◆ default_instance()

static const StreamInfo & daphne::StreamInfo::default_instance ( )
inlinestatic

Definition at line 3695 of file daphne_control_high.pb.h.

3695 {
3696 return *internal_default_instance();
3697 }
static const StreamInfo * internal_default_instance()

◆ descriptor()

static const ::google::protobuf::Descriptor * daphne::StreamInfo::descriptor ( )
inlinestatic

Definition at line 3686 of file daphne_control_high.pb.h.

3686 {
3687 return GetDescriptor();
3688 }
static const ::google::protobuf::Descriptor * GetDescriptor()

◆ FullMessageName()

::absl::string_view daphne::StreamInfo::FullMessageName ( )
inlinestaticprivate

Definition at line 3758 of file daphne_control_high.pb.h.

3758 {
3759 return "daphne.StreamInfo";
3760 }

◆ GetCachedSize()

int daphne::StreamInfo::GetCachedSize ( ) const
inlinefinal

Definition at line 3748 of file daphne_control_high.pb.h.

3748{ return _impl_._cached_size_.Get(); }

◆ GetClassData()

const::google::protobuf::Message::ClassData * daphne::StreamInfo::GetClassData ( ) const
final

Definition at line 5923 of file daphne_control_high.pb.cc.

5923{ return &_class_data_; }
static const ClassData _class_data_

◆ GetDescriptor()

static const ::google::protobuf::Descriptor * daphne::StreamInfo::GetDescriptor ( )
inlinestatic

Definition at line 3689 of file daphne_control_high.pb.h.

3689 {
3690 return default_instance().GetMetadata().descriptor;
3691 }
static const StreamInfo & default_instance()
::google::protobuf::Metadata GetMetadata() const final

◆ GetMetadata()

google::protobuf::Metadata daphne::StreamInfo::GetMetadata ( ) const
final

Definition at line 5971 of file daphne_control_high.pb.cc.

5971 {
5972 return ::_pbi::AssignDescriptors(
5975}
::absl::once_flag descriptor_table_daphnemodules_2fdaphne_5fcontrol_5fhigh_2eproto_once
::_pb::Metadata file_level_metadata_daphnemodules_2fdaphne_5fcontrol_5fhigh_2eproto[30]
PROTOBUF_ATTRIBUTE_WEAKconst ::_pbi::DescriptorTable * descriptor_table_daphnemodules_2fdaphne_5fcontrol_5fhigh_2eproto_getter()

◆ GetReflection()

static const ::google::protobuf::Reflection * daphne::StreamInfo::GetReflection ( )
inlinestatic

Definition at line 3692 of file daphne_control_high.pb.h.

3692 {
3693 return default_instance().GetMetadata().reflection;
3694 }

◆ internal_default_instance()

static const StreamInfo * daphne::StreamInfo::internal_default_instance ( )
inlinestatic

Definition at line 3698 of file daphne_control_high.pb.h.

3698 {
3699 return reinterpret_cast<const StreamInfo*>(
3701 }
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 StreamInfoDefaultTypeInternal _StreamInfo_default_instance_

◆ InternalSwap()

void daphne::StreamInfo::InternalSwap ( StreamInfo * other)
private

Definition at line 5960 of file daphne_control_high.pb.cc.

5960 {
5961 using std::swap;
5962 _internal_metadata_.InternalSwap(&other->_internal_metadata_);
5963 ::google::protobuf::internal::memswap<
5964 PROTOBUF_FIELD_OFFSET(StreamInfo, _impl_.new_dropped_packets_)
5966 - PROTOBUF_FIELD_OFFSET(StreamInfo, _impl_.total_packets_)>(
5967 reinterpret_cast<char*>(&_impl_.total_packets_),
5968 reinterpret_cast<char*>(&other->_impl_.total_packets_));
5969}

◆ IsInitialized()

PROTOBUF_NOINLINE bool daphne::StreamInfo::IsInitialized ( ) const
final

Definition at line 5956 of file daphne_control_high.pb.cc.

5956 {
5957 return true;
5958}

◆ MergeFrom()

void daphne::StreamInfo::MergeFrom ( const StreamInfo & from)
inline

Definition at line 3735 of file daphne_control_high.pb.h.

3735 {
3736 StreamInfo::MergeImpl(*this, from);
3737 }
static void MergeImpl(::google::protobuf::Message &to_msg, const ::google::protobuf::Message &from_msg)

◆ MergeImpl()

void daphne::StreamInfo::MergeImpl ( ::google::protobuf::Message & to_msg,
const ::google::protobuf::Message & from_msg )
staticprivate

Definition at line 5926 of file daphne_control_high.pb.cc.

5926 {
5927 auto* const _this = static_cast<StreamInfo*>(&to_msg);
5928 auto& from = static_cast<const StreamInfo&>(from_msg);
5929 // @@protoc_insertion_point(class_specific_merge_from_start:daphne.StreamInfo)
5930 ABSL_DCHECK_NE(&from, _this);
5931 ::uint32_t cached_has_bits = 0;
5932 (void) cached_has_bits;
5933
5934 if (from._internal_total_packets() != 0) {
5935 _this->_internal_set_total_packets(from._internal_total_packets());
5936 }
5937 if (from._internal_new_packets() != 0) {
5938 _this->_internal_set_new_packets(from._internal_new_packets());
5939 }
5940 if (from._internal_total_dropped_packets() != 0) {
5941 _this->_internal_set_total_dropped_packets(from._internal_total_dropped_packets());
5942 }
5943 if (from._internal_new_dropped_packets() != 0) {
5944 _this->_internal_set_new_dropped_packets(from._internal_new_dropped_packets());
5945 }
5946 _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_);
5947}

◆ mutable_unknown_fields()

inline ::google::protobuf::UnknownFieldSet * daphne::StreamInfo::mutable_unknown_fields ( )
inline

Definition at line 3682 of file daphne_control_high.pb.h.

3682 {
3683 return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>();
3684 }

◆ New()

StreamInfo * daphne::StreamInfo::New ( ::google::protobuf::Arena * arena = nullptr) const
inlinefinal

Definition at line 3729 of file daphne_control_high.pb.h.

3729 {
3730 return CreateMaybeMessage<StreamInfo>(arena);
3731 }

◆ new_dropped_packets()

uint64_t daphne::StreamInfo::new_dropped_packets ( ) const
inline

Definition at line 8670 of file daphne_control_high.pb.h.

8670 {
8671 // @@protoc_insertion_point(field_get:daphne.StreamInfo.new_dropped_packets)
8673}

◆ new_packets()

uint64_t daphne::StreamInfo::new_packets ( ) const
inline

Definition at line 8626 of file daphne_control_high.pb.h.

8626 {
8627 // @@protoc_insertion_point(field_get:daphne.StreamInfo.new_packets)
8628 return _internal_new_packets();
8629}

◆ operator=() [1/2]

StreamInfo & daphne::StreamInfo::operator= ( const StreamInfo & from)
inline

Definition at line 3661 of file daphne_control_high.pb.h.

3661 {
3662 CopyFrom(from);
3663 return *this;
3664 }
void CopyFrom(const StreamInfo &from)

◆ operator=() [2/2]

StreamInfo & daphne::StreamInfo::operator= ( StreamInfo && from)
inlinenoexcept

Definition at line 3665 of file daphne_control_high.pb.h.

3665 {
3666 if (this == &from) return *this;
3667 if (GetOwningArena() == from.GetOwningArena()
3668 #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
3669 && GetOwningArena() != nullptr
3670 #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
3671 ) {
3672 InternalSwap(&from);
3673 } else {
3674 CopyFrom(from);
3675 }
3676 return *this;
3677 }
void InternalSwap(StreamInfo *other)

◆ set_new_dropped_packets()

void daphne::StreamInfo::set_new_dropped_packets ( ::uint64_t value)
inline

Definition at line 8674 of file daphne_control_high.pb.h.

8674 {
8676 // @@protoc_insertion_point(field_set:daphne.StreamInfo.new_dropped_packets)
8677}
void _internal_set_new_dropped_packets(::uint64_t value)

◆ set_new_packets()

void daphne::StreamInfo::set_new_packets ( ::uint64_t value)
inline

Definition at line 8630 of file daphne_control_high.pb.h.

8630 {
8632 // @@protoc_insertion_point(field_set:daphne.StreamInfo.new_packets)
8633}
void _internal_set_new_packets(::uint64_t value)

◆ set_total_dropped_packets()

void daphne::StreamInfo::set_total_dropped_packets ( ::uint64_t value)
inline

Definition at line 8652 of file daphne_control_high.pb.h.

8652 {
8654 // @@protoc_insertion_point(field_set:daphne.StreamInfo.total_dropped_packets)
8655}
void _internal_set_total_dropped_packets(::uint64_t value)

◆ set_total_packets()

void daphne::StreamInfo::set_total_packets ( ::uint64_t value)
inline

Definition at line 8608 of file daphne_control_high.pb.h.

8608 {
8610 // @@protoc_insertion_point(field_set:daphne.StreamInfo.total_packets)
8611}
void _internal_set_total_packets(::uint64_t value)

◆ SetCachedSize()

void daphne::StreamInfo::SetCachedSize ( int size) const
finalprivate

Definition at line 5769 of file daphne_control_high.pb.cc.

5769 {
5770 _impl_._cached_size_.Set(size);
5771}

◆ SharedCtor()

void daphne::StreamInfo::SharedCtor ( ::google::protobuf::Arena * arena)
private

◆ SharedDtor()

void daphne::StreamInfo::SharedDtor ( )
inlineprivate

Definition at line 5766 of file daphne_control_high.pb.cc.

5766 {
5767 ABSL_DCHECK(GetArenaForAllocation() == nullptr);
5768}

◆ Swap()

void daphne::StreamInfo::Swap ( StreamInfo * other)
inline

Definition at line 3708 of file daphne_control_high.pb.h.

3708 {
3709 if (other == this) return;
3710 #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
3711 if (GetOwningArena() != nullptr &&
3712 GetOwningArena() == other->GetOwningArena()) {
3713 #else // PROTOBUF_FORCE_COPY_IN_SWAP
3714 if (GetOwningArena() == other->GetOwningArena()) {
3715 #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
3716 InternalSwap(other);
3717 } else {
3718 ::google::protobuf::internal::GenericSwap(this, other);
3719 }
3720 }

◆ total_dropped_packets()

uint64_t daphne::StreamInfo::total_dropped_packets ( ) const
inline

Definition at line 8648 of file daphne_control_high.pb.h.

8648 {
8649 // @@protoc_insertion_point(field_get:daphne.StreamInfo.total_dropped_packets)
8651}

◆ total_packets()

uint64_t daphne::StreamInfo::total_packets ( ) const
inline

Definition at line 8604 of file daphne_control_high.pb.h.

8604 {
8605 // @@protoc_insertion_point(field_get:daphne.StreamInfo.total_packets)
8606 return _internal_total_packets();
8607}

◆ unknown_fields()

const ::google::protobuf::UnknownFieldSet & daphne::StreamInfo::unknown_fields ( ) const
inline

Definition at line 3679 of file daphne_control_high.pb.h.

3679 {
3680 return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance);
3681 }

◆ UnsafeArenaSwap()

void daphne::StreamInfo::UnsafeArenaSwap ( StreamInfo * other)
inline

Definition at line 3721 of file daphne_control_high.pb.h.

3721 {
3722 if (other == this) return;
3723 ABSL_DCHECK(GetOwningArena() == other->GetOwningArena());
3724 InternalSwap(other);
3725 }

Friends And Related Symbol Documentation

◆ ::google::protobuf::Arena::InternalHelper

template<typename T >
friend class ::google::protobuf::Arena::InternalHelper
friend

Definition at line 3826 of file daphne_control_high.pb.h.

◆ ::google::protobuf::internal::AnyMetadata

friend class ::google::protobuf::internal::AnyMetadata
friend

Definition at line 3757 of file daphne_control_high.pb.h.

◆ ::google::protobuf::internal::TcParser

friend class ::google::protobuf::internal::TcParser
friend

Definition at line 3824 of file daphne_control_high.pb.h.

◆ ::TableStruct_daphnemodules_2fdaphne_5fcontrol_5fhigh_2eproto

◆ swap

void swap ( StreamInfo & a,
StreamInfo & b )
friend

Definition at line 3705 of file daphne_control_high.pb.h.

3705 {
3706 a.Swap(&b);
3707 }

Member Data Documentation

◆ [union]

union { ... } daphne::StreamInfo

◆ _class_data_

const::google::protobuf::Message::ClassData daphne::StreamInfo::_class_data_
static
Initial value:
= {
::google::protobuf::Message::CopyWithSourceCheck,
}

Definition at line 3765 of file daphne_control_high.pb.h.

◆ _impl_

Impl_ daphne::StreamInfo::_impl_

Definition at line 3837 of file daphne_control_high.pb.h.

◆ _table_

PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const::_pbi::TcParseTable< 2, 4, 0, 0, 2 > daphne::StreamInfo::_table_
staticprivate

Definition at line 3825 of file daphne_control_high.pb.h.

◆ kIndexInFileMessages

int daphne::StreamInfo::kIndexInFileMessages
staticconstexpr
Initial value:
=
16

Definition at line 3702 of file daphne_control_high.pb.h.


The documentation for this class was generated from the following files: