Home
last modified time | relevance | path

Searched refs:accept (Results 1 – 25 of 645) sorted by relevance

12345678910>>...26

/openbsd/gnu/usr.bin/perl/t/io/
H A Dsocket.t83 ok(socket(my $accept, PF_INET, SOCK_STREAM, $tcp),
87 binmode $accept;
90 my $acceptfd = fileno($accept);
101 my $shutdown = shutdown($accept, 1);
105 <$accept>;
177 ok(socket(my $accept, PF_INET, SOCK_STREAM, $tcp),
181 binmode $accept, ':raw:utf8';
182 ok(!eval { send($accept, "ABC", 0); 1 },
184 binmode $accept;
193 my $shutdown = shutdown($accept, 1);
[all …]
/openbsd/lib/libc/sys/
H A Dw_accept.c22 accept(int s, struct sockaddr *addr, socklen_t *addrlen) in accept() function
27 ret = HIDDEN(accept)(s, addr, addrlen); in accept()
31 DEF_CANCEL(accept);
/openbsd/gnu/llvm/llvm/lib/ObjCopy/ELF/
H A DELFObject.h490 Error accept(SectionVisitor &Visitor) const override;
491 Error accept(MutableSectionVisitor &Visitor) override;
531 Error accept(SectionVisitor &Sec) const override;
555 Error accept(SectionVisitor &Visitor) const override;
575 Error accept(SectionVisitor &Visitor) const override;
600 Error accept(SectionVisitor &Visitor) const override;
673 Error accept(SectionVisitor &Visitor) const override;
721 Error accept(SectionVisitor &Visitor) const override;
789 Error accept(SectionVisitor &Visitor) const override;
829 Error accept(SectionVisitor &) const override;
[all …]
H A DELFObject.cpp424 Error Section::accept(SectionVisitor &Visitor) const { in accept() function in Section
428 Error Section::accept(MutableSectionVisitor &Visitor) { in accept() function in Section
487 Error OwnedDataSection::accept(SectionVisitor &Visitor) const { in accept() function in OwnedDataSection
491 Error OwnedDataSection::accept(MutableSectionVisitor &Visitor) { in accept() function in OwnedDataSection
1169 Error GroupSection::accept(SectionVisitor &Visitor) const { in accept() function in GroupSection
1173 Error GroupSection::accept(MutableSectionVisitor &Visitor) { in accept() function in GroupSection
2060 if (Error Err = Sec.accept(*SecWriter)) in writeSectionData()
2567 if (Error Err = Sec.accept(*SecSizer)) in finalize()
2614 if (Error Err = Sec.accept(*SecWriter)) in write()
2697 if (Error Err = Sec->accept(Writer)) in write()
[all …]
/openbsd/gnu/usr.bin/perl/t/lib/warnings/
H A Dpp_sys306 # accept not present
321 accept "fred", STDIN;
343 accept "fred", FOO;
354 accept "fred", FOO;
387 accept FOO, "fred" ;
398 accept "fred", FOO;
446 # accept not present
483 accept "fred", FOO;
494 accept "fred", FOO;
527 accept FOO, "fred" ;
[all …]
/openbsd/gnu/usr.bin/perl/t/lib/feature/
H A Dbareword_filehandles45 accept
356 # NAME accept
357 accept(FOO, CHILD);
358 accept($fh, CHILD);
359 accept(FOO, $fh);
361 accept(FOO, CHILD);
362 accept($fh, CHILD);
363 accept(FOO, $fh);
374 accept FOO, CHILD ;
376 accept FOO, $fh ;
[all …]
/openbsd/etc/ppp/
H A Doptions.sample8 ipcp-accept-local
9 ipcp-accept-remote
/openbsd/gnu/usr.bin/perl/cpan/Test-Harness/t/lib/
H A DMySourceHandler.pm25 elsif ( my $accept = $config->{accept} ) {
27 return 1 if ${ $source->raw } eq $accept;
/openbsd/gnu/llvm/lldb/examples/interposing/darwin/fd_interposing/
H A DFDInterposing.cpp72 int accept$NOCANCEL(int, struct sockaddr *__restrict, socklen_t *__restrict);
691 extern "C" int accept$__interposed__(int socket, struct sockaddr *address, in accept$__interposed__()
696 const int fd = ::accept(socket, address, address_len); in accept$__interposed__()
706 return ::accept(socket, address, address_len); in accept$__interposed__()
711 extern "C" int accept$NOCANCEL$__interposed__(int socket, in accept$NOCANCEL$__interposed__()
717 const int fd = ::accept$NOCANCEL(socket, address, address_len); in accept$NOCANCEL$__interposed__()
727 return ::accept$NOCANCEL(socket, address, address_len); in accept$NOCANCEL$__interposed__()
915 DYLD_INTERPOSE(accept$__interposed__, accept);
916 DYLD_INTERPOSE(accept$NOCANCEL$__interposed__, accept$NOCANCEL);
/openbsd/gnu/llvm/llvm/utils/lit/lit/
H A DBooleanExpression.py71 def accept(self, t): member in BooleanExpression
106 if self.accept('!'):
109 elif self.accept('('):
120 while self.accept('&&'):
130 while self.accept('||'):
/openbsd/gnu/llvm/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp183 std::function<FilterRuleSP(bool accept, size_t attribute_index,
234 : m_accept(accept), m_attribute_index(attribute_index), in FilterRule()
304 RegexFilterRule(bool accept, size_t attribute_index, in RegexFilterRule() argument
306 : FilterRule(accept, attribute_index, StaticGetOperation()), in RegexFilterRule()
341 new ExactMatchFilterRule(accept, attribute_index, op_arg)); in CreateOperation()
349 ExactMatchFilterRule(bool accept, size_t attribute_index, in ExactMatchFilterRule() argument
351 : FilterRule(accept, attribute_index, StaticGetOperation()), in ExactMatchFilterRule()
669 bool accept; in ParseFilterRule() local
671 accept = true; in ParseFilterRule()
673 accept = false; in ParseFilterRule()
[all …]
/openbsd/gnu/llvm/llvm/lib/Target/VE/
H A DVE.td38 // Use both VE register name matcher to accept "S0~S63" register names
39 // and default register matcher to accept other registeres.
/openbsd/regress/sys/kern/signal/sigio/
H A Dsigio_socket.c93 cli = accept(sock, (struct sockaddr *)&inaddr, &inaddrlen); in test_socket_inherit()
102 cli = accept(sock, (struct sockaddr *)&inaddr, &inaddrlen); in test_socket_inherit()
/openbsd/gnu/usr.bin/perl/dist/IO/t/
H A Dio_sock.t61 my $sock = $listen->accept() or die "accept failed: $!";
108 last SERVER_LOOP unless my $sock = $listen->accept;
346 last SERVER_LOOP unless my $sock = $listen->accept;
/openbsd/gnu/llvm/llvm/docs/
H A DAMDGPUInstructionNotation.rst76 * Operands which only accept *vector* registers are labelled with 'v' prefix.
77 * Operands which only accept *scalar* registers and values are labelled with 's' prefix.
78 * Operands which accept any registers and values have no prefix.
/openbsd/regress/lib/libpthread/socket/2/
H A Dsocket2.c142 CHECKe(fd = accept(a_fd, &a_sin, &a_sin_size)); in sock_accept()
151 CHECKe(fd = accept(a_fd, &a_sin, &a_sin_size)); in sock_accept()
/openbsd/regress/lib/libpthread/socket/1/
H A Dsocket1.c147 CHECKe(fd = accept(a_fd, &a_sin, &a_sin_size)); in sock_accept()
154 CHECKe(fd = accept(a_fd, &a_sin, &a_sin_size)); in sock_accept()
/openbsd/gnu/llvm/llvm/tools/llvm-jitlink/llvm-jitlink-executor/
H A Dllvm-jitlink-executor.cpp107 return accept(SockFD, AI->ai_addr, &AddrLen); in openListener()
109 return accept(SockFD, AI->ai_addr, &AI->ai_addrlen); in openListener()
/openbsd/regress/lib/libpthread/restart/accept/
H A DMakefile3 PROG = accept
/openbsd/regress/sys/kern/accept/
H A DMakefile3 PROG= accept
/openbsd/regress/lib/libpthread/restart/
H A DMakefile3 SUBDIR = accept connect kevent read readv recvfrom recvmsg
/openbsd/gnu/usr.bin/binutils-2.17/gas/doc/
H A Dc-mips.texi112 This tells the assembler to accept MIPS-3D instructions.
118 This tells the assembler to accept MDMX instructions.
124 This tells the assembler to accept DSP instructions.
130 This tells the assembler to accept MT instructions.
159 accept the @sc{r4010} specific instructions (@samp{addciu}, @samp{ffc},
176 @sc{r@var{nnnn}} chip. This tells the assembler to accept instructions
396 The values other than 0 make the assembler accept instructions
461 The directive @code{.set mips3d} makes the assembler accept instructions
469 The directive @code{.set mdmx} makes the assembler accept instructions
477 The directive @code{.set dsp} makes the assembler accept instructions
[all …]
/openbsd/usr.bin/awk/
H A Db.c250 f->accept = poscnt-1; /* penter has computed number of positions in re */ in mkdfa()
279 if ((f->posns[2])[1] == f->accept) in makeinit()
490 while (f->accept >= maxsetvec) { /* guessing here! */ in cfoll()
493 for (i = 0; i <= f->accept; i++) in cfoll()
500 for (i = f->accept; i >= 0; i--) in cfoll()
1479 while (f->accept >= maxsetvec) { /* guessing here! */ in cgoto()
1482 for (i = 0; i <= f->accept; i++) in cgoto()
1512 for (i = f->accept; i >= 0; i--) in cgoto()
1544 if (setvec[f->accept]) in cgoto()
1563 for (i = 0; i <= f->accept; i++) { in freefa()
/openbsd/usr.sbin/rdate/
H A Dntp.c143 int accept = 0, ret, s, ierror; in ntp_client() local
177 accept++; in ntp_client()
186 if (accept < 1) in ntp_client()
/openbsd/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dgdbclientutils.py367 def accept(self): member in ServerChannel
391 def accept(self): member in ServerSocket
396 client, client_addr = self._server_socket.accept()
514 self._socket.accept()

12345678910>>...26