Lines Matching refs:ops
19 struct unwind_libunwind_ops *ops = local_unwind_libunwind_ops; in unwind__prepare_access() local
47 ops = x86_32_unwind_libunwind_ops; in unwind__prepare_access()
50 ops = arm64_unwind_libunwind_ops; in unwind__prepare_access()
53 if (!ops) { in unwind__prepare_access()
58 maps__set_unwind_libunwind_ops(maps, ops); in unwind__prepare_access()
68 const struct unwind_libunwind_ops *ops = maps__unwind_libunwind_ops(maps); in unwind__flush_access() local
70 if (ops) in unwind__flush_access()
71 ops->flush_access(maps); in unwind__flush_access()
76 const struct unwind_libunwind_ops *ops = maps__unwind_libunwind_ops(maps); in unwind__finish_access() local
78 if (ops) in unwind__finish_access()
79 ops->finish_access(maps); in unwind__finish_access()
87 const struct unwind_libunwind_ops *ops = maps__unwind_libunwind_ops(thread__maps(thread)); in unwind__get_entries() local
89 if (ops) in unwind__get_entries()
90 return ops->get_entries(cb, arg, thread, data, max_stack, best_effort); in unwind__get_entries()