Lines Matching refs:stap
35 self.stap = None
56 ret.append(self.stap)
264 stap = self.staging_dir_native + "/usr/bin/stap"
265 if not os.path.isfile(stap):
266 print("ERROR: Cannot find '" + stap +
309 def fill_stap(self, stap): argument
310 stap.stap = self.staging_dir_native + "/usr/bin/stap"
311 if not stap.sysroot:
314 stap.sysroot = self.image_rootfs + "-dbg"
316 stap.sysroot = self.image_rootfs
317 stap.runtime = self.staging_dir_native + "/usr/share/systemtap/runtime"
318 stap.tapset = self.staging_dir_native + "/usr/share/systemtap/tapset"
319 stap.arch = self.__map_systemtap_arch()
320 stap.cross_compile = self.staging_bindir_toolchain + "/" + \
322 stap.kernel_release = self.target_kernel_builddir
334 stap.target_path = ":".join(target_path)
341 stap.target_ld_library_path = ":".join(target_ld_library_path)
438 stap = Stap(options.script, options.module, options.remote)
444 stap.sysroot = options.sysroot
445 discovery.fill_stap(stap)
448 stap.display_command(remaining_args)
450 cmd = stap.command(remaining_args)
451 env = stap.environment()