HomeSort by relevance Sort by last modified time
    Searched full:linenr (Results 1 - 25 of 27) sorted by null

1 2

  /external/oprofile/libpp/
sample_container.cpp 88 lower.file_loc.linenr = 0;
89 upper.file_loc.linenr = INT_MAX;
114 size_t linenr) const
121 sample.file_loc.linenr = linenr;
symbol_container.cpp 41 symbol_container::find(debug_name_id filename, size_t linenr) const
47 symbol.sample.file_loc.linenr = linenr;
67 symbol.sample.file_loc.linenr = 0;
71 symbol.sample.file_loc.linenr = (unsigned int)size_t(-1);
symbol.h 33 /// A simple container for a fileno:linenr location.
35 file_location() : linenr(0) {}
39 unsigned int linenr; member in struct:file_location
44 (filename == rhs.filename && linenr < rhs.linenr);
profile_container.cpp 103 symb_entry.sample.file_loc.linenr = 0;
107 symb_entry.sample.file_loc.linenr)) {
147 sample.file_loc.linenr = 0;
151 sample.file_loc.linenr)) {
263 profile_container::find_symbol(debug_name_id filename, size_t linenr) const
265 return symbols->find(filename, linenr);
289 size_t linenr) const
291 return samples->accumulate_samples(filename, linenr);
profile_container.h 74 /// Find the symbols from its filename, linenr, return an empty
77 size_t linenr) const;
123 /// Get the samples count which belongs to filename, linenr. Return
126 size_t linenr) const;
169 /// provide also a sort order on (filename, linenr)
callgraph_container.h 110 * @param debug_info true if we must record linenr information
141 * @param debug_info record linenr debug information
sample_container.h 51 count_array_t accumulate_samples(debug_name_id, size_t linenr) const;
symbol_container.h 50 symbol_collection const find(debug_name_id filename, size_t linenr) const;
symbol_sort.cpp 76 ret = f1.linenr - f2.linenr;
format_output.cpp 49 out << filename << ":" << floc.linenr;
108 format_map[ff_linenr_info] = field_description(28, "linenr info", &formatter::format_linenr_info);
callgraph_container.cpp 233 if (b.get_linenr(i, start, filename, loc.linenr))
  /external/oprofile/libutil++/
bfd_support.cpp 220 * linenr info, if we can't get a valid line number. Problem uncovered
222 * application, the number of failure to retrieve linenr info from 835
232 unsigned int linenr; local
249 &linenr);
251 if (ret && cfilename && function && linenr != 0
254 *line = linenr;
614 unsigned int linenr = 0; local
646 &function, &linenr);
653 * but if the linenr is non-zero in the inline case, it is the correct
656 if (linenr == 0 && !is_correct_function(function, sym.name())
    [all...]
op_bfd.h 132 * @param linenr output parameter to store linenr.
134 * Retrieve the relevant finename:linenr information for the sym_idx
137 * retrieve the linenr and so can return zero in linenr
140 std::string & filename, unsigned int & linenr) const;
op_bfd.cpp 369 string & source_filename, unsigned int & linenr) const
383 linenr = info.line;
  /external/qemu/
qerror.c 242 fprintf(stderr, "\nqerror: call at %s:%d\n", qerr->file, qerr->linenr);
300 * - linenr the line number of where the error occurred
308 QError *qerror_from_info(const char *file, int linenr, const char *func,
315 qerr->linenr = linenr;
421 void qerror_report_internal(const char *file, int linenr, const char *func,
428 qerror = qerror_from_info(file, linenr, func, fmt, &va);
qerror.h 29 int linenr; member in struct:QError
36 QError *qerror_from_info(const char *file, int linenr, const char *func,
40 void qerror_report_internal(const char *file, int linenr, const char *func,
sysemu.h 83 void qemu_error_internal(const char *file, int linenr, const char *func,
monitor.c     [all...]
  /external/oprofile/pp/
opannotate.cpp 514 string const source_line_annotation(debug_name_id filename, size_t linenr)
518 count_array_t counts = samples->samples_count(filename, linenr);
532 string source_symbol_annotation(debug_name_id filename, size_t linenr)
534 symbol_collection const symbols = samples->find_symbol(filename, linenr);
604 for (size_t linenr = 1 ; getline(in, str) ; ++linenr) {
605 out << source_line_annotation(filename, linenr) << str
606 << source_symbol_annotation(filename, linenr)
  /external/oprofile/
TODO 188 o document gcc 2.95 and linenr info problems especially for inline functions
ChangeLog-2007 60 with missing debug information, if linenr != 0, don't call it since
ChangeLog-2004 687 * libpp/callgraph_container.cpp: improve readability, add linenr
ChangeLog-2005 298 * libpp/symbol_container.h: find symbol by source filename, linenr :
ChangeLog-2001 280 * pp/oprofpp.cpp: allow to use --output-linenr-info with
    [all...]
ChangeLog-2003     [all...]

Completed in 405 milliseconds

1 2