Home
last modified time | relevance | path

Searched refs:socktype (Results 1 – 9 of 9) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/
Dhandlers.py713 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/
Dpoplib.py339 af, socktype, proto, canonname, sa = res
341 self.sock = socket.socket(af, socktype, proto)
Dsocket.py554 af, socktype, proto, canonname, sa = res
557 sock = socket(af, socktype, proto)
Dftplib.py279 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/
Dsocket.py558 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/
Dtest_support.py228 def find_unused_port(family=socket.AF_INET, socktype=socket.SOCK_STREAM): argument
282 tempsock = socket.socket(family, socktype)
Dtest_socket.py657 for _, socktype, _, _, _ in infos:
658 self.assertEqual(socktype, socket.SOCK_STREAM)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dsocketmodule.c4063 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/
Dsocketmodule.c4145 int family, socktype, protocol, flags; local
4151 family = socktype = protocol = flags = 0;
4154 &hobj, &pobj, &family, &socktype,
4198 hints.ai_socktype = socktype;