OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:quote_buf
(Results
1 - 1
of
1
) sorted by null
/external/oprofile/libop/
op_xml_out.c
173
static char * xml_quote(char const * str, char *
quote_buf
)
180
quote_buf
[pos++] = '"';
190
strncpy(
quote_buf
+ pos, "&", 5);
194
strncpy(
quote_buf
+ pos, "<", 4);
198
strncpy(
quote_buf
+ pos, ">", 4);
202
strncpy(
quote_buf
+ pos, """, 6);
206
quote_buf
[pos++] = str[i];
211
quote_buf
[pos++] = '"';
212
quote_buf
[pos++] = '\0';
213
return
quote_buf
;
220
char
quote_buf
[MAX_BUF_LEN];
local
[
all
...]
Completed in 51 milliseconds