about summary refs log tree commit diff stats
path: root/cpp
ModeNameSize
d---------.traces8274log stats plain
-rw-r--r--000organization.cc5116log stats plain blame
-rw-r--r--001help.cc1507log stats plain blame
-rw-r--r--002test.cc2553log stats plain blame
-rw-r--r--003trace.cc18251log stats plain blame
-rw-r--r--003trace.test.cc4923log stats plain blame
-rw-r--r--010vm.cc8625log stats plain blame
-rw-r--r--011load.cc10131log stats plain blame
-rw-r--r--012transform.cc1724log stats plain blame
-rw-r--r--013literal_string.cc2391log stats plain blame
-rw-r--r--014types.cc2849log stats plain blame
-rw-r--r--020run.cc5537log stats plain blame
-rw-r--r--021arithmetic.cc6865log stats plain blame
-rw-r--r--022boolean.cc2824log stats plain blame
-rw-r--r--023jump.cc3199log stats plain blame
-rw-r--r--024compare.cc7704log stats plain blame
-rw-r--r--025trace.cc651log stats plain blame
-rw-r--r--026assert.cc608log stats plain blame
-rw-r--r--027debug.cc1294log stats plain blame
-rw-r--r--030container.cc5387log stats plain blame
-rw-r--r--031address.cc3471log stats plain blame
-rw-r--r--032array.cc6334log stats plain blame
-rw-r--r--033length.cc880log stats plain blame
-rw-r--r--034exclusive_container.cc3932log stats plain blame
-rw-r--r--035call.cc3129log stats plain blame
-rw-r--r--036call_ingredient.cc4563log stats plain blame
-rw-r--r--037call_reply.cc3358log stats plain blame
-rw-r--r--038scheduler.cc4886log stats plain blame
-rw-r--r--039wait.cc2008log stats plain blame
-rw-r--r--040brace.cc10290log stats plain blame
-rw-r--r--041name.cc7816log stats plain blame
-rw-r--r--042new.cc5498log stats plain blame
-rw-r--r--043space.cc4496log stats plain blame
-rw-r--r--044space_surround.cc1885log stats plain blame
-rw-r--r--045closure_name.cc5878log stats plain blame
-rw-r--r--049scenario_helpers.cc9126log stats plain blame
-rw-r--r--050scenario.cc6688log stats plain blame
-rw-r--r--051scenario_test.mu430log stats pl= test if action is None: action = self.apps.apply(app, context) if action is None: return self._log("No action found!") if action is None: return self._log("No way of determining the action!") # Preconditions context.squash_flags() popen_kws = context.popen_kws # shortcut toggle_ui = True pipe_output = False popen_kws['args'] = action if 'shell' not in popen_kws: popen_kws['shell'] = isinstance(action, str) if 'stdout' not in popen_kws: popen_kws['stdout'] = sys.stdout if 'stderr' not in popen_kws: popen_kws['stderr'] = sys.stderr # Evaluate the flags to determine keywords # for Popen() and other variables if 'p' in context.flags: popen_kws['stdout'] = PIPE popen_kws['stderr'] = PIPE toggle_ui = False pipe_output = True context.wait = False if 's' in context.flags or 'd' in context.flags: for key in ('stdout', 'stderr', 'stdin'): popen_kws[key] = devnull if 'd' in context.flags: toggle_ui = False context.wait = False # Finally, run it if toggle_ui: self._activate_ui(False) try: process = None try: process = Popen(**popen_kws) except: self._log("Failed to run: " + str(action)) else: if context.wait: waitpid_no_intr(process.pid) finally: if toggle_ui: self._activate_ui(True) if pipe_output and process: return self(action='less', app='pager', try_app_first=True, stdin=process.stdout) return process
a7e7b3f03e6'>makefile1910log stats plain blame -rwxr-xr-xrelayout1053log stats plain blame -rw-r--r--screen.mu786log stats plain blame d---------tangle315log stats plain d---------termbox330log stats plain -rwxr-xr-xtest_all_layers91log stats plain blame -rw-r--r--vimrc.vim1947log stats plain blame -rw-r--r--x.mu121log stats plain blame