Searched refs:JSONLexer (Results 1 – 4 of 4) sorted by relevance
/external/qemu/ |
D | json-lexer.h | 30 typedef struct JSONLexer JSONLexer; typedef 32 typedef void (JSONLexerEmitter)(JSONLexer *, QString *, JSONTokenType, int x, int y); 34 struct JSONLexer struct 42 void json_lexer_init(JSONLexer *lexer, JSONLexerEmitter func); argument 44 int json_lexer_feed(JSONLexer *lexer, const char *buffer, size_t size); 46 int json_lexer_flush(JSONLexer *lexer); 48 void json_lexer_destroy(JSONLexer *lexer);
|
D | json-lexer.c | 275 void json_lexer_init(JSONLexer *lexer, JSONLexerEmitter func) in json_lexer_init() 282 static int json_lexer_feed_char(JSONLexer *lexer, char ch) in json_lexer_feed_char() 321 int json_lexer_feed(JSONLexer *lexer, const char *buffer, size_t size) in json_lexer_feed() 337 int json_lexer_flush(JSONLexer *lexer) in json_lexer_flush() 342 void json_lexer_destroy(JSONLexer *lexer) in json_lexer_destroy()
|
D | json-streamer.h | 23 JSONLexer lexer;
|
D | json-streamer.c | 21 static void json_message_process_token(JSONLexer *lexer, QString *token, JSONTokenType type, int x,… in json_message_process_token()
|