Home | History | Annotate | Download | only in ltrace.minor

Lines Matching refs:xyz

20     ltraceMatch1 [ltraceRun -e *xyz -- $bin] {xyz\(} == 2
22 # If the actual entry point that xyz resolves to is not traced, it
23 # should get xyz's name. But we don't mind if somebody implements
26 set log [ltraceRun -L -x xyz -- $bin]
27 ltraceMatch1 $log [format {xyz\.IFUNC%s\(\)} $appendage] == 1
28 ltraceMatch1 $log [format {(xyz|abc)%s\(} $appendage] == 2
31 # to be presented as abc, not as xyz.
33 set log [ltraceRun -L -x xyz+abc -- $bin]
34 ltraceMatch1 $log [format {xyz\.IFUNC%s\(\)} $appendage] == 1
41 __asm__(".type xyz, \%gnu_indirect_function");
43 int xyz (int a);
44 extern void *xyz_ifunc(void) __asm__("xyz");
52 return xyz (xyz (argc));