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

  /external/qemu/include/qemu/
sockets.h 14 int socktype, int port_offset);
16 int inet_connect(const char *str, int socktype);
  /external/chromium_org/third_party/libusb/src/libusb/os/
linux_netlink.c 95 int socktype = SOCK_RAW; local
101 socktype |= SOCK_CLOEXEC;
104 socktype |= SOCK_NONBLOCK;
107 linux_netlink_socket = socket(PF_NETLINK, socktype, NETLINK_KOBJECT_UEVENT);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
handlers.py 740 facility=LOG_USER, socktype=None):
746 If facility is not specified, LOG_USER is used. If socktype is
749 socktype of None, in which case socket.SOCK_DGRAM will be used, falling
756 self.socktype = socktype
763 if socktype is None:
764 socktype = socket.SOCK_DGRAM
765 self.socket = socket.socket(socket.AF_INET, socktype)
766 if socktype == socket.SOCK_STREAM:
768 self.socktype = socktyp
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
handlers.py 740 facility=LOG_USER, socktype=None):
746 If facility is not specified, LOG_USER is used. If socktype is
749 socktype of None, in which case socket.SOCK_DGRAM will be used, falling
756 self.socktype = socktype
763 if socktype is None:
764 socktype = socket.SOCK_DGRAM
765 self.socket = socket.socket(socket.AF_INET, socktype)
766 if socktype == socket.SOCK_STREAM:
768 self.socktype = socktyp
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/third_party/fancy_urllib/
__init__.py 186 af, socktype, proto, canonname, sa = res
189 sock = socket.socket(af, socktype, proto)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
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...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
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/qemu/util/
qemu-sockets-android.c 444 int socktype, int port_offset)
472 int inet_connect(const char *str, int socktype)
qemu-sockets.c 499 int socktype, int port_offset)
527 int inet_connect(const char *str, int socktype)
  /external/chromium-trace/trace-viewer/examples/stream_server/
standalone.py 325 family, socktype, proto, canonname, sockaddr = addrinfo
327 socket_ = socket.socket(family, socktype)
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
standalone.py 321 family, socktype, proto, canonname, sockaddr = addrinfo
323 socket_ = socket.socket(family, socktype)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
standalone.py 451 family, socktype, proto, canonname, sockaddr = addrinfo
453 socket_ = socket.socket(family, socktype)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 726 af, socktype, proto, canonname, sa = res
729 self.sock = socks.socksocket(af, socktype, proto)
732 self.sock = socket.socket(af, socktype, proto)
    [all...]
  /external/iproute2/misc/
ss.c 1489 static int tcp_show_netlink(struct filter *f, FILE *dump_fp, int socktype)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_support.py 295 def find_unused_port(family=socket.AF_INET, socktype=socket.SOCK_STREAM):
349 tempsock = socket.socket(family, socktype)
    [all...]
test_socket.py 653 # test family and socktype filters
658 for _, socktype, _, _, _ in infos:
659 self.assertEqual(socktype, socket.SOCK_STREAM)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_support.py 295 def find_unused_port(family=socket.AF_INET, socktype=socket.SOCK_STREAM):
349 tempsock = socket.socket(family, socktype)
    [all...]
test_socket.py 653 # test family and socktype filters
658 for _, socktype, _, _, _ in infos:
659 self.assertEqual(socktype, socket.SOCK_STREAM)
    [all...]

Completed in 1186 milliseconds