OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:printbuf_memappend
(Results
1 - 4
of
4
) sorted by null
/hardware/qcom/msm8998/json-c/
printbuf.h
36
* Your code should not use
printbuf_memappend
directly--use
40
printbuf_memappend
(struct printbuf *p, const char *buf, int size);
48
} else {
printbuf_memappend
(p, (bufptr), bufsize); } \
json_object.c
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)
[
all
...]
printbuf.c
69
MC_DEBUG("
printbuf_memappend
: realloc "
80
int
printbuf_memappend
(struct printbuf *p, const char *buf, int size)
function
172
printbuf_memappend
(p, t, size);
176
printbuf_memappend
(p, buf, size);
json_util.c
85
printbuf_memappend
(pb, buf, ret);
Completed in 697 milliseconds