• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/processor-trace/libipt/internal/include/

Lines Matching refs:iscache

120 extern int pt_iscache_init(struct pt_image_section_cache *iscache,
124 extern void pt_iscache_fini(struct pt_image_section_cache *iscache);
128 * Adds @section at @laddr to @iscache and returns its isid. If a similar
137 * Returns -pte_internal if @iscache or @section is NULL.
140 extern int pt_iscache_add(struct pt_image_section_cache *iscache,
146 * loaded at @laddr is found in @iscache.
149 * Returns -pte_internal if @iscache or @filename is NULL.
151 extern int pt_iscache_find(struct pt_image_section_cache *iscache,
162 * Returns -pte_internal if @iscache, @section, or @laddr is NULL.
163 * Returns -pte_bad_image if @iscache does not contain @isid.
165 extern int pt_iscache_lookup(struct pt_image_section_cache *iscache,
170 extern int pt_iscache_clear(struct pt_image_section_cache *iscache);
174 * Notifies @iscache that @section has been mapped.
176 * The caller guarantees that @iscache contains @section (by using @section's
177 * iscache pointer) and prevents @iscache from detaching.
179 * The caller must not lock @section to allow @iscache to map it. This function
183 * Returns -pte_internal if @iscache or @section is NULL.
186 extern int pt_iscache_notify_map(struct pt_image_section_cache *iscache,
191 * Notifies @iscache that @section's size has changed while it was mapped.
193 * The caller guarantees that @iscache contains @section (by using @section's
194 * iscache pointer) and prevents @iscache from detaching.
196 * The caller must not lock @section to allow @iscache to map it. This function
200 * Returns -pte_internal if @iscache or @section is NULL.
203 extern int pt_iscache_notify_resize(struct pt_image_section_cache *iscache,