Home | History | Annotate | Download | only in opjitconv

Lines Matching defs:rec

32 	struct jr_code_load const * rec = ptr_arg;
35 end = rec->code_addr ? ptr + size : NULL;
41 ptr += sizeof(*rec);
46 entry->code = rec->code_addr ? ptr : NULL;
47 entry->vma = rec->vma;
48 entry->code_size = rec->code_size;
50 entry->life_start = rec->timestamp;
63 rec_totalsize = sizeof(*rec) + strlen(entry->symbol_name) + 1 + entry->code_size;
88 struct jr_code_unload const * rec = ptr;
92 rec->vma, rec->timestamp);
99 if (rec->timestamp > 0 && rec->vma != 0) {
101 if (entry->vma == rec->vma &&
103 entry->life_end = rec->timestamp;
119 struct jr_code_debug_info const * rec = ptr;
123 debug_line->data = rec;
125 debug_line->life_start = rec->timestamp;
141 struct jr_prefix const * rec = ptr;
143 while ((void *)rec + sizeof(struct jr_prefix) < end) {
144 if (((void *) rec + rec->total_size) > end) {
150 switch (rec->id) {
152 if (parse_code_load(rec, rec->total_size, end_time)) {
159 parse_code_unload(rec, end_time);
167 if (rec->total_size == 0) {
175 parse_code_debug_info(rec, end, end_time);
185 rec = (void *)rec + rec->total_size;