Home
last modified time | relevance | path

Searched refs:HOST (Results 1 – 25 of 99) sorted by relevance

1234

/third_party/python/Lib/test/
Dtest_smtplib.py32 HOST = socket_helper.HOST variable
83 client = self.client(HOST, self.port)
89 client = self.client(HOST, self.port,
97 client = self.client("%s:%s" % (HOST, self.port))
103 client = self.client(HOST, self.port, local_hostname="testhost")
113 client = self.client(HOST, self.port)
124 client = self.client(HOST, self.port, timeout=None)
133 self.client(HOST, self.port, timeout=0)
137 client = self.client(HOST, self.port, timeout=30)
146 client.connect(HOST, self.port)
[all …]
Dtest_socketserver.py26 HOST = socket_helper.HOST variable
95 return (HOST, 0)
266 s = MyServer((HOST, 0), MyHandler)
284 server = MyServer((HOST, 0), lambda: None)
294 socketserver.TCPServer((HOST, -1),
298 with socketserver.TCPServer((HOST, 0),
351 super().__init__((HOST, 0), BadHandler)
402 server = socketserver.TCPServer((HOST, 0), Handler)
425 server = socketserver.TCPServer((HOST, 0), Handler)
496 server = MyServer((HOST, 0), socketserver.StreamRequestHandler)
[all …]
Dtest_telnetlib.py11 HOST = socket_helper.HOST variable
42 telnet = telnetlib.Telnet(HOST, self.port)
46 with telnetlib.Telnet(HOST, self.port) as tn:
54 telnet = telnetlib.Telnet(HOST, self.port)
65 telnet = telnetlib.Telnet(HOST, self.port, timeout=None)
72 telnet = telnetlib.Telnet(HOST, self.port, timeout=30)
78 telnet.open(HOST, self.port, timeout=30)
84 telnet = telnetlib.Telnet(HOST, self.port, timeout=30)
Dtest_poplib.py25 HOST = socket_helper.HOST variable
264 self.server = DummyPOP3Server((HOST, PORT))
414 self.server = DummyPOP3Server((HOST, PORT))
456 self.server = DummyPOP3Server((HOST, PORT))
518 pop = poplib.POP3(HOST, self.port)
528 pop = poplib.POP3(HOST, self.port, timeout=None)
535 pop = poplib.POP3(HOST, self.port, timeout=test_support.LOOPBACK_TIMEOUT)
539 poplib.POP3(HOST, self.port, timeout=0)
Dtest_smtpd.py47 server = smtpd.SMTPServer((socket_helper.HOST, 0), ('b', 0),
66 (socket_helper.HOST, 0),
96 server = smtpd.DebuggingServer((socket_helper.HOST, 0), ('b', 0),
113 server = smtpd.DebuggingServer((socket_helper.HOST, 0), ('b', 0))
129 server = smtpd.DebuggingServer((socket_helper.HOST, 0), ('b', 0),
146 server = smtpd.DebuggingServer((socket_helper.HOST, 0), ('b', 0),
206 server = DummyServer((socket_helper.HOST, 0), ('b', 0))
215 server = DummyServer((socket_helper.HOST, 0), ('b', 0))
243 server = DummyServer((socket_helper.HOST, 0), ('b', 0), decode_data=True)
259 server = DummyServer((socket_helper.HOST, 0), ('b', 0))
[all …]
Dssl_servers.py16 HOST = socket_helper.HOST variable
122 def __init__(self, context, host=HOST, handler_class=None):
151 host=HOST, handler_class=None):
Dtest_ssl.py46 HOST = socket_helper.HOST variable
652 s.connect, (HOST, 8080))
1117 rc = s.connect_ex((HOST, port))
1133 s.connect((HOST, server.port))
2001 self.server_addr = (HOST, server.port)
2814 s.connect((HOST, server.port))
2982 s.connect((HOST, server.port))
3022 s.connect((HOST, server.port))
3035 s.connect((HOST, server.port))
3044 s.connect((HOST, server.port))
[all …]
Dtest_ftplib.py24 from test.support.socket_helper import HOST, HOSTv6
487 self.server = DummyFTPServer((HOST, 0), encoding=encoding)
791 source_address=(HOST, port))
801 self.client.source_address = (HOST, port)
906 self.server = DummyTLS_FTPServer((HOST, 0), encoding=encoding)
920 self.server = DummyTLS_FTPServer((HOST, 0), encoding=encoding)
1086 ftp = ftplib.FTP(HOST)
1098 ftp = ftplib.FTP(HOST, timeout=None)
1107 ftp = ftplib.FTP(HOST, timeout=30)
1114 ftplib.FTP(HOST, timeout=0)
[all …]
Dtest_socket.py40 HOST = socket_helper.HOST variable
475 self.cli.bind((HOST, 0))
547 self.cli.connect((HOST, self.port))
709 host = HOST
1446 self.assertRaises(OverflowError, sock.bind, (HOST, big_port))
1447 self.assertRaises(OverflowError, sock.bind, (HOST, neg_port))
1453 sock.bind((HOST, port))
1497 for info in socket.getaddrinfo(HOST, None):
1511 socket.getaddrinfo(HOST, "http")
1512 socket.getaddrinfo(HOST, 80)
[all …]
/third_party/libffi/m4/
Dax_enable_builddir.m418 # $1 = $host (overridden with $HOST)
26 # into the build directory of the current "HOST". You can override the
29 # make HOST=i386-mingw-cross
44 # recurse into _all_ variants of the current HOST (!!) setting. The "-all"
205 @ HOST="\$(HOST)\" \\\\\\
206 ; test ".\$\$HOST" = "." && HOST=$x sh $AUX/config.guess $x \\\\\\
207 ; BUILD=$x grep "^#### \$\$HOST " Makefile | sed -e 's/.*|//' $x \\\\\\
209 ; echo "MAKE \$\$HOST : \$\$n * \$\@"; if test "\$\$n" -eq "0" ; then : \\\\\\
217 @ HOST="\$(HOST)\" \\\\\\
218 ; test ".\$\$HOST" = "." && HOST=$x sh $AUX/config.guess $x \\\\\\
[all …]
/third_party/toybox/scripts/
Dmcm-buildall.sh41 HOST=$BOOTSTRAP
42 [ "$TARGET" = "$HOST" ] && LP="$PWD/host-$HOST/bin:$LP"
45 LP="$OUTPUT/$HOST-cross/bin:$LP"
47 HOST="$TARGET"
51 COMMON_CONFIG="CC=\"$HOST-gcc -static --static\" CXX=\"$HOST-g++ -static --static\""
52 export -n HOST
/third_party/gstreamer/gstplugins_good/tests/examples/rtp/
Dserver-decodebin-H263p-AMR.sh30 HOST=127.0.0.1
41 … rtpbin.send_rtp_src_0 ! queue ! udpsink host=$HOST port=5000 ts-offset=$AOFFSET \
42 … rtpbin.send_rtcp_src_0 ! udpsink host=$HOST port=5001 sync=false async=false \
45 rtpbin.send_rtp_src_1 ! queue ! udpsink host=$HOST port=5002 ts-offset=$VOFFSET \
46 rtpbin.send_rtcp_src_1 ! udpsink host=$HOST port=5003 sync=false async=false \
/third_party/musl/libc-test/src/functionalext/supplement/network/
Dinet_makeaddr.c21 const uint32_t HOST = 0x00000001; variable
31 struct in_addr a = inet_makeaddr(NET, HOST); in inet_makeaddr_0100()
44 struct in_addr a = inet_makeaddr(net, HOST); in inet_makeaddr_0200()
57 struct in_addr a = inet_makeaddr(net, HOST); in inet_makeaddr_0300()
Dinet_lnaof.c20 const uint32_t HOST = 0x00000001; variable
31 EXPECT_EQ("inet_netof_0100", inet_lnaof(a), HOST); in inet_lnaof_0100()
/third_party/ltp/testcases/network/xinetd/
Dxinetd_tests.sh30 log_on_success = HOST PID
31 log_on_failure = HOST
41 log_on_success = HOST PID
42 log_on_failure = HOST
/third_party/vk-gl-cts/android/cts/runner/tests/
Drun_tests.sh28 HOST=`uname`
29 if [ "$HOST" == "Linux" ]; then
31 elif [ "$HOST" == "Darwin" ]; then
/third_party/ltp/pan/cgi/
Dresults.cgi100 $a_rec->{HOST} = $host;
112 @ri = sort { $a->{HOST} cmp $b->{HOST}
122 $thishost = $rp->{HOST};
Dbrowse.cgi109 @rso = (SUITE, HOST, DATE, UNAME);
119 if ($so[$i] =~ /host/i) { push(@rso, HOST); }
142 $a_rec->{HOST} = $host;
/third_party/skia/platform_tools/android/bin/
Dandroid_gdb_native40 HOST=`uname | tr '[A-Z]' '[a-z]'`
41 if [ $HOST == "darwin" ]; then
43 elif [ $HOST == "linux" ]; then
/third_party/node/test/cctest/
Dtest_inspector_socket_server.cc14 static const char HOST[] = "127.0.0.1"; variable
246 : ServerHolder(has_targets, loop, HOST, port, nullptr) { } in ServerHolder()
373 socket.Connect(HOST, port); in TestHttpRequest()
395 well_behaved_socket.Connect(HOST, server.port()); in TEST_F()
416 bogus_target_socket.Connect(HOST, server.port()); in TEST_F()
425 dropped_connection_socket.Connect(HOST, server.port()); in TEST_F()
439 stays_till_termination_socket.Connect(HOST, server.port()); in TEST_F()
481 socket.Connect(HOST, server.port()); in TEST_F()
507 socket1.Connect(HOST, server.port()); in TEST_F()
520 socket1.Connect(HOST, server.port()); in TEST_F()
[all …]
/third_party/toybox/tests/
Dhostname.test7 HOST="$(cat /proc/sys/kernel/hostname 2>/dev/null)"
9 testing "get" "hostname" "$HOST\n" "" ""
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/mesh_shader/
DvktMeshShaderSyncTests.cpp59 HOST = 0, enumerator
70 case Stage::HOST: stream << "host"; break; in operator <<()
90 case Stage::HOST: return VK_PIPELINE_STAGE_HOST_BIT; in stageToFlags()
201 case Stage::HOST: return (access == WriteAccess::HOST_WRITE); in canWriteFromStageAsAccess()
217 case Stage::HOST: return (access == ReadAccess::HOST_READ); in canReadFromStageAsAccess()
249 …case Stage::HOST: return (resType == ResourceType::UNIFORM_BUFFER || resType == ResourceType::STO… in canWriteTo()
264 …case Stage::HOST: return (resType == ResourceType::UNIFORM_BUFFER || resType == ResourceType::STO… in canReadFrom()
304 return (toStage == Stage::HOST); in valueInResourceBuffer()
914 if (m_params.fromStage == Stage::HOST) in iterate()
1032 if (m_params.toStage == Stage::HOST) in iterate()
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/
DvktRayTracingBarrierTests.cpp78 HOST = 0, enumerator
96 case Stage::HOST: in getOptimalReadLayout()
125 case Stage::HOST: in getPipelineStage()
159 case Stage::HOST: in getWriterAccessFlag()
189 case Stage::HOST: in getReaderAccessFlag()
241 case Stage::HOST: break; in getStageFlags()
263 case Stage::HOST: in isRayTracingStage()
313 return (params.writerStage == Stage::HOST || params.readerStage == Stage::HOST); in resourceNeedsHostVisibleMemory()
447 if (wstage == Stage::HOST || wstage == Stage::TRANSFER) in initPrograms()
623 if (rstage == Stage::HOST || rstage == Stage::TRANSFER) in initPrograms()
[all …]
/third_party/protobuf/kokoro/release/ruby/macos/ruby/
Druby_build_environment.sh60 rake -f "$CROSS_RUBY" cross-ruby VERSION="$v" HOST=x86_64-darwin11 MAKE="$MAKE"
68 rake -f "$CROSS_RUBY" cross-ruby VERSION="$v" HOST=x86_64-darwin11 MAKE="$MAKE"
/third_party/python/Tools/msi/
Duploadrelease.bat7 set HOST= variable
18 if "%1" EQU "-o" (set HOST=%~2) && shift && shift && goto CheckOpts variable
19 if "%1" EQU "--host" (set HOST=%~2) && shift && shift && goto CheckOpts variable
99 echo uploadrelease.bat --host HOST --user USERNAME [--target TARGET] [--dry-run] [-h]

1234