Searched refs:socktype (Results 1 – 9 of 9) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/ |
D | handlers.py | 713 facility=LOG_USER, socktype=socket.SOCK_DGRAM): argument 725 self.socktype = socktype 732 self.socket = socket.socket(socket.AF_INET, socktype) 733 if socktype == socket.SOCK_STREAM: 811 elif self.socktype == socket.SOCK_DGRAM:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | poplib.py | 339 af, socktype, proto, canonname, sa = res 341 self.sock = socket.socket(af, socktype, proto)
|
D | socket.py | 554 af, socktype, proto, canonname, sa = res 557 sock = socket(af, socktype, proto)
|
D | ftplib.py | 279 af, socktype, proto, canonname, sa = res 281 sock = socket.socket(af, socktype, proto)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | 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/test/ |
D | test_support.py | 228 def find_unused_port(family=socket.AF_INET, socktype=socket.SOCK_STREAM): argument 282 tempsock = socket.socket(family, socktype)
|
D | test_socket.py | 657 for _, socktype, _, _, _ in infos: 658 self.assertEqual(socktype, socket.SOCK_STREAM)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | socketmodule.c | 4063 int family, socktype, protocol, flags; local 4069 family = socktype = protocol = flags = 0; 4072 &hobj, &pobj, &family, &socktype, 4103 hints.ai_socktype = socktype;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | socketmodule.c | 4145 int family, socktype, protocol, flags; local 4151 family = socktype = protocol = flags = 0; 4154 &hobj, &pobj, &family, &socktype, 4198 hints.ai_socktype = socktype;
|