Lines Matching refs:Writer
34 class Writer;
56 friend class Writer;
86 // FIXME Timeline was intended to wrap Writer and Reader, but isn't actually used yet.
101 friend class Writer;
112 // Writer is thread-safe with respect to Reader, but not with respect to multiple threads
113 // calling Writer methods. If you need multi-thread safety for writing, use LockedWriter.
114 class Writer : public RefBase {
116 Writer(); // dummy nop implementation without shared memory
120 Writer(size_t size, void *shared);
121 Writer(size_t size, const sp<IMemory>& iMemory);
123 virtual ~Writer() { }
153 // Similar to Writer, but safe for multiple threads to call concurrently
154 class LockedWriter : public Writer {