HomeSort by relevance Sort by last modified time
    Searched defs:RefCountedBytes (Results 1 - 2 of 2) sorted by null

  /external/chromium/base/memory/
ref_counted_memory.cc 21 RefCountedBytes::RefCountedBytes() {
24 RefCountedBytes::RefCountedBytes(const std::vector<unsigned char>& initializer)
28 RefCountedBytes* RefCountedBytes::TakeVector(
30 RefCountedBytes* bytes = new RefCountedBytes;
35 const unsigned char* RefCountedBytes::front() const {
41 size_t RefCountedBytes::size() const
    [all...]
ref_counted_memory.h 58 class BASE_API RefCountedBytes : public RefCountedMemory {
60 RefCountedBytes();
62 // Constructs a RefCountedBytes object by _copying_ from |initializer|.
63 RefCountedBytes(const std::vector<unsigned char>& initializer);
65 // Constructs a RefCountedBytes object by performing a swap. (To non
66 // destructively build a RefCountedBytes, use the constructor that takes a
68 static RefCountedBytes* TakeVector(std::vector<unsigned char>* to_destroy);
77 friend class base::RefCountedThreadSafe<RefCountedBytes>;
78 virtual ~RefCountedBytes();
81 DISALLOW_COPY_AND_ASSIGN(RefCountedBytes);
    [all...]

Completed in 42 milliseconds