Lines Matching refs:ret
32 ret = libhiperf_report.EchoLoopBack(b'123')
34 print("\nfrom Python EchoLoopBack: ", ret)
36 ret = libhiperf_report.EchoLoopBack(b'test')
38 print("\nfrom Python EchoLoopBack: ", ret)
40 ret = libhiperf_report.EchoLoopBack(b'test123')
42 print("\nfrom Python EchoLoopBack: ", ret)
44 ret = libhiperf_report.EchoLoopBack(b'')
46 print("\nfrom Python EchoLoopBack: ", ret)
48 ret = libhiperf_report.EchoLoopBack(None)
50 print("\nfrom Python EchoLoopBack: ", ret)
52 ret = libhiperf_report.Report(b'perf.data', b'report.txt', b'-s')
53 print("\nfrom Python Report: ", ret)
55 ret = libhiperf_report.SetDebug(True)
56 print("\nfrom Python SetDebug: ", ret)
58 ret = libhiperf_report.ReportJson(b'perf.data', b'json.txt')
59 print("\nfrom Python ReportJson: ", ret)
61 ret = libhiperf_report.ReportGetSymbolFiles(b'perf.data')
62 print("\nfrom Python ReportGetSymbolFiles: ", ret)
64 ret = libhiperf_report.ReportGetBuildId(b'elf32_test')
65 print("\nfrom Python ReportGetBuildId: ", ret)
67 ret = libhiperf_report.ReportGetBuildId(b'elf32_test_stripped_nobuildid')
68 print("\nfrom Python ReportGetBuildId: ", ret)
70 ret = libhiperf_report.ReportGetElfArch(b'elf32_test')
71 print("\nfrom Python ReportGetElfArch: ", ret)
73 ret = libhiperf_report.ReportGetElfArch(b'elf_test')
74 print("\nfrom Python ReportGetElfArch: ", ret)
76 ret = libhiperf_report.ReportGetElfArch(b'hiperf')
77 print("\nfrom Python ReportGetElfArch: ", ret)