Lines Matching refs:temp
210 struct value *temp = name; in get_java_utf8_name() local
213 temp = value_struct_elt (&temp, NULL, "length", NULL, "structure"); in get_java_utf8_name()
214 name_length = (int) value_as_long (temp); in get_java_utf8_name()
215 data_addr = VALUE_ADDRESS (temp) + value_offset (temp) in get_java_utf8_name()
216 + TYPE_LENGTH (value_type (temp)); in get_java_utf8_name()
255 struct value *temp; in type_from_class() local
287 temp = clas; in type_from_class()
288 sig = value_struct_elt (&temp, NULL, "method_count", NULL, "structure"); in type_from_class()
294 temp = clas; in type_from_class()
295 utf8_name = value_struct_elt (&temp, NULL, "name", NULL, "structure"); in type_from_class()
320 temp = clas; in type_from_class()
322 temp = value_struct_elt (&temp, NULL, "methods", NULL, "structure"); in type_from_class()
323 deprecated_set_value_type (temp, lookup_pointer_type (value_type (clas))); in type_from_class()
324 TYPE_TARGET_TYPE (type) = type_from_class (temp); in type_from_class()
339 struct value *temp; in java_link_class_type() local
358 temp = clas; in java_link_class_type()
359 temp = value_struct_elt (&temp, NULL, "superclass", NULL, "structure"); in java_link_class_type()
368 tsuper = type_from_class (temp); in java_link_class_type()
373 temp = clas; in java_link_class_type()
374 ninterfaces = value_as_long (value_struct_elt (&temp, NULL, "interface_len", NULL, "structure")); in java_link_class_type()
377 temp = clas; in java_link_class_type()
378 nfields = value_as_long (value_struct_elt (&temp, NULL, "field_count", NULL, "structure")); in java_link_class_type()
418 temp = clas; in java_link_class_type()
419 temp = value_struct_elt (&temp, NULL, "size_in_bytes", NULL, "structure"); in java_link_class_type()
420 TYPE_LENGTH (type) = value_as_long (temp); in java_link_class_type()
437 temp = clas; in java_link_class_type()
438 fields = value_struct_elt (&temp, NULL, "fields", NULL, "structure"); in java_link_class_type()
446 temp = field; in java_link_class_type()
447 temp = value_struct_elt (&temp, NULL, "name", NULL, "structure"); in java_link_class_type()
449 get_java_utf8_name (&objfile->objfile_obstack, temp); in java_link_class_type()
450 temp = field; in java_link_class_type()
451 accflags = value_as_long (value_struct_elt (&temp, NULL, "accflags", in java_link_class_type()
453 temp = field; in java_link_class_type()
454 temp = value_struct_elt (&temp, NULL, "info", NULL, "structure"); in java_link_class_type()
455 boffset = value_as_long (value_struct_elt (&temp, NULL, "boffset", in java_link_class_type()
480 temp = field; in java_link_class_type()
481 temp = value_struct_elt (&temp, NULL, "type", NULL, "structure"); in java_link_class_type()
482 ftype = type_from_class (temp); in java_link_class_type()
489 temp = clas; in java_link_class_type()
490 nmethods = value_as_long (value_struct_elt (&temp, NULL, "method_count", in java_link_class_type()
507 temp = clas; in java_link_class_type()
508 methods = value_struct_elt (&temp, NULL, "methods", NULL, "structure"); in java_link_class_type()
518 temp = method; in java_link_class_type()
519 temp = value_struct_elt (&temp, NULL, "name", NULL, "structure"); in java_link_class_type()
520 mname = get_java_utf8_name (&objfile->objfile_obstack, temp); in java_link_class_type()
889 struct value *temp = clas; in evaluate_subexp_java() local
891 temp = value_struct_elt (&temp, NULL, "methods", in evaluate_subexp_java()
893 deprecated_set_value_type (temp, value_type (clas)); in evaluate_subexp_java()
894 el_type = type_from_class (temp); in evaluate_subexp_java()