Lines Matching full:profiling

3  *  This code provides functions to handle gcc's profiling data format
54 * struct gcov_fn_info - profiling meta data per function
79 * struct gcov_info - profiling data per object file
108 * @info: profiling data set
117 * @info: profiling data set
125 * gcov_info_next - return next profiling data set
126 * @info: profiling data set
140 * gcov_info_link - link/add profiling data set to the list
141 * @info: profiling data set
150 * gcov_info_unlink - unlink/remove profiling data set from the list
151 * @prev: previous profiling data set
152 * @info: profiling data set
163 * gcov_info_within_module - check if a profiling data set belongs to a module
164 * @info: profiling data set
167 * Returns true if profiling data belongs module, false otherwise.
174 /* Symbolic links to be created for each profiling data file. */
202 * gcov_info_reset - reset profiling data to zero
203 * @info: profiling data set
226 * gcov_info_is_compatible - check if profiling data can be added
227 * @info1: first profiling data set
228 * @info2: second profiling data set
230 * Returns non-zero if profiling data can be added, zero otherwise.
238 * gcov_info_add - add up profiling data
239 * @dst: profiling data set to which data is added
240 * @src: profiling data set which is added
242 * Adds profiling counts of @src to @dst.
271 * gcov_info_dup - duplicate profiling data set
272 * @info: profiling data set to duplicate
342 * gcov_info_free - release memory for profiling data set duplicate
343 * @info: profiling data set duplicate to free
376 * convert_to_gcda - convert profiling data set to gcda file format
378 * @info: profiling data set to be converted