Home | History | Annotate | Download | only in tests

Lines Matching defs:null_value

1846   pthread_mutex_t* null_value = nullptr;
1847 ASSERT_EQ(EINVAL, pthread_mutex_lock(null_value));
1861 pthread_mutex_t* null_value = nullptr;
1862 ASSERT_EQ(EINVAL, pthread_mutex_unlock(null_value));
1870 pthread_mutex_t* null_value = nullptr;
1871 ASSERT_EXIT(pthread_mutex_lock(null_value), testing::KilledBySignal(SIGSEGV), "");
1879 pthread_mutex_t* null_value = nullptr;
1880 ASSERT_EXIT(pthread_mutex_unlock(null_value), testing::KilledBySignal(SIGSEGV), "");