Lines Matching refs:curr_obj_node
266 obj_node* curr_obj_node; in CLG_() local
274 curr_obj_node = obj_table[objname_hash]; in CLG_()
275 while (NULL != curr_obj_node && in CLG_()
276 VG_(strcmp)(obj_name, curr_obj_node->name) != 0) { in CLG_()
277 curr_obj_node = curr_obj_node->next; in CLG_()
279 if (NULL == curr_obj_node) { in CLG_()
280 obj_table[objname_hash] = curr_obj_node = in CLG_()
284 return curr_obj_node; in CLG_()
307 file_node* CLG_(get_file_node)(obj_node* curr_obj_node, in CLG_()
323 curr_file_node = curr_obj_node->files[filename_hash]; in CLG_()
329 curr_obj_node->files[filename_hash] = curr_file_node = in CLG_()
330 new_file_node(filename, curr_obj_node, in CLG_()
331 curr_obj_node->files[filename_hash]); in CLG_()