/prebuilts/go/darwin-x86/src/net/http/ |
header.go | 94 WriteString(string) (int, error) 97 // stringWriter implements WriteString on a Writer. 102 func (w stringWriter) WriteString(s string) (n int, err error) { 158 if _, err := ws.WriteString(s); err != nil {
|
/prebuilts/go/linux-x86/src/net/http/ |
header.go | 94 WriteString(string) (int, error) 97 // stringWriter implements WriteString on a Writer. 102 func (w stringWriter) WriteString(s string) (n int, err error) { 158 if _, err := ws.WriteString(s); err != nil {
|
/system/bt/osi/src/ |
metrics_linux.cc | 179 void BluetoothMetricsLogger::WriteString(std::string* serialized, bool clear) {
|
metrics.cc | 399 void BluetoothMetricsLogger::WriteString(std::string* serialized, bool clear) { 415 this->WriteString(serialized, clear);
|
/art/compiler/debug/dwarf/ |
debug_info_entry_writer.h | 166 void WriteString(Attribute attrib, const char* value) {
|
/external/libbrillo/brillo/http/ |
http_connection_curl_unittest.cc | 93 CURLcode code = WriteString(header_callback, line); 99 return WriteString(write_callback, response_body); 104 CURLcode WriteString(ReadWriteCallback* callback, const std::string& str) {
|
/external/webrtc/webrtc/base/ |
bytebuffer.cc | 178 void ByteBuffer::WriteString(const std::string& val) {
|
/external/webrtc/webrtc/libjingle/xmpp/ |
rostermodule_unittest.cc | 32 WriteString(std::ostream& os, const std::string& str) { 118 WriteString(os, presence->jid().Str()); 124 WriteString(os, presence->status()); 136 WriteString(os, contact->jid().Str()); 138 WriteString(os, contact->name()); 144 WriteString(os, contact->GetGroup(i));
|
/prebuilts/go/darwin-x86/src/bytes/ |
buffer.go | 141 // WriteString appends the contents of s to the buffer, growing the buffer as 143 // buffer becomes too large, WriteString will panic with ErrTooLarge. 144 func (b *Buffer) WriteString(s string) (n int, err error) {
|
/prebuilts/go/darwin-x86/src/os/exec/ |
exec.go | 582 func (c *closeOnce) WriteString(s string) (int, error) { 584 n, err := c.File.WriteString(s) 701 buf.WriteString("\n... omitting ") 702 buf.WriteString(strconv.FormatInt(w.skipped, 10)) 703 buf.WriteString(" bytes ...\n")
|
/prebuilts/go/darwin-x86/src/os/ |
file.go | 197 // WriteString is like Write, but writes the contents of string s rather than 199 func (f *File) WriteString(s string) (n int, err error) {
|
/prebuilts/go/linux-x86/src/bytes/ |
buffer.go | 141 // WriteString appends the contents of s to the buffer, growing the buffer as 143 // buffer becomes too large, WriteString will panic with ErrTooLarge. 144 func (b *Buffer) WriteString(s string) (n int, err error) {
|
/prebuilts/go/linux-x86/src/os/exec/ |
exec.go | 582 func (c *closeOnce) WriteString(s string) (int, error) { 584 n, err := c.File.WriteString(s) 701 buf.WriteString("\n... omitting ") 702 buf.WriteString(strconv.FormatInt(w.skipped, 10)) 703 buf.WriteString(" bytes ...\n")
|
/prebuilts/go/linux-x86/src/os/ |
file.go | 197 // WriteString is like Write, but writes the contents of string s rather than 199 func (f *File) WriteString(s string) (n int, err error) {
|
/external/lzma/CPP/Windows/ |
FileLink.cpp | 93 void WriteString(Byte *dest, const wchar_t *path)
171 WriteString(p + subOffs, k_LinkPrefix);
172 WriteString(p + subOffs + add_Prefix_Len * 2, path);
174 WriteString(p + printOffs, path);
|
/external/protobuf/csharp/src/Google.Protobuf/ |
CodedOutputStream.cs | 267 public void WriteString(string value)
|
/external/protobuf/src/google/protobuf/ |
wire_format_lite.cc | 191 output->WriteString(temp); 411 void WireFormatLite::WriteString(int field_number, const string& value, 417 output->WriteString(value); 433 output->WriteString(value);
|
/external/skia/src/pdf/ |
SkPDFUtils.cpp | 446 void SkPDFUtils::WriteString(SkWStream* wStream, const char* cin, size_t len) {
|
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
writer.h | 125 return WriteString(str, length);
244 bool WriteString(const Ch* str, SizeType length) {
|
/prebuilts/go/darwin-x86/src/bufio/ |
bufio.go | 650 return b.WriteString(string(r)) 658 // WriteString writes a string. 662 func (b *Writer) WriteString(s string) (int, error) {
|
/prebuilts/go/darwin-x86/src/encoding/gob/ |
encode.go | 57 func (e *encBuffer) WriteString(s string) { 262 state.b.WriteString(s) 415 state.b.WriteString(name)
|
/prebuilts/go/darwin-x86/src/io/ |
io.go | 279 // stringWriter is the interface that wraps the WriteString method. 281 WriteString(s string) (n int, err error) 284 // WriteString writes the contents of the string s to w, which accepts a slice of bytes. 285 // If w implements a WriteString method, it is invoked directly. 287 func WriteString(w Writer, s string) (n int, err error) { 289 return sw.WriteString(s)
|
/prebuilts/go/linux-x86/src/bufio/ |
bufio.go | 650 return b.WriteString(string(r)) 658 // WriteString writes a string. 662 func (b *Writer) WriteString(s string) (int, error) {
|
/prebuilts/go/linux-x86/src/encoding/gob/ |
encode.go | 57 func (e *encBuffer) WriteString(s string) { 262 state.b.WriteString(s) 415 state.b.WriteString(name)
|
/prebuilts/go/linux-x86/src/io/ |
io.go | 279 // stringWriter is the interface that wraps the WriteString method. 281 WriteString(s string) (n int, err error) 284 // WriteString writes the contents of the string s to w, which accepts a slice of bytes. 285 // If w implements a WriteString method, it is invoked directly. 287 func WriteString(w Writer, s string) (n int, err error) { 289 return sw.WriteString(s)
|