Lines Matching refs:nest_obj
1091 ucl_object_t *nest_obj = NULL, *old_obj = NULL, *new_obj = NULL; local
1208 nest_obj = ucl_object_new_full (UCL_OBJECT, params->priority);
1209 nest_obj->prev = nest_obj;
1210 nest_obj->next = NULL;
1212 ucl_array_append (old_obj, nest_obj);
1217 nest_obj = ucl_object_new_full (UCL_OBJECT,
1219 if (nest_obj == NULL) {
1228 nest_obj->prev = nest_obj;
1229 nest_obj->next = NULL;
1231 ucl_array_append (old_obj, nest_obj);
1251 nest_obj = ucl_object_new_full (UCL_OBJECT,
1253 if (nest_obj == NULL) {
1262 nest_obj->prev = nest_obj;
1263 nest_obj->next = NULL;
1266 ucl_array_append (new_obj, nest_obj);
1275 nest_obj = ucl_object_new_full (UCL_OBJECT, params->priority);
1277 if (nest_obj == NULL) {
1286 nest_obj->key = params->prefix;
1287 nest_obj->keylen = strlen (params->prefix);
1288 ucl_copy_key_trash(nest_obj);
1289 nest_obj->prev = nest_obj;
1290 nest_obj->next = NULL;
1292 container = ucl_hash_insert_object (container, nest_obj,
1299 nest_obj = old_obj;
1323 ucl_object_unref (nest_obj);
1331 st->obj = nest_obj;
1337 parser->cur_obj = nest_obj;
1345 if (params->prefix != NULL && nest_obj != NULL) {