Lines Matching full:profiling
3 * This code provides functions to handle gcc's profiling data format
56 * struct gcov_fn_info - profiling meta data per function
81 * struct gcov_info - profiling data per object file
110 * @info: profiling data set
119 * @info: profiling data set
127 * gcov_info_next - return next profiling data set
128 * @info: profiling data set
142 * gcov_info_link - link/add profiling data set to the list
143 * @info: profiling data set
152 * gcov_info_unlink - unlink/remove profiling data set from the list
153 * @prev: previous profiling data set
154 * @info: profiling data set
165 * gcov_info_within_module - check if a profiling data set belongs to a module
166 * @info: profiling data set
169 * Returns true if profiling data belongs module, false otherwise.
176 /* Symbolic links to be created for each profiling data file. */
204 * gcov_info_reset - reset profiling data to zero
205 * @info: profiling data set
228 * gcov_info_is_compatible - check if profiling data can be added
229 * @info1: first profiling data set
230 * @info2: second profiling data set
232 * Returns non-zero if profiling data can be added, zero otherwise.
240 * gcov_info_add - add up profiling data
241 * @dst: profiling data set to which data is added
242 * @src: profiling data set which is added
244 * Adds profiling counts of @src to @dst.
273 * gcov_info_dup - duplicate profiling data set
274 * @info: profiling data set to duplicate
344 * gcov_info_free - release memory for profiling data set duplicate
345 * @info: profiling data set duplicate to free
378 * convert_to_gcda - convert profiling data set to gcda file format
380 * @info: profiling data set to be converted