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 3649 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 3776 of file daphne_control_high.pb.h.

Constructor & Destructor Documentation

◆ StreamInfo() [1/7]

daphne::StreamInfo::StreamInfo ( )
inline

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

◆ ~StreamInfo()

daphne::StreamInfo::~StreamInfo ( )
override

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

5765 {
5766 // @@protoc_insertion_point(destructor:daphne.StreamInfo)
5767 _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>();
5768 SharedDtor();
5769}

◆ 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 5749 of file daphne_control_high.pb.cc.

5750 : ::google::protobuf::Message(), _impl_(from._impl_) {
5751 _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(
5752 from._internal_metadata_);
5753 // @@protoc_insertion_point(copy_constructor:daphne.StreamInfo)
5754}

◆ StreamInfo() [4/7]

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

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

3659 : StreamInfo() {
3660 *this = ::std::move(from);
3661 }

◆ StreamInfo() [5/7]

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

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

5745 : ::google::protobuf::Message(arena) {
5746 SharedCtor(arena);
5747 // @@protoc_insertion_point(arena_constructor:daphne.StreamInfo)
5748}
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 8680 of file daphne_control_high.pb.h.

8680 {
8681 PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
8683}

◆ _internal_new_packets()

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

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

8636 {
8637 PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
8638 return _impl_.new_packets_;
8639}

◆ _internal_set_new_dropped_packets()

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

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

8684 {
8685 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
8686 ;
8688}

◆ _internal_set_new_packets()

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

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

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

◆ _internal_set_total_dropped_packets()

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

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

8662 {
8663 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
8664 ;
8666}

◆ _internal_set_total_packets()

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

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

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

◆ _internal_total_dropped_packets()

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

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

8658 {
8659 PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
8661}

◆ _internal_total_packets()

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

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

8614 {
8615 PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
8616 return _impl_.total_packets_;
8617}

◆ _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 5844 of file daphne_control_high.pb.cc.

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

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

◆ Clear()

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

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

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

◆ clear_new_dropped_packets()

void daphne::StreamInfo::clear_new_dropped_packets ( )
inline

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

8669 {
8670 _impl_.new_dropped_packets_ = ::uint64_t{0u};
8671}

◆ clear_new_packets()

void daphne::StreamInfo::clear_new_packets ( )
inline

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

8625 {
8626 _impl_.new_packets_ = ::uint64_t{0u};
8627}

◆ clear_total_dropped_packets()

void daphne::StreamInfo::clear_total_dropped_packets ( )
inline

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

8647 {
8648 _impl_.total_dropped_packets_ = ::uint64_t{0u};
8649}

◆ clear_total_packets()

void daphne::StreamInfo::clear_total_packets ( )
inline

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

8603 {
8604 _impl_.total_packets_ = ::uint64_t{0u};
8605}

◆ CopyFrom()

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

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

5953 {
5954// @@protoc_insertion_point(class_specific_copy_from_start:daphne.StreamInfo)
5955 if (&from == this) return;
5956 Clear();
5957 MergeFrom(from);
5958}
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final
void MergeFrom(const StreamInfo &from)

◆ default_instance()

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

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

3697 {
3698 return *internal_default_instance();
3699 }
static const StreamInfo * internal_default_instance()

◆ descriptor()

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

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

3688 {
3689 return GetDescriptor();
3690 }
static const ::google::protobuf::Descriptor * GetDescriptor()

◆ FullMessageName()

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

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

3760 {
3761 return "daphne.StreamInfo";
3762 }

◆ GetCachedSize()

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

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

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

◆ GetClassData()

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

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

5927{ return &_class_data_; }
static const ClassData _class_data_

◆ GetDescriptor()

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

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

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

◆ GetMetadata()

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

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

5975 {
5976 return ::_pbi::AssignDescriptors(
5979}
::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 3694 of file daphne_control_high.pb.h.

3694 {
3695 return default_instance().GetMetadata().reflection;
3696 }

◆ internal_default_instance()

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

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

3700 {
3701 return reinterpret_cast<const StreamInfo*>(
3703 }
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 5964 of file daphne_control_high.pb.cc.

5964 {
5965 using std::swap;
5966 _internal_metadata_.InternalSwap(&other->_internal_metadata_);
5967 ::google::protobuf::internal::memswap<
5968 PROTOBUF_FIELD_OFFSET(StreamInfo, _impl_.new_dropped_packets_)
5970 - PROTOBUF_FIELD_OFFSET(StreamInfo, _impl_.total_packets_)>(
5971 reinterpret_cast<char*>(&_impl_.total_packets_),
5972 reinterpret_cast<char*>(&other->_impl_.total_packets_));
5973}

◆ IsInitialized()

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

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

5960 {
5961 return true;
5962}

◆ MergeFrom()

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

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

3737 {
3738 StreamInfo::MergeImpl(*this, from);
3739 }
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 5930 of file daphne_control_high.pb.cc.

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

◆ mutable_unknown_fields()

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

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

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

◆ New()

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

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

3731 {
3732 return CreateMaybeMessage<StreamInfo>(arena);
3733 }

◆ new_dropped_packets()

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

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

8672 {
8673 // @@protoc_insertion_point(field_get:daphne.StreamInfo.new_dropped_packets)
8675}

◆ new_packets()

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

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

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

◆ operator=() [1/2]

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

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

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

◆ operator=() [2/2]

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

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

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

◆ set_new_dropped_packets()

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

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

8676 {
8678 // @@protoc_insertion_point(field_set:daphne.StreamInfo.new_dropped_packets)
8679}
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 8632 of file daphne_control_high.pb.h.

8632 {
8634 // @@protoc_insertion_point(field_set:daphne.StreamInfo.new_packets)
8635}
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 8654 of file daphne_control_high.pb.h.

8654 {
8656 // @@protoc_insertion_point(field_set:daphne.StreamInfo.total_dropped_packets)
8657}
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 8610 of file daphne_control_high.pb.h.

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

◆ SetCachedSize()

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

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

5773 {
5774 _impl_._cached_size_.Set(size);
5775}

◆ SharedCtor()

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

◆ SharedDtor()

void daphne::StreamInfo::SharedDtor ( )
inlineprivate

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

5770 {
5771 ABSL_DCHECK(GetArenaForAllocation() == nullptr);
5772}

◆ Swap()

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

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

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

◆ total_dropped_packets()

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

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

8650 {
8651 // @@protoc_insertion_point(field_get:daphne.StreamInfo.total_dropped_packets)
8653}

◆ total_packets()

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

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

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

◆ unknown_fields()

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

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

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

◆ UnsafeArenaSwap()

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

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

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

Friends And Related Symbol Documentation

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

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

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

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

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

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

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

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

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

◆ ::TableStruct_daphnemodules_2fdaphne_5fcontrol_5fhigh_2eproto

◆ swap

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

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

3707 {
3708 a.Swap(&b);
3709 }

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 3767 of file daphne_control_high.pb.h.

◆ _impl_

Impl_ daphne::StreamInfo::_impl_

Definition at line 3839 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 3827 of file daphne_control_high.pb.h.

◆ kIndexInFileMessages

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

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


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