Home
last modified time | relevance | path

Searched refs:m_ref (Results 1 – 11 of 11) sorted by relevance

/external/mdnsresponder/mDNSWindows/DLL.NET/
Ddnssd_NET.cpp289 m_ref(NULL) in ServiceRefImpl()
314 if (m_ref != NULL) in ~ServiceRefImpl()
316 DNSServiceRefDeallocate(m_ref); in ~ServiceRefImpl()
317 m_ref = NULL; in ~ServiceRefImpl()
331 check(m_ref != NULL); in SetupEvents()
333 m_socket = (SOCKET) DNSServiceRefSockFD(m_ref); in SetupEvents()
370 check( m_ref != NULL ); in ProcessingThread()
386 DNSServiceProcessResult(m_ref); in ProcessingThread()
594 record->m_impl->m_ref = rrRef; in RegisterRecordCallback()
662 …err = DNSServiceEnumerateDomains(&sdRef->m_impl->m_ref, flags, interfaceIndex, ServiceRef::Service… in EnumerateDomains()
[all …]
Ddnssd_NET.h165 m_impl->m_ref = NULL; in RecordRef()
177 DNSRecordRef m_ref;
402 DNSServiceRef m_ref; variable
456 TXTRecordCreate(&m_impl->m_ref, 0, NULL); in TextRecord()
461 TXTRecordDeallocate(&m_impl->m_ref); in ~TextRecord()
469 TXTRecordRef m_ref;
/external/catch2/third_party/
Dclara.hpp713 T &m_ref; member
715 explicit BoundValueRef( T &ref ) : m_ref( ref ) {} in BoundValueRef()
718 return convertInto( arg, m_ref ); in setValue()
724 std::vector<T> &m_ref; member
726 explicit BoundValueRef( std::vector<T> &ref ) : m_ref( ref ) {} in BoundValueRef()
734 m_ref.push_back( temp ); in setValue()
740 bool &m_ref; member
742 explicit BoundFlagRef( bool &ref ) : m_ref( ref ) {} in BoundFlagRef()
745 m_ref = flag; in setFlag()
836 std::shared_ptr<BoundRef> m_ref; member in clara::detail::ParserRefImpl
[all …]
/external/catch2/include/external/
Dclara.hpp713 T &m_ref; member
715 explicit BoundValueRef( T &ref ) : m_ref( ref ) {} in BoundValueRef()
718 return convertInto( arg, m_ref ); in setValue()
724 std::vector<T> &m_ref; member
726 explicit BoundValueRef( std::vector<T> &ref ) : m_ref( ref ) {} in BoundValueRef()
734 m_ref.push_back( temp ); in setValue()
740 bool &m_ref; member
742 explicit BoundFlagRef( bool &ref ) : m_ref( ref ) {} in BoundFlagRef()
745 m_ref = flag; in setFlag()
836 std::shared_ptr<BoundRef> m_ref; member in Catch::clara::detail::ParserRefImpl
[all …]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorRef.h373 : m_ref(m)
376 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Dimensions& dimensions() const { return m_ref.dimensio…
385 return m_ref.coeff(index);
389 return m_ref.coeffRef(index);
392 EIGEN_DEVICE_FUNC Scalar* data() const { return m_ref.data(); }
395 TensorRef<Derived> m_ref;
421 return this->m_ref.coeffRef(index);
/external/deqp/framework/platform/android/
DtcuAndroidUtil.cpp90 jobject operator* (void) const { return m_ref; } in operator *()
91 operator bool (void) const { return !!m_ref; } in operator bool()
98 const jobject m_ref; member in tcu::Android::__anonec87820e0111::LocalRef
103 , m_ref(ref) in LocalRef()
109 if (m_ref) in ~LocalRef()
110 m_env->DeleteLocalRef(m_ref); in ~LocalRef()
/external/llvm-project/clang/test/SemaCXX/
Dwarn-cast-align.cpp115 char(&m_ref)[sizeof(A) * 2] = m; in test2() local
143 a = (A *)&m_ref; in test2()
/external/deqp/modules/gles31/functional/
Des31fIndexedStateQueryTests.cpp173 const tcu::IVec3 m_ref; member in deqp::gles31::Functional::__anond6dd73b70111::MinValueIndexed3Case
180 , m_ref (ref) in MinValueIndexed3Case()
196 verifyStateIndexedIntegerMin(result, gl, m_target, ndx, m_ref[ndx], m_verifierType); in iterate()
/external/catch2/single_include/catch2/
Dcatch.hpp9087 T &m_ref; member
9089 explicit BoundValueRef( T &ref ) : m_ref( ref ) {} in BoundValueRef()
9092 return convertInto( arg, m_ref ); in setValue()
9098 std::vector<T> &m_ref; member
9100 explicit BoundValueRef( std::vector<T> &ref ) : m_ref( ref ) {} in BoundValueRef()
9108 m_ref.push_back( temp ); in setValue()
9114 bool &m_ref; member
9116 explicit BoundFlagRef( bool &ref ) : m_ref( ref ) {} in BoundFlagRef()
9119 m_ref = flag; in setFlag()
9209 std::shared_ptr<BoundRef> m_ref; member in Catch::clara::detail::ParserRefImpl
[all …]
/external/libabigail/tests/lib/
Dcatch.hpp9142 T &m_ref; member
9144 explicit BoundValueRef( T &ref ) : m_ref( ref ) {} in BoundValueRef()
9147 return convertInto( arg, m_ref ); in setValue()
9153 std::vector<T> &m_ref; member
9155 explicit BoundValueRef( std::vector<T> &ref ) : m_ref( ref ) {} in BoundValueRef()
9163 m_ref.push_back( temp ); in setValue()
9169 bool &m_ref; member
9171 explicit BoundFlagRef( bool &ref ) : m_ref( ref ) {} in BoundFlagRef()
9174 m_ref = flag; in setFlag()
9264 std::shared_ptr<BoundRef> m_ref; member in Catch::clara::detail::ParserRefImpl
[all …]
/external/googletest/googlemock/test/
Dgmock-matchers_test.cc2250 Matcher<float&> m_ref = IsNan(); in TEST() local
2251 EXPECT_TRUE(m_ref.Matches(quiet_nan)); in TEST()
2252 EXPECT_TRUE(m_ref.Matches(other_nan)); in TEST()
2253 EXPECT_FALSE(m_ref.Matches(real_value)); in TEST()
2272 Matcher<double&> m_ref = IsNan(); in TEST() local
2273 EXPECT_TRUE(m_ref.Matches(quiet_nan)); in TEST()
2274 EXPECT_TRUE(m_ref.Matches(other_nan)); in TEST()
2275 EXPECT_FALSE(m_ref.Matches(real_value)); in TEST()
2294 Matcher<long double&> m_ref = IsNan(); in TEST() local
2295 EXPECT_TRUE(m_ref.Matches(quiet_nan)); in TEST()
[all …]