Lines Matching full:queue
121 // check if the writer has a valid queue in TEST_F()
125 // check queue size on writer side in TEST_F()
131 // check queue element size on writer side in TEST_F()
143 // check if the reader has a valid queue in TEST_F()
147 // check queue size on reader side in TEST_F()
153 // check queue element size on reader side in TEST_F()
195 // Tests reading from an empty queue.
200 // attempt to read from an empty queue in TEST_F()
205 // Tests writing to a full queue.
214 // This write succeeds, filling up the queue in TEST_F()
218 // This write fails, queue is full in TEST_F()
228 // reader succeeds, reads the entire queue back correctly in TEST_F()
235 // Attempt to write more than the size of the queue.
243 // write more than the queue size in TEST_F()
349 // Tests that blocking is not allowed on unsynchronized queue.