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

Constructor & Destructor Documentation

◆ TestRegResponse() [1/6]

daphne::TestRegResponse::TestRegResponse ( )
inline

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

◆ ~TestRegResponse()

daphne::TestRegResponse::~TestRegResponse ( )
override

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

7818 {
7819 // @@protoc_insertion_point(destructor:daphne.TestRegResponse)
7820 _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>();
7821 SharedDtor();
7822}

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

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

◆ TestRegResponse() [4/6]

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

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

5218 : TestRegResponse() {
5219 *this = ::std::move(from);
5220 }

◆ TestRegResponse() [5/6]

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

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

7781 : ::google::protobuf::Message(arena) {
7782 SharedCtor(arena);
7783 // @@protoc_insertion_point(arena_constructor:daphne.TestRegResponse)
7784}
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 9602 of file daphne_control_high.pb.h.

9602 {
9603 PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
9604 return _impl_.message_.Get();
9605}

◆ _internal_mutable_message()

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

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

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

◆ _internal_set_message()

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

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

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

◆ _internal_set_value()

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

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

9575 {
9576 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
9577 ;
9579}

◆ _internal_value()

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

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

9571 {
9572 PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
9573 return _impl_.value_;
9574}

◆ _InternalParse()

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

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

7843 {
7844 ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header);
7845 return ptr;
7846}
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 7888 of file daphne_control_high.pb.cc.

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

◆ ByteSizeLong()

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

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

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

◆ Clear()

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

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

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

◆ clear_message()

void daphne::TestRegResponse::clear_message ( )
inline

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

9582 {
9583 _impl_.message_.ClearToEmpty();
9584}

◆ clear_value()

void daphne::TestRegResponse::clear_value ( )
inline

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

9560 {
9561 _impl_.value_ = ::uint64_t{0u};
9562}

◆ CopyFrom()

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

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

7966 {
7967// @@protoc_insertion_point(class_specific_copy_from_start:daphne.TestRegResponse)
7968 if (&from == this) return;
7969 Clear();
7970 MergeFrom(from);
7971}
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final
void MergeFrom(const TestRegResponse &from)

◆ default_instance()

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

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

5256 {
5257 return *internal_default_instance();
5258 }
static const TestRegResponse * internal_default_instance()

◆ descriptor()

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

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

5247 {
5248 return GetDescriptor();
5249 }
static const ::google::protobuf::Descriptor * GetDescriptor()

◆ FullMessageName()

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

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

5319 {
5320 return "daphne.TestRegResponse";
5321 }

◆ GetCachedSize()

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

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

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

◆ GetClassData()

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

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

7946{ return &_class_data_; }
static const ClassData _class_data_

◆ GetDescriptor()

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

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

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

◆ GetMetadata()

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

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

7987 {
7988 return ::_pbi::AssignDescriptors(
7991}
::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 5253 of file daphne_control_high.pb.h.

5253 {
5254 return default_instance().GetMetadata().reflection;
5255 }

◆ internal_default_instance()

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

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

5259 {
5260 return reinterpret_cast<const TestRegResponse*>(
5262 }
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 7977 of file daphne_control_high.pb.cc.

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

◆ IsInitialized()

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

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

7973 {
7974 return true;
7975}

◆ MergeFrom()

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

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

5296 {
5297 TestRegResponse::MergeImpl(*this, from);
5298 }
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 7949 of file daphne_control_high.pb.cc.

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

◆ message()

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

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

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

◆ mutable_message()

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

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

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

◆ mutable_unknown_fields()

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

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

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

◆ New()

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

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

5290 {
5291 return CreateMaybeMessage<TestRegResponse>(arena);
5292 }

◆ operator=() [1/2]

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

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

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

◆ operator=() [2/2]

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

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

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

◆ release_message()

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

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

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

◆ set_allocated_message()

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

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

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

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

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

◆ set_value()

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

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

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

◆ SetCachedSize()

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

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

7827 {
7828 _impl_._cached_size_.Set(size);
7829}

◆ SharedCtor()

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

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

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

◆ SharedDtor()

void daphne::TestRegResponse::SharedDtor ( )
inlineprivate

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

7823 {
7824 ABSL_DCHECK(GetArenaForAllocation() == nullptr);
7825 _impl_.message_.Destroy();
7826}

◆ Swap()

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

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

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

◆ unknown_fields()

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

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

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

◆ UnsafeArenaSwap()

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

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

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

◆ value()

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

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

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

Friends And Related Symbol Documentation

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

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

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

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

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

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

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

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

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

◆ ::TableStruct_daphnemodules_2fdaphne_5fcontrol_5fhigh_2eproto

◆ swap

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

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

5266 {
5267 a.Swap(&b);
5268 }

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

◆ _impl_

Impl_ daphne::TestRegResponse::_impl_

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

◆ kIndexInFileMessages

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

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


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