Lines Matching refs:printbuf_memappend
118 printbuf_memappend(pb, str + start_offset, pos - start_offset);
120 if(c == '\b') printbuf_memappend(pb, "\\b", 2);
121 else if(c == '\n') printbuf_memappend(pb, "\\n", 2);
122 else if(c == '\r') printbuf_memappend(pb, "\\r", 2);
123 else if(c == '\t') printbuf_memappend(pb, "\\t", 2);
124 else if(c == '\f') printbuf_memappend(pb, "\\f", 2);
125 else if(c == '"') printbuf_memappend(pb, "\\\"", 2);
126 else if(c == '\\') printbuf_memappend(pb, "\\\\", 2);
127 else if(c == '/') printbuf_memappend(pb, "\\/", 2);
135 printbuf_memappend(pb, str + start_offset, pos - start_offset);
145 printbuf_memappend(pb, str + start_offset, pos - start_offset);
629 printbuf_memappend(pb, buf, size);
665 printbuf_memappend(pb, jso->_userdata, userdata_len);