OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:host_parts
(Results
1 - 7
of
7
) sorted by null
/external/autotest/server/hosts/
plankton_host.py
28
host_parts
= dut_hostname.split('.')
29
host_parts
[0] =
host_parts
[0] + '-plankton'
30
return '.'.join(
host_parts
)
servo_host.py
76
host_parts
= dut_hostname.split('.')
77
host_parts
[0] =
host_parts
[0] + '-servo'
78
return '.'.join(
host_parts
)
/system/connectivity/shill/
http_url.cc
67
vector<string>
host_parts
= base::SplitString(
local
71
if (
host_parts
.empty() ||
host_parts
[0].empty() ||
host_parts
.size() > 2) {
73
} else if (
host_parts
.size() == 2) {
74
if (!base::StringToInt(
host_parts
[1], &port)) {
80
host_ =
host_parts
[0];
http_proxy.cc
310
vector<string>
host_parts
= base::SplitString(
local
313
if (
host_parts
.size() > 2) {
316
} else if (
host_parts
.size() == 2) {
317
server_hostname_ =
host_parts
[0];
318
if (!base::StringToInt(
host_parts
[1], &server_port_)) {
/external/autotest/client/cros/chameleon/
chameleon.py
596
host_parts
= dut_hostname.split('.')
597
host_parts
[0] =
host_parts
[0] + '-chameleon'
598
return '.'.join(
host_parts
)
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
httpclient.py
269
host_parts
= request.host.split(':')
270
host =
host_parts
[0]
271
port = int(
host_parts
[1]) if len(
host_parts
) == 2 else None
/external/autotest/client/common_lib/
site_utils.py
92
host_parts
= hostname.split('.')
94
fqdn = '%s.%s' % (
host_parts
[0], dns_zone)
Completed in 3971 milliseconds