Home | History | Annotate | Download | only in util

Lines Matching refs:ppt

1784 int find_perf_probe_point(unsigned long addr, struct perf_probe_point *ppt)
1857 ppt->line = lineno - baseline;
1859 ppt->offset = addr - (unsigned long)baseaddr;
1863 ppt->function = strdup(func);
1864 if (ppt->function == NULL) {
1870 ppt->file = strdup(fname);
1871 if (ppt->file == NULL) {
1872 if (ppt->function) {
1873 free(ppt->function);
1874 ppt->function = NULL;