Lines Matching full:profiling

3  *  This code provides functions to handle gcc's profiling data format
58 * struct gcov_fn_info - profiling meta data per function
83 * struct gcov_info - profiling data per object file
112 * @info: profiling data set
121 * @info: profiling data set
129 * gcov_info_next - return next profiling data set
130 * @info: profiling data set
144 * gcov_info_link - link/add profiling data set to the list
145 * @info: profiling data set
154 * gcov_info_unlink - unlink/remove profiling data set from the list
155 * @prev: previous profiling data set
156 * @info: profiling data set
167 * gcov_info_within_module - check if a profiling data set belongs to a module
168 * @info: profiling data set
171 * Returns true if profiling data belongs module, false otherwise.
178 /* Symbolic links to be created for each profiling data file. */
206 * gcov_info_reset - reset profiling data to zero
207 * @info: profiling data set
230 * gcov_info_is_compatible - check if profiling data can be added
231 * @info1: first profiling data set
232 * @info2: second profiling data set
234 * Returns non-zero if profiling data can be added, zero otherwise.
242 * gcov_info_add - add up profiling data
243 * @dst: profiling data set to which data is added
244 * @src: profiling data set which is added
246 * Adds profiling counts of @src to @dst.
275 * gcov_info_dup - duplicate profiling data set
276 * @info: profiling data set to duplicate
346 * gcov_info_free - release memory for profiling data set duplicate
347 * @info: profiling data set duplicate to free
380 * convert_to_gcda - convert profiling data set to gcda file format
382 * @info: profiling data set to be converted