Home
last modified time | relevance | path

Searched refs:interrupted (Results 1 – 25 of 75) sorted by relevance

123

/openbsd-src/gnu/llvm/lldb/source/Core/
H A DIOHandler.cpp349 bool IOHandlerEditline::GetLine(std::string &line, bool &interrupted) { in GetLine() argument
352 return m_editline_up->GetLine(line, interrupted); in GetLine()
511 bool IOHandlerEditline::GetLines(StringList &lines, bool &interrupted) { in GetLines() argument
517 return m_editline_up->GetLines(m_base_line_number, lines, interrupted); in GetLines()
536 bool interrupted = false; in GetLines() local
537 if (GetLine(line, interrupted) && !interrupted) { in GetLines()
556 bool interrupted = false; in Run() local
559 if (GetLines(lines, interrupted)) { in Run()
560 if (interrupted) { in Run()
572 if (GetLine(line, interrupted)) { in Run()
[all …]
/openbsd-src/gnu/llvm/llvm/utils/lit/lit/
H A Ddisplay.py67 def clear(self, interrupted): pass argument
94 self.progress_bar.clear(interrupted=False)
103 def clear(self, interrupted): argument
105 self.progress_bar.clear(interrupted)
H A DProgressBar.py204 def clear(self, interrupted): argument
205 if self.atIndex is not None and not interrupted:
278 def clear(self, interrupted): argument
283 if interrupted: # ^C creates extra line. Gobble it up!
H A Dmain.py226 interrupted = False
231 interrupted = True
238 display.clear(interrupted)
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dremote-m32r-sdi.c79 static int interrupted = 0; variable
680 interrupted = 1; in gdb_cntrl_c()
700 interrupted = 0; in m32r_wait()
723 if (interrupted) in m32r_wait()
732 if (interrupted) in m32r_wait()
737 interrupted = 0; in m32r_wait()
1269 interrupted = 0; in m32r_load()
1331 if (interrupted) in m32r_load()
1335 if (!quiet && !interrupted) in m32r_load()
1342 if (interrupted) in m32r_load()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DErrc.h51 interrupted = int(std::errc::interrupted), enumerator
/openbsd-src/usr.bin/ssh/
H A Dsftp.c82 volatile sig_atomic_t interrupted = 0; variable
233 interrupted = 1; in cmd_interrupt()
240 interrupted = 1; in read_interrupt()
660 for (i = 0; g.gl_pathv[i] && !interrupted; i++) { in process_get()
749 for (i = 0; g.gl_pathv[i] && !interrupted; i++) { in process_put()
871 for (n = 0; d[n] != NULL && !interrupted; n++) { in do_ls_dir()
969 if (interrupted) in do_globbed_ls()
1015 for (j = 0; j < nentries && !interrupted; j++) { in do_globbed_ls()
1597 for (i = 0; g.gl_pathv[i] && !interrupted; i++) { in parse_dispatch_command()
1701 for (i = 0; g.gl_pathv[i] && !interrupted; i++) { in parse_dispatch_command()
[all …]
H A Dsftp-client.c55 extern volatile sig_atomic_t interrupted;
719 for (; !interrupted;) { in sftp_lsreaddir()
815 } else if (interrupted && dir != NULL && *dir != NULL) { in sftp_lsreaddir()
1680 if (interrupted) { in sftp_download()
1802 if (!read_error && !write_error && !interrupted) { in sftp_download()
1811 if (inplace_flag || read_error || write_error || interrupted) { in sftp_download()
1813 (read_error || write_error || interrupted)) { in sftp_download()
1832 if (sftp_close(conn, handle, handle_len) != 0 || interrupted) in sftp_download()
1916 for (i = 0; dir_entries[i] != NULL && !interrupted; i++) { in download_dir_internal()
2107 if (interrupted || status != SSH2_FX_OK) in sftp_upload()
[all …]
H A Dscp.c159 volatile sig_atomic_t interrupted = 0; variable
1556 for (i = 0; g.gl_pathv[i] && !interrupted; i++) { in sink_sftp()
1969 for (i = 0; g.gl_pathv[i] && !interrupted; i++) { in throughlocal_sftp()
/openbsd-src/gnu/llvm/lldb/include/lldb/Host/
H A DEditline.h224 bool GetLine(std::string &line, bool &interrupted);
227 bool GetLines(int first_line_number, StringList &lines, bool &interrupted);
/openbsd-src/gnu/llvm/libcxx/include/
H A D__errc48 interrupted, // EINTR
145 interrupted = EINTR,
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Formatter/
H A DBase.pm274 result of an interrupted test run.
279 my ( $self, $aggregate, $interrupted ) = @_;
295 $self->_failure_output("Test run interrupted!\n")
296 if $interrupted;
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/t/
H A Dharness-bailout.t57 my ($self, $aggregator, $interrupted) = @_;
61 $interrupted ? '' : 'un',
/openbsd-src/gnu/llvm/lldb/source/Host/common/
H A DEditline.cpp1502 bool Editline::GetLine(std::string &line, bool &interrupted) { in GetLine() argument
1512 interrupted = true; in GetLine()
1524 interrupted = m_editor_status == EditorStatus::Interrupted; in GetLine()
1525 if (!interrupted) { in GetLine()
1543 bool &interrupted) { in GetLines() argument
1569 interrupted = m_editor_status == EditorStatus::Interrupted; in GetLines()
1570 if (!interrupted) { in GetLines()
/openbsd-src/usr.sbin/pkg_add/OpenBSD/
H A DPkgAdd.pm769 $state->{interrupted}++;
795 unless ($state->{interrupted}) {
800 if ($state->{interrupted} || $errors) {
823 unless ($state->{interrupted}) {
830 if ($state->{interrupted} || $errors) {
862 die "interrupted";
H A DAdd.pm277 if ($state->{interrupted}) {
287 if ($state->{interrupted}) {
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/
H A DHarness.pm400 Attempt to print summary information if run is interrupted by
552 my $interrupted = shift;
554 $self->summary( $aggregate, $interrupted );
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DIOHandler.h398 bool GetLine(std::string &line, bool &interrupted);
400 bool GetLines(StringList &lines, bool &interrupted);
/openbsd-src/regress/bin/ksh/
H A Dread.t61 Check that an endless read can be interrupted.
/openbsd-src/usr.bin/dc/
H A Dbcode.c46 volatile sig_atomic_t interrupted; member
222 bmachine.interrupted = true; in sighandler()
1684 if (bmachine.interrupted) { in eval()
1690 bmachine.interrupted = false; in eval()
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DErrorHandling.cpp297 MAP_ERR_TO_COND(WSAEINTR, interrupted); in mapWindowsError()
/openbsd-src/distrib/miniroot/
H A Ddot.profile113 # Set trap handlers to remove timer if the shell is interrupted,
/openbsd-src/gnu/usr.bin/perl/dist/Time-HiRes/t/
H A Dalarm.t59 $ok = "Skip: VMS select() does not get interrupted.";
/openbsd-src/sys/kern/
H A Duipc_syscalls.c384 int error, interrupted = 0; in sys_connect()
427 interrupted = 1; in sys_connect()
436 if (!interrupted) in sys_connect()
391 int error, interrupted = 0; sys_connect() local
/openbsd-src/gnu/usr.bin/binutils/gdb/rdi-share/
H A Dardi.c61 extern int interrupted;
1454 static int interrupted=0; variable
1458 interrupted=1; in myhandler()

123