Lines Matching refs:ret

170 	  simple_object_read *ret;  in simple_object_start_read()  local
172 ret = XNEW (simple_object_read); in simple_object_start_read()
173 ret->descriptor = descriptor; in simple_object_start_read()
174 ret->offset = offset; in simple_object_start_read()
175 ret->functions = format_functions[i]; in simple_object_start_read()
176 ret->data = data; in simple_object_start_read()
177 return ret; in simple_object_start_read()
259 simple_object_attributes *ret; in simple_object_fetch_attributes() local
264 ret = XNEW (simple_object_attributes); in simple_object_fetch_attributes()
265 ret->functions = sobj->functions; in simple_object_fetch_attributes()
266 ret->data = data; in simple_object_fetch_attributes()
267 return ret; in simple_object_fetch_attributes()
311 simple_object_write *ret; in simple_object_start_write() local
316 ret = XNEW (simple_object_write); in simple_object_start_write()
317 ret->functions = attrs->functions; in simple_object_start_write()
318 ret->segment_name = xstrdup (segment_name); in simple_object_start_write()
319 ret->sections = NULL; in simple_object_start_write()
320 ret->last_section = NULL; in simple_object_start_write()
321 ret->data = data; in simple_object_start_write()
322 return ret; in simple_object_start_write()
333 simple_object_write_section *ret; in simple_object_write_create_section() local
335 ret = XNEW (simple_object_write_section); in simple_object_write_create_section()
336 ret->next = NULL; in simple_object_write_create_section()
337 ret->name = xstrdup (name); in simple_object_write_create_section()
338 ret->align = align; in simple_object_write_create_section()
339 ret->buffers = NULL; in simple_object_write_create_section()
340 ret->last_buffer = NULL; in simple_object_write_create_section()
344 sobj->sections = ret; in simple_object_write_create_section()
345 sobj->last_section = ret; in simple_object_write_create_section()
349 sobj->last_section->next = ret; in simple_object_write_create_section()
350 sobj->last_section = ret; in simple_object_write_create_section()
353 return ret; in simple_object_write_create_section()