/frameworks/av/services/audioflinger/ |
FastThreadState.h | 47 NBLog::Writer* mNBLogWriter; // non-blocking logger
|
FastThread.h | 44 virtual void setLog(NBLog::Writer *logWriter __unused) { } 84 NBLog::Writer mDummyLogWriter; 85 NBLog::Writer* mLogWriter;
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
WriterToASCI.java | 25 import java.io.Writer; 39 class WriterToASCI extends Writer implements WriterChain 46 * Create an unbuffered ASCII writer. 140 * @return reference to the result stream, or null of only a writer was 149 * Get the writer that this writer directly chains to. 151 public Writer getWriter()
|
/external/emma/core/java12/com/vladium/emma/report/html/doc/ |
HTMLWriter.java | 12 import java.io.Writer; 30 public HTMLWriter (final Writer out) 116 private Writer m_out;
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/ |
XMLDocument.java | 19 import java.io.Writer; 39 * Writes a new document to the given writer. The document might contain a 52 * @param writer 53 * writer for content output 55 * in case of problems with the writer 59 final boolean standalone, final Writer writer) throws IOException { 60 super(writer, rootnode); 61 writeHeader(rootnode, pubId, system, encoding, standalone, writer); 82 * in case of problems with the writer [all...] |
/external/llvm/lib/DebugInfo/PDB/Raw/ |
InfoStream.cpp | 79 StreamWriter Writer(*Stream); 86 if (auto EC = Writer.writeObject(H)) 89 return NamedStreams.commit(Writer);
|
NameMap.cpp | 148 Error NameMap::commit(codeview::StreamWriter &Writer) { 149 if (auto EC = Writer.writeInteger(0U)) // Number of bytes in table 152 if (auto EC = Writer.writeInteger(0U)) // Hash Size 155 if (auto EC = Writer.writeInteger(0U)) // Max Number of Strings 158 if (auto EC = Writer.writeInteger(0U)) // Num Present Words 161 if (auto EC = Writer.writeInteger(0U)) // Num Deleted Words
|
/external/proguard/src/proguard/io/ |
DataEntryRewriter.java | 58 Writer writer = new BufferedWriter(new OutputStreamWriter(outputStream)); local 60 copyData(reader, writer); 62 writer.flush(); 69 * writer. 72 Writer writer) 97 writeUpdatedWord(writer, word.toString()); 101 writer.write(c); 106 writeUpdatedWord(writer, word.toString()) [all...] |
/libcore/ojluni/src/main/java/java/io/ |
BufferedWriter.java | 42 * <p> In general, a Writer sends its output immediately to the underlying 44 * to wrap a BufferedWriter around any Writer whose write() operations may be 66 public class BufferedWriter extends Writer { 68 private Writer out; 85 * @param out A Writer 87 public BufferedWriter(Writer out) { 95 * @param out A Writer 100 public BufferedWriter(Writer out, int sz) { 209 * method in the {@linkplain java.io.Writer#write(java.lang.String,int,int) 264 try (Writer w = out) [all...] |
/external/llvm/unittests/Support/ |
EndianStreamTest.cpp | 24 endian::Writer<little> LE(OS); 39 endian::Writer<big> BE(OS); 55 endian::Writer<little> LE(OS); 70 endian::Writer<big> BE(OS); 85 endian::Writer<little> LE(OS); 104 endian::Writer<big> BE(OS); 123 endian::Writer<little> LE(OS); 142 endian::Writer<big> BE(OS); 161 endian::Writer<little> LE(OS); 176 endian::Writer<little> LE(OS) [all...] |
/external/smali/util/src/main/java/org/jf/util/ |
IndentingWriter.java | 32 import java.io.Writer; 34 public class IndentingWriter extends Writer { 35 protected final Writer writer; field in class:IndentingWriter 41 public IndentingWriter(Writer writer) { 42 this.writer = writer; 47 writer.write(' '); 54 writer.write(newLine) [all...] |
WrappedIndentingWriter.java | 36 import java.io.Writer; 39 * Writer that wraps another writer and passes width-limited and 66 * @param out non-null; writer to send final output to 71 public WrappedIndentingWriter(Writer out, int width, String prefix) { 96 * @param out non-null; writer to send final output to 100 public WrappedIndentingWriter(Writer out, int width) {
|
/build/soong/ui/build/ |
context.go | 29 Stdout() io.Writer 30 Stderr() io.Writer 36 func (StdioImpl) Stdout() io.Writer { return os.Stdout } 37 func (StdioImpl) Stderr() io.Writer { return os.Stderr } 43 stdout io.Writer 44 stderr io.Writer 47 func NewCustomStdio(stdin io.Reader, stdout, stderr io.Writer) StdioInterface { 52 func (c customStdio) Stdout() io.Writer { return c.stdout } 53 func (c customStdio) Stderr() io.Writer { return c.stderr }
|
/build/soong/third_party/zip/ |
writer.go | 18 // Writer implements a zip file writer. 19 type Writer struct { 32 // NewWriter returns a new Writer writing a zip file to w. 33 func NewWriter(w io.Writer) *Writer { 34 return &Writer{cw: &countWriter{w: bufio.NewWriter(w)}} 38 // underlying writer. It should be used when the zip data is appended to an 41 func (w *Writer) SetOffset(n int64) { 48 // Flush flushes any buffered data to the underlying writer [all...] |
/prebuilts/go/darwin-x86/src/log/syslog/ |
syslog.go | 75 // A Writer is a connection to a syslog server. 76 type Writer struct { 104 // write to the returned writer sends a log message with the given 106 func New(priority Priority, tag string) (*Writer, error) { 112 // writer sends a log message with the given facility, severity and 117 func Dial(network, raddr string, priority Priority, tag string) (*Writer, error) { 127 w := &Writer{ 147 func (w *Writer) connect() (err error) { 173 func (w *Writer) Write(b []byte) (int, error) { 178 func (w *Writer) Close() error [all...] |
/prebuilts/go/linux-x86/src/log/syslog/ |
syslog.go | 75 // A Writer is a connection to a syslog server. 76 type Writer struct { 104 // write to the returned writer sends a log message with the given 106 func New(priority Priority, tag string) (*Writer, error) { 112 // writer sends a log message with the given facility, severity and 117 func Dial(network, raddr string, priority Priority, tag string) (*Writer, error) { 127 w := &Writer{ 147 func (w *Writer) connect() (err error) { 173 func (w *Writer) Write(b []byte) (int, error) { 178 func (w *Writer) Close() error [all...] |
/external/caliper/caliper/src/main/java/com/google/caliper/bridge/ |
OpenedSocket.java | 60 return new OpenedSocket(new Reader(input), new Writer(output)); 64 private final Writer writer; field in class:OpenedSocket 67 Writer objectOutputStream) { 69 this.writer = objectOutputStream; 76 public Writer writer() { method in class:OpenedSocket 77 return writer; 107 public static final class Writer implements Closeable, Flushable { 110 Writer(ObjectOutputStream output) [all...] |
/external/llvm/include/llvm/MC/ |
MCObjectWriter.h | 1 //===-- llvm/MC/MCObjectWriter.h - Object File Writer Interface -*- C++ -*-===// 32 /// The object writer contains a few callbacks used by the assembler to allow 33 /// the object writer to modify the assembler data structures at appropriate 34 /// points. Once assembly is complete, the object writer is given the 38 /// The object writer also contains a number of helper methods for writing 130 support::endian::Writer<support::little>(*OS).write(Value); 134 support::endian::Writer<support::little>(*OS).write(Value); 138 support::endian::Writer<support::little>(*OS).write(Value); 142 support::endian::Writer<support::big>(*OS).write(Value); 146 support::endian::Writer<support::big>(*OS).write(Value) [all...] |
/prebuilts/go/darwin-x86/src/testing/iotest/ |
logger.go | 14 w io.Writer 27 // NewWriteLogger returns a writer that behaves like w except 30 func NewWriteLogger(prefix string, w io.Writer) io.Writer {
|
/prebuilts/go/linux-x86/src/testing/iotest/ |
logger.go | 14 w io.Writer 27 // NewWriteLogger returns a writer that behaves like w except 30 func NewWriteLogger(prefix string, w io.Writer) io.Writer {
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
IndentingWriter.java | 21 import java.io.Writer; 24 * Writer that wraps another writer and passes width-limited and 51 * @param out {@code non-null;} writer to send final output to 56 public IndentingWriter(Writer out, int width, String prefix) { 81 * @param out {@code non-null;} writer to send final output to 85 public IndentingWriter(Writer out, int width) {
|
/dalvik/dx/src/com/android/dx/util/ |
IndentingWriter.java | 21 import java.io.Writer; 24 * Writer that wraps another writer and passes width-limited and 51 * @param out {@code non-null;} writer to send final output to 56 public IndentingWriter(Writer out, int width, String prefix) { 81 * @param out {@code non-null;} writer to send final output to 85 public IndentingWriter(Writer out, int width) {
|
/external/clang/include/clang/Frontend/ |
PCHContainerOperations.h | 99 void registerWriter(std::unique_ptr<PCHContainerWriter> Writer) { 100 Writers[Writer->getFormat()] = std::move(Writer);
|
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
writer.h | 37 //! JSON writer
38 /*! Writer implements the concept Handler.
41 User may programmatically calls the functions of a writer to generate JSON text.
43 On the other side, a writer can also be passed to objects that generates events,
54 class Writer {
64 Writer(OutputStream& os, StackAllocator* stackAllocator = 0, size_t levelDepth = kDefaultLevelDepth) :
68 Writer(StackAllocator* allocator = 0, size_t levelDepth = kDefaultLevelDepth) :
71 //! Reset the writer with a new stream.
73 This function reset the writer with a new stream and default settings,
74 in order to make a Writer object reusable for output multiple JSONs. [all...] |
/external/llvm/unittests/ProfileData/ |
InstrProfTest.cpp | 45 InstrProfWriter Writer; 48 void SetUp() { Writer.setOutputSparse(false); } 58 void SetUp() { Writer.setOutputSparse(true); } 63 void SetUp() { Writer.setOutputSparse(GetParam()); } 67 auto Profile = Writer.writeBuffer(); 74 NoError(Writer.addRecord(std::move(Record))); 75 auto Profile = Writer.writeBuffer(); 93 NoError(Writer.addRecord(std::move(Record1))); 94 NoError(Writer.addRecord(std::move(Record2))); 95 auto Profile = Writer.writeBuffer() [all...] |