Lines Matching full:records
35 struct memtrack_record *records;
73 free(p->types[i].records);
86 ret = module->getMemory(module, pid, type, t->records, &num_records);
92 /* Need more records than allocated */
93 free(t->records);
94 t->records = calloc(sizeof(*t->records), num_records);
95 if (!t->records) {
107 * make sure no records have invalid flags set
111 * make sure there are not overlapping SHARED and SHARED_PSS records
150 if ((p->types[type].records[j].flags & flags) == flags) {
151 sum += p->types[type].records[j].size_in_bytes;