Lines Matching refs:Writer
37 class Writer;
161 friend class Writer;
208 // FIXME Timeline was intended to wrap Writer and Reader, but isn't actually used yet.
223 friend class Writer;
234 // Writer is thread-safe with respect to Reader, but not with respect to multiple threads
235 // calling Writer methods. If you need multi-thread safety for writing, use LockedWriter.
236 class Writer : public RefBase {
238 Writer(); // dummy nop implementation without shared memory
242 Writer(void *shared, size_t size);
243 Writer(const sp<IMemory>& iMemory, size_t size);
245 virtual ~Writer();
291 // Similar to Writer, but safe for multiple threads to call concurrently
292 class LockedWriter : public Writer {
423 // every reader reads from a writer's buffer