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

  /external/chromium/base/memory/
ref_counted_memory.cc 7 RefCountedMemory::RefCountedMemory() {
10 RefCountedMemory::~RefCountedMemory() {
ref_counted_memory.h 20 class BASE_API RefCountedMemory
21 : public base::RefCountedThreadSafe<RefCountedMemory> {
31 friend class base::RefCountedThreadSafe<RefCountedMemory>;
32 RefCountedMemory();
33 virtual ~RefCountedMemory();
36 // An implementation of RefCountedMemory, where the ref counting does not
38 class BASE_API RefCountedStaticMemory : public RefCountedMemory {
45 // Overriden from RefCountedMemory:
56 // An implementation of RefCountedMemory, where we own our the data in a
58 class BASE_API RefCountedBytes : public RefCountedMemory {
    [all...]
  /external/chromium_org/base/memory/
ref_counted_memory.h 20 class BASE_EXPORT RefCountedMemory
21 : public base::RefCountedThreadSafe<RefCountedMemory> {
31 bool Equals(const scoped_refptr<RefCountedMemory>& other) const;
34 friend class base::RefCountedThreadSafe<RefCountedMemory>;
35 RefCountedMemory();
36 virtual ~RefCountedMemory();
39 // An implementation of RefCountedMemory, where the ref counting does not
41 class BASE_EXPORT RefCountedStaticMemory : public RefCountedMemory {
48 // Overridden from RefCountedMemory:
61 // An implementation of RefCountedMemory, where we own our the data in
    [all...]
ref_counted_memory.cc 11 bool RefCountedMemory::Equals(
12 const scoped_refptr<RefCountedMemory>& other) const {
18 RefCountedMemory::RefCountedMemory() {}
20 RefCountedMemory::~RefCountedMemory() {}

Completed in 138 milliseconds