Lines Matching refs:object_t

67 #define YYSTYPE object_t *
84 } object_t;
92 object_t *objects; // internal objects in use
93 object_t *freeObjects; // internal objects that are free
107 static object_t *newObject(parser_state_t *state);
108 static void freeObject(parser_state_t *state, object_t *o);
110 static object_t *retrieveObject(parser_state_t *state, int tag);
113 static object_t *buildDictionary(parser_state_t *state, object_t *o);
114 static object_t *buildArray(parser_state_t *state, object_t *o);
115 static object_t *buildSet(parser_state_t *state, object_t *o);
116 static object_t *buildString(parser_state_t *state, object_t *o);
117 static object_t *buildData(parser_state_t *state, object_t *o);
118 static object_t *buildNumber(parser_state_t *state, object_t *o);
119 static object_t *buildBoolean(parser_state_t *state, object_t *o);
657 object_t *object;
847 object_t *
850 object_t *o;
856 o = (object_t *)malloc(sizeof(object_t));
858 bzero(o, sizeof(object_t));
867 freeObject(parser_state_t * state, object_t *o)
876 object_t *t, *o = state->objects;
919 static object_t *
923 object_t *o;
941 object_t *
942 buildDictionary(parser_state_t *state, object_t * header)
944 object_t *o, *t;
981 object_t *
982 buildArray(parser_state_t *state, object_t * header)
984 object_t *o, *t;
1019 object_t *
1020 buildSet(parser_state_t *state, object_t *header)
1022 object_t *o = buildArray(state, header);
1035 object_t *
1036 buildString(parser_state_t *state, object_t *o)
1050 object_t *
1051 buildData(parser_state_t *state, object_t *o)
1068 object_t *
1069 buildNumber(parser_state_t *state, object_t *o)
1079 object_t *
1080 buildBoolean(parser_state_t *state __unused, object_t *o)