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

#include <daphne_control_high.pb.h>

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

Classes

class  _Internal
 
struct  Impl_
 

Public Types

enum  : int { kMessageFieldNumber = 2 , kValueFieldNumber = 1 }
 

Public Member Functions

 TestRegResponse ()
 
 ~TestRegResponse () override
 
template<typename = void>
PROTOBUF_CONSTEXPR TestRegResponse (::google::protobuf::internal::ConstantInitialized)
 
 TestRegResponse (const TestRegResponse &from)
 
 TestRegResponse (TestRegResponse &&from) noexcept
 
TestRegResponseoperator= (const TestRegResponse &from)
 
TestRegResponseoperator= (TestRegResponse &&from) noexcept
 
const ::google::protobuf::UnknownFieldSet & unknown_fields () const
 
inline ::google::protobuf::UnknownFieldSet * mutable_unknown_fields ()
 
void Swap (TestRegResponse *other)
 
void UnsafeArenaSwap (TestRegResponse *other)
 
TestRegResponseNew (::google::protobuf::Arena *arena=nullptr) const final
 
void CopyFrom (const TestRegResponse &from)
 
void MergeFrom (const TestRegResponse &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_message ()
 
const std::string & message () const
 
template<typename Arg_ = const std::string&, typename... Args_>
void set_message (Arg_ &&arg, Args_... args)
 
std::string * mutable_message ()
 
PROTOBUF_NODISCARD std::string * release_message ()
 
void set_allocated_message (std::string *ptr)
 
void clear_value ()
 
::uint64_t value () const
 
void set_value (::uint64_t value)
 
template<typename >
PROTOBUF_CONSTEXPR TestRegResponse (::_pbi::ConstantInitialized)
 
template<typename Arg_ , typename... Args_>
PROTOBUF_ALWAYS_INLINE void set_message (Arg_ &&arg, Args_... args)
 

Static Public Member Functions

static const ::google::protobuf::Descriptor * descriptor ()
 
static const ::google::protobuf::Descriptor * GetDescriptor ()
 
static const ::google::protobuf::Reflection * GetReflection ()
 
static const TestRegResponsedefault_instance ()
 
static const TestRegResponseinternal_default_instance ()
 

Static Public Attributes

static constexpr int kIndexInFileMessages
 
static const ClassData _class_data_
 

Protected Member Functions

 TestRegResponse (::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 (TestRegResponse *other)
 
const std::string & _internal_message () const
 
PROTOBUF_ALWAYS_INLINE void _internal_set_message (const std::string &value)
 
std::string * _internal_mutable_message ()
 
::uint64_t _internal_value () const
 
void _internal_set_value (::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< 1, 2, 0, 38, 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 (TestRegResponse &a, TestRegResponse &b)
 

Detailed Description

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

Member Typedef Documentation

◆ DestructorSkippable_

◆ InternalArenaConstructable_

Member Enumeration Documentation

◆ anonymous enum

anonymous enum : int
Enumerator
kMessageFieldNumber 
kValueFieldNumber 

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

Constructor & Destructor Documentation

◆ TestRegResponse() [1/6]

daphne::TestRegResponse::TestRegResponse ( )
inline

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

◆ ~TestRegResponse()

daphne::TestRegResponse::~TestRegResponse ( )
override

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

7822 {
7823 // @@protoc_insertion_point(destructor:daphne.TestRegResponse)
7824 _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>();
7825 SharedDtor();
7826}

◆ TestRegResponse() [2/6]

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

◆ TestRegResponse() [3/6]

daphne::TestRegResponse::TestRegResponse ( const TestRegResponse & from)

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

7789 : ::google::protobuf::Message() {
7790 TestRegResponse* const _this = this;
7791 (void)_this;
7792 new (&_impl_) Impl_{
7793 decltype(_impl_.message_){},
7794 decltype(_impl_.value_){},
7795 /*decltype(_impl_._cached_size_)*/ {},
7796 };
7797 _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(
7798 from._internal_metadata_);
7799 _impl_.message_.InitDefault();
7800 #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
7801 _impl_.message_.Set("", GetArenaForAllocation());
7802 #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
7803 if (!from._internal_message().empty()) {
7804 _this->_impl_.message_.Set(from._internal_message(), _this->GetArenaForAllocation());
7805 }
7806 _this->_impl_.value_ = from._impl_.value_;
7807
7808 // @@protoc_insertion_point(copy_constructor:daphne.TestRegResponse)
7809}
::google::protobuf::internal::ArenaStringPtr message_

◆ TestRegResponse() [4/6]

daphne::TestRegResponse::TestRegResponse ( TestRegResponse && from)
inlinenoexcept

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

5220 : TestRegResponse() {
5221 *this = ::std::move(from);
5222 }

◆ TestRegResponse() [5/6]

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

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

7785 : ::google::protobuf::Message(arena) {
7786 SharedCtor(arena);
7787 // @@protoc_insertion_point(arena_constructor:daphne.TestRegResponse)
7788}
void SharedCtor(::google::protobuf::Arena *arena)

◆ TestRegResponse() [6/6]

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

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

518 : _impl_{
519 /*decltype(_impl_.message_)*/ {
520 &::_pbi::fixed_address_empty_string,
521 ::_pbi::ConstantInitialized{},
522 },
523 /*decltype(_impl_.value_)*/ ::uint64_t{0u},
524 /*decltype(_impl_._cached_size_)*/ {},
525 } {}

Member Function Documentation

◆ _internal_message()

const std::string & daphne::TestRegResponse::_internal_message ( ) const
inlineprivate

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

9604 {
9605 PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
9606 return _impl_.message_.Get();
9607}

◆ _internal_mutable_message()

std::string * daphne::TestRegResponse::_internal_mutable_message ( )
inlineprivate

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

9613 {
9614 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
9615 ;
9616 return _impl_.message_.Mutable( GetArenaForAllocation());
9617}

◆ _internal_set_message()

void daphne::TestRegResponse::_internal_set_message ( const std::string & value)
inlineprivate

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

9608 {
9609 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
9610 ;
9611 _impl_.message_.Set(value, GetArenaForAllocation());
9612}

◆ _internal_set_value()

void daphne::TestRegResponse::_internal_set_value ( ::uint64_t value)
inlineprivate

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

9577 {
9578 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
9579 ;
9581}

◆ _internal_value()

uint64_t daphne::TestRegResponse::_internal_value ( ) const
inlineprivate

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

9573 {
9574 PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
9575 return _impl_.value_;
9576}

◆ _InternalParse()

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

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

7847 {
7848 ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header);
7849 return ptr;
7850}
static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 38, 2 > _table_

◆ _InternalSerialize()

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

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

7894 {
7895 // @@protoc_insertion_point(serialize_to_array_start:daphne.TestRegResponse)
7896 ::uint32_t cached_has_bits = 0;
7897 (void)cached_has_bits;
7898
7899 // uint64 value = 1;
7900 if (this->_internal_value() != 0) {
7901 target = stream->EnsureSpace(target);
7902 target = ::_pbi::WireFormatLite::WriteUInt64ToArray(
7903 1, this->_internal_value(), target);
7904 }
7905
7906 // string message = 2;
7907 if (!this->_internal_message().empty()) {
7908 const std::string& _s = this->_internal_message();
7909 ::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
7910 _s.data(), static_cast<int>(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "daphne.TestRegResponse.message");
7911 target = stream->WriteStringMaybeAliased(2, _s, target);
7912 }
7913
7914 if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) {
7915 target =
7916 ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray(
7917 _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream);
7918 }
7919 // @@protoc_insertion_point(serialize_to_array_end:daphne.TestRegResponse)
7920 return target;
7921}
const std::string & _internal_message() const

◆ ByteSizeLong()

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

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

7923 {
7924// @@protoc_insertion_point(message_byte_size_start:daphne.TestRegResponse)
7925 ::size_t total_size = 0;
7926
7927 ::uint32_t cached_has_bits = 0;
7928 // Prevent compiler warnings about cached_has_bits being unused
7929 (void) cached_has_bits;
7930
7931 // string message = 2;
7932 if (!this->_internal_message().empty()) {
7933 total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize(
7934 this->_internal_message());
7935 }
7936
7937 // uint64 value = 1;
7938 if (this->_internal_value() != 0) {
7939 total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(
7940 this->_internal_value());
7941 }
7942
7943 return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_);
7944}
mutable::google::protobuf::internal::CachedSize _cached_size_

◆ Clear()

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

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

7835 {
7836// @@protoc_insertion_point(message_clear_start:daphne.TestRegResponse)
7837 ::uint32_t cached_has_bits = 0;
7838 // Prevent compiler warnings about cached_has_bits being unused
7839 (void) cached_has_bits;
7840
7841 _impl_.message_.ClearToEmpty();
7842 _impl_.value_ = ::uint64_t{0u};
7843 _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>();
7844}

◆ clear_message()

void daphne::TestRegResponse::clear_message ( )
inline

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

9584 {
9585 _impl_.message_.ClearToEmpty();
9586}

◆ clear_value()

void daphne::TestRegResponse::clear_value ( )
inline

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

9562 {
9563 _impl_.value_ = ::uint64_t{0u};
9564}

◆ CopyFrom()

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

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

7970 {
7971// @@protoc_insertion_point(class_specific_copy_from_start:daphne.TestRegResponse)
7972 if (&from == this) return;
7973 Clear();
7974 MergeFrom(from);
7975}
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final
void MergeFrom(const TestRegResponse &from)

◆ default_instance()

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

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

5258 {
5259 return *internal_default_instance();
5260 }
static const TestRegResponse * internal_default_instance()

◆ descriptor()

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

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

5249 {
5250 return GetDescriptor();
5251 }
static const ::google::protobuf::Descriptor * GetDescriptor()

◆ FullMessageName()

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

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

5321 {
5322 return "daphne.TestRegResponse";
5323 }

◆ GetCachedSize()

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

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

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

◆ GetClassData()

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

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

7950{ return &_class_data_; }
static const ClassData _class_data_

◆ GetDescriptor()

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

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

5252 {
5253 return default_instance().GetMetadata().descriptor;
5254 }
::google::protobuf::Metadata GetMetadata() const final
static const TestRegResponse & default_instance()

◆ GetMetadata()

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

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

7991 {
7992 return ::_pbi::AssignDescriptors(
7995}
::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::TestRegResponse::GetReflection ( )
inlinestatic

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

5255 {
5256 return default_instance().GetMetadata().reflection;
5257 }

◆ internal_default_instance()

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

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

5261 {
5262 return reinterpret_cast<const TestRegResponse*>(
5264 }
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 TestRegResponseDefaultTypeInternal _TestRegResponse_default_instance_

◆ InternalSwap()

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

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

7981 {
7982 using std::swap;
7983 auto* lhs_arena = GetArenaForAllocation();
7984 auto* rhs_arena = other->GetArenaForAllocation();
7985 _internal_metadata_.InternalSwap(&other->_internal_metadata_);
7986 ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.message_, lhs_arena,
7987 &other->_impl_.message_, rhs_arena);
7988 swap(_impl_.value_, other->_impl_.value_);
7989}
friend void swap(TestRegResponse &a, TestRegResponse &b)

◆ IsInitialized()

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

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

7977 {
7978 return true;
7979}

◆ MergeFrom()

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

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

5298 {
5299 TestRegResponse::MergeImpl(*this, from);
5300 }
static void MergeImpl(::google::protobuf::Message &to_msg, const ::google::protobuf::Message &from_msg)

◆ MergeImpl()

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

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

7953 {
7954 auto* const _this = static_cast<TestRegResponse*>(&to_msg);
7955 auto& from = static_cast<const TestRegResponse&>(from_msg);
7956 // @@protoc_insertion_point(class_specific_merge_from_start:daphne.TestRegResponse)
7957 ABSL_DCHECK_NE(&from, _this);
7958 ::uint32_t cached_has_bits = 0;
7959 (void) cached_has_bits;
7960
7961 if (!from._internal_message().empty()) {
7962 _this->_internal_set_message(from._internal_message());
7963 }
7964 if (from._internal_value() != 0) {
7965 _this->_internal_set_value(from._internal_value());
7966 }
7967 _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_);
7968}

◆ message()

const std::string & daphne::TestRegResponse::message ( ) const
inline

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

9587 {
9588 // @@protoc_insertion_point(field_get:daphne.TestRegResponse.message)
9589 return _internal_message();
9590}

◆ mutable_message()

std::string * daphne::TestRegResponse::mutable_message ( )
inline

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

9599 {
9600 std::string* _s = _internal_mutable_message();
9601 // @@protoc_insertion_point(field_mutable:daphne.TestRegResponse.message)
9602 return _s;
9603}

◆ mutable_unknown_fields()

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

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

5245 {
5246 return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>();
5247 }

◆ New()

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

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

5292 {
5293 return CreateMaybeMessage<TestRegResponse>(arena);
5294 }

◆ operator=() [1/2]

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

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

5224 {
5225 CopyFrom(from);
5226 return *this;
5227 }
void CopyFrom(const TestRegResponse &from)

◆ operator=() [2/2]

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

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

5228 {
5229 if (this == &from) return *this;
5230 if (GetOwningArena() == from.GetOwningArena()
5231 #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
5232 && GetOwningArena() != nullptr
5233 #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
5234 ) {
5235 InternalSwap(&from);
5236 } else {
5237 CopyFrom(from);
5238 }
5239 return *this;
5240 }
void InternalSwap(TestRegResponse *other)

◆ release_message()

std::string * daphne::TestRegResponse::release_message ( )
inline

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

9618 {
9619 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
9620 // @@protoc_insertion_point(field_release:daphne.TestRegResponse.message)
9621 return _impl_.message_.Release();
9622}

◆ set_allocated_message()

void daphne::TestRegResponse::set_allocated_message ( std::string * ptr)
inline

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

9623 {
9624 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
9625 _impl_.message_.SetAllocated(value, GetArenaForAllocation());
9626 #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
9627 if (_impl_.message_.IsDefault()) {
9628 _impl_.message_.Set("", GetArenaForAllocation());
9629 }
9630 #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
9631 // @@protoc_insertion_point(field_set_allocated:daphne.TestRegResponse.message)
9632}

◆ set_message() [1/2]

template<typename Arg_ = const std::string&, typename... Args_>
void daphne::TestRegResponse::set_message ( Arg_ && arg,
Args_... args )

◆ set_message() [2/2]

template<typename Arg_ , typename... Args_>
PROTOBUF_ALWAYS_INLINE void daphne::TestRegResponse::set_message ( Arg_ && arg,
Args_... args )
inline

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

9593 {
9594 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
9595 ;
9596 _impl_.message_.Set(static_cast<Arg_&&>(arg), args..., GetArenaForAllocation());
9597 // @@protoc_insertion_point(field_set:daphne.TestRegResponse.message)
9598}

◆ set_value()

void daphne::TestRegResponse::set_value ( ::uint64_t value)
inline

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

9569 {
9571 // @@protoc_insertion_point(field_set:daphne.TestRegResponse.value)
9572}
void _internal_set_value(::uint64_t value)

◆ SetCachedSize()

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

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

7831 {
7832 _impl_._cached_size_.Set(size);
7833}

◆ SharedCtor()

void daphne::TestRegResponse::SharedCtor ( ::google::protobuf::Arena * arena)
inlineprivate

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

7810 {
7811 (void)arena;
7812 new (&_impl_) Impl_{
7813 decltype(_impl_.message_){},
7814 decltype(_impl_.value_){::uint64_t{0u}},
7815 /*decltype(_impl_._cached_size_)*/ {},
7816 };
7817 _impl_.message_.InitDefault();
7818 #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
7819 _impl_.message_.Set("", GetArenaForAllocation());
7820 #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
7821}

◆ SharedDtor()

void daphne::TestRegResponse::SharedDtor ( )
inlineprivate

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

7827 {
7828 ABSL_DCHECK(GetArenaForAllocation() == nullptr);
7829 _impl_.message_.Destroy();
7830}

◆ Swap()

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

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

5271 {
5272 if (other == this) return;
5273 #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
5274 if (GetOwningArena() != nullptr &&
5275 GetOwningArena() == other->GetOwningArena()) {
5276 #else // PROTOBUF_FORCE_COPY_IN_SWAP
5277 if (GetOwningArena() == other->GetOwningArena()) {
5278 #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
5279 InternalSwap(other);
5280 } else {
5281 ::google::protobuf::internal::GenericSwap(this, other);
5282 }
5283 }

◆ unknown_fields()

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

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

5242 {
5243 return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance);
5244 }

◆ UnsafeArenaSwap()

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

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

5284 {
5285 if (other == this) return;
5286 ABSL_DCHECK(GetOwningArena() == other->GetOwningArena());
5287 InternalSwap(other);
5288 }

◆ value()

uint64_t daphne::TestRegResponse::value ( ) const
inline

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

9565 {
9566 // @@protoc_insertion_point(field_get:daphne.TestRegResponse.value)
9567 return _internal_value();
9568}

Friends And Related Symbol Documentation

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

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

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

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

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

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

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

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

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

◆ ::TableStruct_daphnemodules_2fdaphne_5fcontrol_5fhigh_2eproto

◆ swap

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

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

5268 {
5269 a.Swap(&b);
5270 }

Member Data Documentation

◆ [union]

union { ... } daphne::TestRegResponse

◆ _class_data_

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

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

◆ _impl_

Impl_ daphne::TestRegResponse::_impl_

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

◆ _table_

PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const::_pbi::TcParseTable< 1, 2, 0, 38, 2 > daphne::TestRegResponse::_table_
staticprivate

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

◆ kIndexInFileMessages

int daphne::TestRegResponse::kIndexInFileMessages
staticconstexpr
Initial value:
=
24

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


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