Home | History | Annotate | Download | only in tests

Lines Matching refs:anb

543     ANativeWindowBuffer* anb;
544 ASSERT_EQ(NO_ERROR, mANW->dequeueBuffer(mANW.get(), &anb));
545 ASSERT_TRUE(anb != NULL);
547 sp<GraphicBuffer> buf(new GraphicBuffer(anb, false));
588 ANativeWindowBuffer* anb;
589 ASSERT_EQ(NO_ERROR, mANW->dequeueBuffer(mANW.get(), &anb));
590 ASSERT_TRUE(anb != NULL);
592 sp<GraphicBuffer> buf(new GraphicBuffer(anb, false));
648 ANativeWindowBuffer* anb;
649 ASSERT_EQ(NO_ERROR, mANW->dequeueBuffer(mANW.get(), &anb));
650 ASSERT_TRUE(anb != NULL);
652 sp<GraphicBuffer> buf(new GraphicBuffer(anb, false));
721 ANativeWindowBuffer* anb;
722 if (mANW->dequeueBuffer(mANW.get(), &anb) != NO_ERROR) {
725 if (anb == NULL) {
729 sp<GraphicBuffer> buf(new GraphicBuffer(anb, false));
844 android_native_buffer_t* anb;
845 ASSERT_EQ(NO_ERROR, mANW->dequeueBuffer(mANW.get(), &anb));
846 ASSERT_TRUE(anb != NULL);
848 sp<GraphicBuffer> buf(new GraphicBuffer(anb, false));
898 android_native_buffer_t* anb;
899 ASSERT_EQ(NO_ERROR, mANW->dequeueBuffer(mANW.get(), &anb));
900 ASSERT_TRUE(anb != NULL);
902 sp<GraphicBuffer> buf(new GraphicBuffer(anb, false));
1032 ANativeWindowBuffer* anb;
1035 if (mANW->dequeueBuffer(mANW.get(), &anb) != NO_ERROR) {
1038 if (anb == NULL) {
1041 if (mANW->queueBuffer(mANW.get(), anb)
1047 if (mANW->dequeueBuffer(mANW.get(), &anb) != NO_ERROR) {
1050 if (anb == NULL) {
1053 if (mANW->queueBuffer(mANW.get(), anb)
1059 mDequeueError = mANW->dequeueBuffer(mANW.get(), &anb);