Lines Matching refs:sym
343 if (node->sym) { in python_process_callchain()
348 PyLong_FromUnsignedLongLong(node->sym->start)); in python_process_callchain()
350 PyLong_FromUnsignedLongLong(node->sym->end)); in python_process_callchain()
352 PyInt_FromLong(node->sym->binding)); in python_process_callchain()
354 PyString_FromStringAndSize(node->sym->name, in python_process_callchain()
355 node->sym->namelen)); in python_process_callchain()
630 static int python_export_symbol(struct db_export *dbe, struct symbol *sym, in python_export_symbol() argument
634 u64 *sym_db_id = symbol__priv(sym); in python_export_symbol()
641 tuple_set_u64(t, 2, sym->start); in python_export_symbol()
642 tuple_set_u64(t, 3, sym->end); in python_export_symbol()
643 tuple_set_s32(t, 4, sym->binding); in python_export_symbol()
644 tuple_set_string(t, 5, sym->name); in python_export_symbol()
715 sym_db_id = cp->sym ? *(u64 *)symbol__priv(cp->sym) : 0; in python_export_call_path()
822 if (al->sym) { in python_process_general_event()
824 PyString_FromString(al->sym->name)); in python_process_general_event()