HomeSort by relevance Sort by last modified time
    Searched refs:socktype (Results 1 - 25 of 43) sorted by null

1 2

  /external/libusb/libusb/os/
linux_netlink.c 92 int socktype = SOCK_RAW; local
97 socktype |= SOCK_CLOEXEC;
100 socktype |= SOCK_NONBLOCK;
103 linux_netlink_socket = socket(PF_NETLINK, socktype, NETLINK_KOBJECT_UEVENT);
105 usbi_dbg("failed to create netlink socket of type %d, attempting SOCK_RAW", socktype);
  /external/python/cpython2/Lib/logging/
handlers.py 741 facility=LOG_USER, socktype=None):
747 If facility is not specified, LOG_USER is used. If socktype is
750 socktype of None, in which case socket.SOCK_DGRAM will be used, falling
757 self.socktype = socktype
764 if socktype is None:
765 socktype = socket.SOCK_DGRAM
767 ress = socket.getaddrinfo(host, port, 0, socktype)
771 af, socktype, proto, _, sa = res
774 sock = socket.socket(af, socktype, proto
    [all...]
  /external/toybox/lib/
net.c 19 struct addrinfo *xgetaddrinfo(char *host, char *port, int family, int socktype,
27 info.ai_socktype = socktype;
  /external/curl/lib/
connect.h 87 int socktype; member in struct:Curl_sockaddr_ex
hostip6.c 167 hints.ai_socktype = conn->socktype;
connect.c 687 if(conn->socktype == SOCK_DGRAM)
1035 addr.socktype == SOCK_STREAM;
1037 is_tcp = (addr.family == AF_INET) && addr.socktype == SOCK_STREAM;
    [all...]
asyn-thread.c 709 hints.ai_socktype = conn->socktype;
  /external/python/cpython3/Lib/logging/
handlers.py 795 facility=LOG_USER, socktype=None):
801 If facility is not specified, LOG_USER is used. If socktype is
804 socktype of None, in which case socket.SOCK_DGRAM will be used, falling
    [all...]
  /external/curl/tests/libtest/
lib500.c 38 return socket(addr->family, addr->socktype, addr->protocol);
  /external/libevent/test/
regress.h 113 int socktype, int protocol, int line);
regress_util.c 316 tt_str_op(cp,==,"<addr with socktype 99>");
811 int socktype, int protocol, int line)
818 if (socktype > 0)
819 tt_int_op(ai->ai_socktype, ==, socktype);
    [all...]
  /external/autotest/client/cros/cellular/
prologix_scpi_driver.py 193 af, socktype, proto, _, sa = res
195 s = socket.socket(af, socktype, proto)
  /external/python/cpython3/Lib/
socket.py 708 af, socktype, proto, canonname, sa = res
711 sock = socket(af, socktype, proto)
749 af, socktype, proto, canonname, sa = res
751 _intenum_converter(socktype, SocketKind),
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
poplib.py 339 af, socktype, proto, canonname, sa = res
341 self.sock = socket.socket(af, socktype, proto)
socket.py 554 af, socktype, proto, canonname, sa = res
557 sock = socket(af, socktype, proto)
ftplib.py 279 af, socktype, proto, canonname, sa = res
281 sock = socket.socket(af, socktype, proto)
    [all...]
  /external/python/cpython2/Lib/
poplib.py 347 af, socktype, proto, canonname, sa = res
349 self.sock = socket.socket(af, socktype, proto)
socket.py 558 af, socktype, proto, canonname, sa = res
561 sock = socket(af, socktype, proto)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/
handlers.py 713 facility=LOG_USER, socktype=socket.SOCK_DGRAM):
725 self.socktype = socktype
732 self.socket = socket.socket(socket.AF_INET, socktype)
733 if socktype == socket.SOCK_STREAM:
    [all...]
  /external/curl/tests/python_dependencies/impacket/
nmb.py 445 af, socktype, proto, _canonname, _sa = socket.getaddrinfo(dstaddr, port, socket.AF_INET, socket.SOCK_DGRAM)[0]
446 s = socket.socket(af, socktype, proto)
776 af, socktype, proto, canonname, sa = socket.getaddrinfo(peer[0], peer[1], 0, socket.SOCK_DGRAM)[0]
777 sock = socket.socket(af, socktype, proto)
780 sock = socket.socket(af, socktype, proto)
841 af, socktype, proto, canonname, sa = socket.getaddrinfo(peer[0], peer[1], 0, socket.SOCK_STREAM)[0]
842 sock = socket.socket(af, socktype, proto)
    [all...]
  /external/python/httplib2/python3/httplib2/
__init__.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
socket.py 558 af, socktype, proto, canonname, sa = res
561 sock = socket(af, socktype, proto)
  /external/libevent/
listener.c 218 int socktype = SOCK_STREAM | EVUTIL_SOCK_NONBLOCK; local
224 socktype |= EVUTIL_SOCK_CLOEXEC;
226 fd = evutil_socket_(family, socktype, 0);
  /external/python/httplib2/python2/httplib2/
__init__.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_support.py 228 def find_unused_port(family=socket.AF_INET, socktype=socket.SOCK_STREAM):
282 tempsock = socket.socket(family, socktype)
    [all...]

Completed in 530 milliseconds

1 2