Searched defs:TypedBuffer (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/remoting/base/
H A Dtyped_buffer.h22 class TypedBuffer { class in namespace:remoting
23 MOVE_ONLY_TYPE_FOR_CPP_03(TypedBuffer, RValue)
26 TypedBuffer() : buffer_(NULL), length_(0) { function in class:remoting::TypedBuffer
30 explicit TypedBuffer(uint32 length) : buffer_(NULL), length_(length) { function in class:remoting::TypedBuffer
36 TypedBuffer(RValue rvalue) : buffer_(NULL), length_(0) { function in class:remoting::TypedBuffer
37 TypedBuffer temp;
42 ~TypedBuffer() {
50 TypedBuffer& operator=(RValue rvalue) {
51 TypedBuffer temp;
77 // Allow TypedBuffer<
[all...]

Completed in 79 milliseconds