/glibc-2.36/scripts/ |
D | check-localplt.awk | 29 accept[$1 " " $2] = NF == 2; 58 } else if (key in accept) { 59 delete accept[key] 68 for (key in accept) { 69 if (accept[key]) {
|
/glibc-2.36/string/ |
D | strspn.c | 30 STRSPN (const char *str, const char *accept) in STRSPN() argument 32 if (accept[0] == '\0') in STRSPN() 34 if (__glibc_unlikely (accept[1] == '\0')) in STRSPN() 37 for (; *str == *accept; str++); in STRSPN() 48 unsigned char *s = (unsigned char*) accept; in STRSPN()
|
D | strpbrk.c | 28 STRPBRK (const char *s, const char *accept) in STRPBRK() argument 30 s += strcspn (s, accept); in STRPBRK()
|
/glibc-2.36/sysdeps/unix/sysv/linux/ |
D | accept.c | 26 return SYSCALL_CANCEL (accept, fd, addr.__sockaddr__, len); in __libc_accept() 30 return SOCKETCALL_CANCEL (accept, fd, addr.__sockaddr__, len); in __libc_accept() 33 weak_alias (__libc_accept, accept) 34 libc_hidden_def (accept)
|
D | syscall-names.list | 33 accept
|
/glibc-2.36/socket/ |
D | accept.c | 27 accept (int fd, __SOCKADDR_ARG addr, socklen_t *addr_len) in accept() function 32 libc_hidden_def (accept) 35 stub_warning (accept)
|
D | Makefile | 29 routines := accept bind connect getpeername getsockname getsockopt \ 58 CFLAGS-accept.c += -fexceptions -fasynchronous-unwind-tables
|
D | Versions | 7 accept;
|
/glibc-2.36/sysdeps/i386/ |
D | string-inlines.c | 180 __old_strspn_g (const char *s, const char *accept) in __old_strspn_g() argument 182 return strspn (s, accept); in __old_strspn_g() 190 __old_strpbrk_g (const char *s, const char *accept) in __old_strpbrk_g() argument 192 return strpbrk (s, accept); in __old_strpbrk_g() 200 __old_strstr_g (const char *s, const char *accept) in __old_strstr_g() argument 202 return strstr (s, accept); in __old_strstr_g()
|
/glibc-2.36/sysdeps/mach/hurd/ |
D | accept.c | 27 accept (int fd, __SOCKADDR_ARG addrarg, socklen_t *addr_len) in accept() function 31 libc_hidden_def (accept)
|
/glibc-2.36/wcsmbs/ |
D | wcspbrk.c | 26 wcspbrk (const wchar_t *wcs, const wchar_t *accept) in wcspbrk() argument 29 if (wcschr (accept, *wcs) == NULL) in wcspbrk()
|
D | wcsspn.c | 27 wcsspn (const wchar_t *wcs, const wchar_t *accept) in wcsspn() argument 35 for (a = accept; *a != L'\0'; ++a) in wcsspn()
|
/glibc-2.36/sysdeps/unix/ |
D | syscalls.list | 3 accept - accept Ci:iBN __libc_accept accept
|
/glibc-2.36/support/ |
D | xaccept.c | 28 int clientfd = accept (fd, sa, salen); in xaccept()
|
/glibc-2.36/manual/ |
D | getopt.texi | 10 * Getopt Long Options:: GNU suggests utilities accept long-named 53 option argument, for those options that accept arguments. 199 To accept GNU-style long options as well as single-character options, 202 program accept long options if it uses any options, for this takes 243 The argument @var{shortopts} describes the short options to accept, just as 245 options to accept (see above).
|
D | socket.texi | 269 functions use a phony data type, @code{struct sockaddr *}, to accept the 855 Programs that let the user specify a host typically accept both numeric 1021 sockaddr_in}} when you want to accept Internet connections. 2472 Now let us consider what the server process must do to accept 2474 to enable connection requests on the socket, and then accept each 2475 incoming connection with a call to @code{accept} (@pxref{Accepting 2499 The @code{listen} function enables the socket @var{socket} to accept 2504 fail with @code{ECONNREFUSED} until the server calls @code{accept} to 2505 accept a connection from the queue. 2529 connection by accepting the request. Use the function @code{accept} [all …]
|
/glibc-2.36/manual/examples/ |
D | inetsrv.c | 95 new = accept (sock, in main()
|
/glibc-2.36/inet/ |
D | rexec.c | 141 s3 = TEMP_FAILURE_RETRY (accept(s2, (struct sockaddr *)&from, in rexec_af()
|
/glibc-2.36/include/sys/ |
D | socket.h | 158 libc_hidden_proto (accept)
|
/glibc-2.36/posix/ |
D | test-errno.c | 109 fails |= test_wrp (EBADF, accept, -1, &sa, &sl); in do_test()
|
/glibc-2.36/socket/sys/ |
D | socket.h | 306 extern int accept (int __fd, __SOCKADDR_ARG __addr,
|
/glibc-2.36/conform/data/sys/ |
D | socket.h-data | 99 function int accept (int, struct sockaddr*, socklen_t*)
|
/glibc-2.36/sunrpc/ |
D | svc_tcp.c | 263 if ((sock = accept (xprt->xp_sock, (struct sockaddr *) &addr, &len)) < 0) in rendezvous_request()
|
D | svc_unix.c | 257 if ((sock = accept (xprt->xp_sock, (struct sockaddr *) &addr, &len)) < 0) in rendezvous_request()
|
/glibc-2.36/sysdeps/pthread/ |
D | tst-cancel4.c | 718 accept (tempfd, (struct sockaddr *) &sun, &len); in tf_accept() 1591 ADD_TEST (accept, 2, 0),
|