OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:VectorBuffer
(Results
1 - 3
of
3
) sorted by null
/external/libchrome/base/containers/
vector_buffer.h
23
// std::vector,
VectorBuffer
never constructs or destructs its arguments, and
38
class
VectorBuffer
{
40
constexpr
VectorBuffer
() = default;
47
VectorBuffer
(size_t count)
51
VectorBuffer
(
VectorBuffer
&& other) noexcept
57
~
VectorBuffer
() { free(buffer_); }
59
VectorBuffer
& operator=(
VectorBuffer
&& other) {
157
DISALLOW_COPY_AND_ASSIGN(
VectorBuffer
);
[
all
...]
/frameworks/av/media/codec2/sfplugin/
CCodecBuffers.cpp
179
sp<ABuffer> buffer = new
VectorBuffer
(std::move(*it), shared_from_this());
196
return new
VectorBuffer
(std::move(vec), shared_from_this());
199
LocalBufferPool::
VectorBuffer
::
VectorBuffer
(
206
LocalBufferPool::
VectorBuffer
::~
VectorBuffer
() {
[
all
...]
CCodecBuffers.h
263
class
VectorBuffer
: public ::android::ABuffer {
266
* Construct a
VectorBuffer
by taking the ownership of supplied vector.
273
VectorBuffer
(std::vector<uint8_t> &&vec, const std::shared_ptr<LocalBufferPool> &pool);
275
~
VectorBuffer
() override;
295
* Take back the ownership of vec from the destructed
VectorBuffer
and put
Completed in 484 milliseconds