Lines Matching refs:sym
344 if (node->sym) { in python_process_callchain()
349 PyLong_FromUnsignedLongLong(node->sym->start)); in python_process_callchain()
351 PyLong_FromUnsignedLongLong(node->sym->end)); in python_process_callchain()
353 PyInt_FromLong(node->sym->binding)); in python_process_callchain()
355 PyString_FromStringAndSize(node->sym->name, in python_process_callchain()
356 node->sym->namelen)); in python_process_callchain()
631 static int python_export_symbol(struct db_export *dbe, struct symbol *sym, in python_export_symbol() argument
635 u64 *sym_db_id = symbol__priv(sym); in python_export_symbol()
642 tuple_set_u64(t, 2, sym->start); in python_export_symbol()
643 tuple_set_u64(t, 3, sym->end); in python_export_symbol()
644 tuple_set_s32(t, 4, sym->binding); in python_export_symbol()
645 tuple_set_string(t, 5, sym->name); in python_export_symbol()
716 sym_db_id = cp->sym ? *(u64 *)symbol__priv(cp->sym) : 0; in python_export_call_path()
823 if (al->sym) { in python_process_general_event()
825 PyString_FromString(al->sym->name)); in python_process_general_event()