/external/qemu/ |
qemu_socket.h | 14 int socktype, int port_offset); 16 int inet_connect(const char *str, int socktype);
|
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)
|
/frameworks/base/core/java/android/net/ |
LocalSocket.java | 37 private final int sockType; 58 * @param sockType either {@link #SOCKET_DGRAM}, {@link #SOCKET_STREAM} 61 public LocalSocket(int sockType) { 62 this(new LocalSocketImpl(), sockType); 81 /*package*/ LocalSocket(LocalSocketImpl impl, int sockType) { 83 this.sockType = sockType; 106 impl.create(sockType);
|
LocalSocketImpl.java | 228 * @param sockType either {@link LocalSocket#SOCKET_DGRAM}, {@link LocalSocket#SOCKET_STREAM} 232 public void create (int sockType) throws IOException { 237 switch (sockType) { 248 throw new IllegalStateException("unknown sockType");
|
/development/ndk/sources/android/libportable/arch-mips/ |
socket.c | 54 * Portable to Native socktype mapper. 94 * Native to Portable socktype mapper. 196 * between ARM and MIPS is the socktype; 245 * between ARM and MIPS is the 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);
|
/external/chromium_org/third_party/tlslite/tlslite/integration/ |
POP3_TLS.py | 113 af, socktype, proto, canonname, sa = res 115 self.sock = socket.socket(af, socktype, proto)
|
/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/tcpdump/missing/ |
getaddrinfo.c | 349 * if both socktype/protocol are specified, check if they 370 * socktype/protocol are left unspecified. (2) servname is disallowed 538 * if the servname does not match socktype/protocol, ignore it. 710 * if the servname does not match socktype/protocol, ignore it. 763 * if the servname does not match socktype/protocol, ignore it. 851 * if the servname does not match socktype/protocol, ignore it.
|
/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)
|
/bionic/libc/netbsd/net/ |
getaddrinfo.c | 635 * if both socktype/protocol are specified, check if they 656 * socktype/protocol are left unspecified. (2) servname is disallowed 818 * if the servname does not match socktype/protocol, ignore it. 888 * if the servname does not match socktype/protocol, ignore it. 944 * if the servname does not match socktype/protocol, ignore it. 1030 * if the servname does not match socktype/protocol, ignore it. [all...] |
/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/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/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...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
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_socket.py | 653 # test family and socktype filters 658 for _, socktype, _, _, _ in infos: 659 self.assertEqual(socktype, socket.SOCK_STREAM) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/ |
standalone.py | 420 family, socktype, proto, canonname, sockaddr = addrinfo 422 socket_ = socket.socket(family, socktype) [all...] |