Searched refs:SetThreadSpecificData (Results 1 – 3 of 3) sorted by relevance
65 ON_CALL(*this, SetThreadSpecificData(_)).WillByDefault(Return(true)); in TLSSystemMockBase()76 MOCK_METHOD(bool, SetThreadSpecificData, (void* data), ());328 EXPECT_CALL(tlsSystem_mock, SetThreadSpecificData(NotNull())); in TEST_F()385 EXPECT_CALL(tlsSystem_mock, SetThreadSpecificData(_)).Times(0); in TEST_F()401 EXPECT_CALL(tlsSystem_mock, SetThreadSpecificData(_)) in TEST_F()514 ASSERT_TRUE(sut.SetThreadSpecificData(&x)); in TEST_F()539 sut.SetThreadSpecificData(this); in TEST_F()564 ASSERT_TRUE(sut.SetThreadSpecificData(&x)); in TEST_F()618 EXPECT_TRUE(sut.SetThreadSpecificData(&x)); in TEST_F()640 EXPECT_FALSE(sut.SetThreadSpecificData(this)); in TEST_F()
124 bool SetThreadSpecificData(void* data);253 tls_system.SetThreadSpecificData(slot)); in GetThreadLocalData()
155 bool PThreadTLSSystem::SetThreadSpecificData(void* data) { in SetThreadSpecificData() function in base::allocator::dispatcher::internal::PThreadTLSSystem