Lines Matching refs:aError
111 rtlRandomError aError = rtl_random_addBytes(NULL, NULL, 0); in TEST_F() local
112 ASSERT_TRUE(aError == rtl_Random_E_Argument) << "wrong parameter"; in TEST_F()
114 /* rtlRandomError */ aError = rtl_random_addBytes(aPool, NULL, 0); in TEST_F()
115 ASSERT_TRUE(aError == rtl_Random_E_Argument) << "wrong parameter"; in TEST_F()
117 /* rtlRandomError */ aError = rtl_random_addBytes(aPool, pBuffer, nBufLen); in TEST_F()
118 ASSERT_TRUE(aError == rtl_Random_E_None) << "wrong parameter"; in TEST_F()
230 rtlRandomError aError = rtl_random_getBytes(NULL, NULL, 0); in TEST_F() local
231 ASSERT_TRUE(aError == rtl_Random_E_Argument) << "wrong parameter"; in TEST_F()
233 /* rtlRandomError */ aError = rtl_random_getBytes(aPool, NULL, 0); in TEST_F()
234 ASSERT_TRUE(aError == rtl_Random_E_Argument) << "wrong parameter"; in TEST_F()
236 /* rtlRandomError */ aError = rtl_random_getBytes(aPool, pBuffer, nBufLen); in TEST_F()
237 ASSERT_TRUE(aError == rtl_Random_E_None) << "wrong parameter"; in TEST_F()
251 rtlRandomError aError = rtl_random_getBytes(aPool, pBuffer, nBufLen); in TEST_F() local
252 ASSERT_TRUE(aError == rtl_Random_E_None) << "wrong parameter"; in TEST_F()
270 rtlRandomError aError = rtl_random_getBytes(aPool, pBuffer, nBufLen); in TEST_F() local
271 ASSERT_TRUE(aError == rtl_Random_E_None) << "wrong parameter"; in TEST_F()