Lines Matching refs:msec

118 int pt_image_validate(struct pt_image *image, struct pt_mapped_section *msec,  in pt_image_validate()  argument
126 if (!image || !msec) in pt_image_validate()
133 if (section != msec->section) in pt_image_validate()
139 int pt_image_find(struct pt_image *image, struct pt_mapped_section *msec, in pt_image_find() argument
146 if (!image || !msec || !asid) in pt_image_find()
153 if (msec->section) in pt_image_find()
156 msec->section = section; in pt_image_find()
206 const struct pt_mapped_section *msec; in read_null() local
211 status = pt_msec_cache_read(NULL, &msec, &image, 0ull); in read_null()
217 status = pt_msec_cache_read(&mcache, &msec, NULL, 0ull); in read_null()
225 const struct pt_mapped_section *msec; in fill_null() local
233 status = pt_msec_cache_fill(NULL, &msec, &image, &asid, 0ull); in fill_null()
239 status = pt_msec_cache_fill(&mcache, &msec, NULL, &asid, 0ull); in fill_null()
242 status = pt_msec_cache_fill(&mcache, &msec, &image, NULL, 0ull); in fill_null()
256 section = pt_msec_section(&tfix->mcache.msec); in invalidate()
267 const struct pt_mapped_section *msec; in read_nomap() local
270 msec = NULL; in read_nomap()
272 status = pt_msec_cache_read(&tfix->mcache, &msec, &tfix->image, 0ull); in read_nomap()
274 ptu_null(msec); in read_nomap()
281 const struct pt_mapped_section *msec; in read() local
285 status = pt_msec_cache_read(&tfix->mcache, &msec, &tfix->image, 0ull); in read()
288 ptu_ptr_eq(msec, &tfix->mcache.msec); in read()
290 section = pt_msec_section(msec); in read()
298 const struct pt_mapped_section *msec; in fill_nomap() local
303 msec = NULL; in fill_nomap()
305 status = pt_msec_cache_fill(&tfix->mcache, &msec, &tfix->image, &asid, in fill_nomap()
309 section = pt_msec_section(&tfix->mcache.msec); in fill_nomap()
311 ptu_null(msec); in fill_nomap()
321 const struct pt_mapped_section *msec; in fill() local
326 status = pt_msec_cache_fill(&tfix->mcache, &msec, &tfix->image, &asid, in fill()
330 ptu_ptr_eq(msec, &tfix->mcache.msec); in fill()
332 section = pt_msec_section(msec); in fill()
363 tfix->mcache.msec.section = &tfix->section; in cfix_init()