Lines Matching refs:object_t

170 #define YYSTYPE object_t *
188 } object_t; typedef
196 object_t *objects; // internal objects in use
197 object_t *freeObjects; // internal objects that are free
213 static object_t *newObject(parser_state_t *state);
214 static void freeObject(parser_state_t *state, object_t *o);
216 static object_t *retrieveObject(parser_state_t *state, int tag);
219 static object_t *buildDictionary(parser_state_t *state, object_t *o);
220 static object_t *buildArray(parser_state_t *state, object_t *o);
221 static object_t *buildSet(parser_state_t *state, object_t *o);
222 static object_t *buildString(parser_state_t *state, object_t *o);
223 static object_t *buildSymbol(parser_state_t *state, object_t *o);
224 static object_t *buildData(parser_state_t *state, object_t *o);
225 static object_t *buildNumber(parser_state_t *state, object_t *o);
226 static object_t *buildBoolean(parser_state_t *state, object_t *o);
1746 object_t *o;
2529 object_t *object; in yylex()
2736 object_t *
2739 object_t *o; in newObject()
2745 o = malloc_type(object_t); in newObject()
2755 freeObject(parser_state_t * state, object_t *o) in freeObject()
2764 object_t *t, *o = state->objects; in cleanupObjects()
2786 free_type(object_t, t); in cleanupObjects()
2807 static object_t *
2811 object_t *o; in retrieveObject()
2831 object_t *
2832 buildDictionary(parser_state_t *state, object_t * header) in buildDictionary()
2834 object_t *o, *t; in buildDictionary()
2873 object_t *
2874 buildArray(parser_state_t *state, object_t * header) in buildArray()
2876 object_t *o, *t; in buildArray()
2913 object_t *
2914 buildSet(parser_state_t *state, object_t *header) in buildSet()
2916 object_t *o = buildArray(state, header); in buildSet()
2933 object_t *
2934 buildString(parser_state_t *state, object_t *o) in buildString()
2950 object_t *
2951 buildSymbol(parser_state_t *state, object_t *o) in buildSymbol()
2967 object_t *
2968 buildData(parser_state_t *state, object_t *o) in buildData()
2989 object_t *
2990 buildNumber(parser_state_t *state, object_t *o) in buildNumber()
3002 object_t *
3003 buildBoolean(parser_state_t *state __unused, object_t *o) in buildBoolean()