Home | History | Annotate | Download | only in vts

Lines Matching defs:buffer

49 // Number of iteration for buffer allocation test.
52 // Number of iteration for buffer recycling test.
101 // Buffer allocation test.
102 // Check whether each buffer allocation is done successfully with
103 // unique buffer id.
109 std::shared_ptr<BufferPoolData> buffer[kNumAllocationTest];
112 status = mManager->allocate(mConnectionId, vecParams, &allocHandle, &buffer[i]);
117 ASSERT_TRUE(buffer[i]->mId != buffer[j]->mId);
123 // Buffer recycle test.
132 std::shared_ptr<BufferPoolData> buffer;
134 status = mManager->allocate(mConnectionId, vecParams, &allocHandle, &buffer);
136 bid[i] = buffer->mId;
144 // Buffer transfer test.
145 // Check whether buffer is transferred to another client successfully.