Searched defs:linenr (Results 1 - 5 of 5) sorted by relevance

/external/oprofile/libpp/
H A Dsymbol.h33 /// 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);
/external/qemu/
H A Dqerror.c242 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, argument
315 qerr->linenr = linenr;
421 void qerror_report_internal(const char *file, int linenr, const char *func, argument
428 qerror = qerror_from_info(file, linenr, func, fmt, &va);
H A Dqerror.h29 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,
/external/oprofile/libutil++/
H A Dbfd_support.cpp220 * 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
[all...]
/external/oprofile/pp/
H A Dopannotate.cpp520 string const source_line_annotation(debug_name_id filename, size_t linenr) argument
524 count_array_t counts = samples->samples_count(filename, linenr);
538 string source_symbol_annotation(debug_name_id filename, size_t linenr) argument
540 symbol_collection const symbols = samples->find_symbol(filename, linenr);
610 for (size_t linenr = 1 ; getline(in, str) ; ++linenr) {
611 out << source_line_annotation(filename, linenr) << str
612 << source_symbol_annotation(filename, linenr)

Completed in 263 milliseconds