HomeSort by relevance Sort by last modified time
    Searched refs:SO_SNDBUF (Results 176 - 200 of 323) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/strace/tests-m32/
sendfile.c 62 if (getsockopt(sv[1], SOL_SOCKET, SO_SNDBUF, &file_size, &optlen))
65 error_msg_and_skip("SO_SNDBUF too small: %u", file_size);
  /external/strace/tests-mx32/
sendfile.c 62 if (getsockopt(sv[1], SOL_SOCKET, SO_SNDBUF, &file_size, &optlen))
65 error_msg_and_skip("SO_SNDBUF too small: %u", file_size);
  /libcore/ojluni/src/main/java/sun/nio/ch/
SocketOptionRegistry.java 64 map.put(new RegistryKey(StandardSocketOptions.SO_SNDBUF, Net.UNSPEC), new OptionKey(1, 7));
DatagramSocketAdaptor.java 306 setIntOption(StandardSocketOptions.SO_SNDBUF, size);
310 return getIntOption(StandardSocketOptions.SO_SNDBUF);
SocketAdaptor.java 366 setIntOption(StandardSocketOptions.SO_SNDBUF, size);
370 return getIntOption(StandardSocketOptions.SO_SNDBUF);
  /external/strace/xlat/
sockoptions.h 29 #if defined(SO_SNDBUF) || (defined(HAVE_DECL_SO_SNDBUF) && HAVE_DECL_SO_SNDBUF)
30 XLAT(SO_SNDBUF),
  /libcore/ojluni/src/main/java/java/net/
AbstractPlainDatagramSocketImpl.java 293 case SO_SNDBUF:
296 throw new SocketException("bad argument for SO_SNDBUF or " +
348 case SO_SNDBUF:
DatagramSocket.java     [all...]
Socket.java     [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
socket_types.hpp 115 # define ASIO_OS_DEF_SO_SNDBUF SO_SNDBUF
  /system/chre/host/common/
socket_client.cc 234 sockFd, SOL_SOCKET, SO_SNDBUF, &sndbuf, sizeof(sndbuf));
246 LOGE("Failed to set SO_SNDBUF to %d: %s", sndbuf, strerror(errno));
  /external/ltp/utils/sctp/func_tests/
test_1_to_1_sockopt.c 27 * TEST17: setsockopt: SO_SNDBUF
28 * TEST18: getsockopt: SO_SNDBUF
96 int sndbuf_val_get, sndbuf_val_set;/*get and set var for SO_SNDBUF*/
344 /* TEST17: Test case for setsockopt SO_SNDBUF */
345 error = setsockopt(sk2, SOL_SOCKET, SO_SNDBUF, &sndbuf_val_set, len);
347 tst_brkm(TBROK, tst_exit, "setsockopt SO_SNDBUF "
350 tst_resm(TPASS, "setsockopt() SO_SNDBUF - SUCCESS");
352 /* TEST18: Test case for getsockopt SO_SNDBUF */
353 error = getsockopt(sk2, SOL_SOCKET, SO_SNDBUF, &sndbuf_val_get, &len);
355 tst_brkm(TBROK, tst_exit, "getsockopt SO_SNDBUF "
    [all...]
  /prebuilts/go/darwin-x86/src/net/
sockopt_posix.go 116 return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(fd.sysfd, syscall.SOL_SOCKET, syscall.SO_SNDBUF, bytes))
  /prebuilts/go/linux-x86/src/net/
sockopt_posix.go 116 return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(fd.sysfd, syscall.SOL_SOCKET, syscall.SO_SNDBUF, bytes))
  /system/core/adb/
services.cpp 250 adb_setsockopt(s[0], SOL_SOCKET, SO_SNDBUF, &max_buf, sizeof(max_buf));
251 adb_setsockopt(s[1], SOL_SOCKET, SO_SNDBUF, &max_buf, sizeof(max_buf));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/SetSockOpt/
SetSockOpt.c 56 { "SO_SNDBUF", SO_SNDBUF, SOL_SOCKET, TRUE, DATA_TYPE_INT32_DECIMAL },
  /external/iproute2/tc/
q_atm.c 161 if (setsockopt(s,SOL_SOCKET,SO_SNDBUF,&sndbuf,sizeof(sndbuf)) < 0) {
162 perror("SO_SNDBUF");
  /libcore/luni/src/main/java/libcore/io/
IoBridge.java 337 case SocketOptions.SO_SNDBUF:
338 return Libcore.os.getsockoptInt(fd, SOL_SOCKET, SO_SNDBUF);
434 case SocketOptions.SO_SNDBUF:
435 Libcore.os.setsockoptInt(fd, SOL_SOCKET, SO_SNDBUF, (Integer) value);
  /libcore/ojluni/src/main/native/
net_util_md.c 173 * Iterative way to find the max value that SO_SNDBUF or SO_RCVBUF
918 { java_net_SocketOptions_SO_SNDBUF, SOL_SOCKET, SO_SNDBUF },
976 * On Linux the SO_SNDBUF/SO_RCVBUF values must be post-processed
1001 * On Linux SO_SNDBUF/SO_RCVBUF aren't symmetric. This
1005 if ((level == SOL_SOCKET) && ((opt == SO_SNDBUF)
1030 * On Solaris need to limit the suggested value for SO_SNDBUF
1104 * SOL_SOCKET/{SO_SNDBUF,SO_RCVBUF} - On Solaris we may need to clamp
1109 if (opt == SO_SNDBUF || opt == SO_RCVBUF) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/psdk_inc/
_ws1_undef.h 128 #undef SO_SNDBUF
  /external/iputils/
traceroute6.c 527 #ifdef SO_SNDBUF
528 if (setsockopt(sndsock, SOL_SOCKET, SO_SNDBUF, (char *)&datalen,
530 perror("traceroute: SO_SNDBUF");
533 #endif /* SO_SNDBUF */
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
socket.h 130 #define SO_SNDBUF 0x1001 /* send buffer size */
  /external/libnl/lib/
socket.c 688 err = setsockopt(sk->s_fd, SOL_SOCKET, SO_SNDBUF,
  /external/ltp/testcases/network/stress/ns-tools/
ns-common.c 92 int level[] = { SO_RCVBUF, SO_SNDBUF };
ns-tcpserver.c 304 (sock_fd, SOL_SOCKET, SO_SNDBUF, &sndbuf_size,

Completed in 699 milliseconds

1 2 3 4 5 6 78 91011>>