Searched defs:port_name (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dlinux_unittest.py40 port_name = 'linux' variable in class:LinuxPortTest
44 def assert_architecture(self, port_name=None, file_output=None, expected_architecture=None):
50 port = self.make_port(host, port_name=port_name)
61 self.assert_architecture(port_name='linux-x86',
63 self.assert_architecture(port_name='linux-x86_64',
73 self.assertRaises(AssertionError, linux.LinuxPort, MockSystemHost(), port_name='x86-linux')
89 self.assertRaises(AssertionError, linux.LinuxPort, host, '%s-foo' % self.port_name)
H A Dmac_unittest.py39 port_name = 'mac' variable in class:MacPortTest
43 def assert_name(self, port_name, os_version_string, expected):
44 port = self.make_port(os_version=os_version_string, port_name=port_name)
64 port = self.make_port(port_name='mac-snowleopard')
67 port = self.make_port(port_name='mac-lion')
70 port = self.make_port(port_name='mac-mountainlion')
73 port = self.make_port(port_name='mac-mavericks')
H A Dbrowser_test_unittest.py70 port_name = 'linux' variable in class:BrowserTestLinuxTest
77 port_name = 'win' variable in class:BrowserTestWinTest
88 port_name = 'mac' variable in class:BrowserTestMacTest
H A Dmac.py42 port_name = 'mac' variable in class:MacPort
65 def determine_full_port_name(cls, host, options, port_name):
66 if port_name.endswith('mac'):
73 return port_name + '-' + version
74 return port_name
76 def __init__(self, host, port_name, **kwargs):
77 super(MacPort, self).__init__(host, port_name, **kwargs)
78 self._version = port_name[port_name.index('mac-') + len('mac-'):]
H A Dwin_unittest.py41 port_name = 'win' variable in class:WinPortTest
69 def assert_name(self, port_name, os_version_string, expected):
70 port = self.make_port(port_name=port_name, os_version=os_version_string)
92 port = self.make_port(port_name='win-xp')
95 port = self.make_port(port_name='win-win7')
H A Dlinux.py44 port_name = 'linux' variable in class:LinuxPort
92 def determine_full_port_name(cls, host, options, port_name):
93 if port_name.endswith('linux'):
94 return port_name + '-' + cls._determine_architecture(host.filesystem, host.executive, cls._determine_driver_path_statically(host, options))
95 return port_name
97 def __init__(self, host, port_name, **kwargs):
98 super(LinuxPort, self).__init__(host, port_name, **kwargs)
99 (base, arch) = port_name.rsplit('-', 1)
102 assert port_name in ('linux', 'linux-x86', 'linux-x86_64')
H A Dwin.py51 port_name = 'win' variable in class:WinPort
64 def determine_full_port_name(cls, host, options, port_name):
65 if port_name.endswith('win'):
72 port_name = port_name + '-' + version
73 return port_name
75 def __init__(self, host, port_name, **kwargs):
76 super(WinPort, self).__init__(host, port_name, **kwargs)
77 self._version = port_name[port_name
[all...]
H A Dandroid_unittest.py155 port_name = 'android' variable in class:AndroidPortTest
H A Dmock_drt.py61 port_name = 'mock' variable in class:MockDRTPort
64 def determine_full_port_name(cls, host, options, port_name):
65 return port_name
67 def __init__(self, host, port_name, **kwargs):
68 self.__delegate = PortFactory(host).get(port_name.replace('mock-', ''), **kwargs)
95 def _overriding_cmd_line(original_cmd_line, driver_path, python_exe, this_file, port_name):
99 cmd_line[index:index + 1] = [python_exe, this_file, '--platform', port_name]
178 port_name = None
180 port_name = options.platform
181 self._port = PortFactory(host).get(port_name
[all...]
H A Dport_testcase.py53 port_name = "testwebkitport" variable in class:TestWebKitPort
55 def __init__(self, port_name=None, symbols_string=None,
58 port_name = port_name or TestWebKitPort.port_name
61 super(TestWebKitPort, self).__init__(host, port_name=port_name, **kwargs)
91 port_name = None variable in class:PortTestCase
94 def make_port(self, host=None, port_name=None, options=None, os_name=None, os_version=None, **kwargs):
97 port_name
[all...]
H A Dtest.py362 port_name = 'test' variable in class:TestPort
381 def determine_full_port_name(cls, host, options, port_name):
382 if port_name == 'test':
384 return port_name
386 def __init__(self, host, port_name=None, **kwargs):
387 Port.__init__(self, host, port_name or TestPort.default_port_name, **kwargs)
H A Dandroid.py405 port_name = 'android' variable in class:AndroidPort
419 def __init__(self, host, port_name, **kwargs):
420 super(AndroidPort, self).__init__(host, port_name, **kwargs)
H A Dbase.py81 port_name = None variable in class:Port
160 def determine_full_port_name(cls, host, options, port_name):
163 assert port_name.startswith(cls.port_name)
164 return port_name
166 def __init__(self, host, port_name, options=None, **kwargs):
168 # This value may be different from cls.port_name by having version modifiers
170 self._name = port_name
185 self._config = port_config.Config(self._executive, self._filesystem, self.port_name)
279 return self._filesystem.join(self.layout_tests_dir(), 'platform', self.port_name)
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
H A Drebaselineserver_unittest.py304 port_name = "mac" variable in class:get_test_config.TestMacPort
/external/lldb/source/Core/
H A DConnectionMachPort.cpp127 name_t port_name; local
128 int len = snprintf(port_name, sizeof(port_name), "%s", port);
129 if (len < sizeof(port_name))
132 port_name,
158 name_t port_name; local
162 if (::snprintf (port_name, sizeof (port_name), "%s", port) >= sizeof (port_name))
183 port_name,
[all...]
/external/chromium_org/content/renderer/
H A Drender_font_warmup_win.cc70 void* port_name,
69 NtALpcConnectPortPatch(HANDLE* port_handle, void* port_name, void* object_attribs, void* port_attribs, DWORD flags, void* server_sid, void* message, DWORD* buffer_length, void* out_message_attributes, void* in_message_attributes, void* time_out) argument
/external/chromium_org/device/serial/
H A Dserial_io_handler_posix.cc408 std::string SerialIoHandler::MaybeFixUpPortName(const std::string& port_name) { argument
409 return port_name;
H A Dserial_io_handler_win.cc376 std::string SerialIoHandler::MaybeFixUpPortName(const std::string& port_name) { argument
379 if (port_name.length() > std::string("COM9").length())
380 return std::string("\\\\.\\").append(port_name);
382 return port_name;
/external/chromium_org/cloud_print/virtual_driver/win/install/
H A Dsetup.cc345 base::string16 port_name; local
/external/chromium_org/cloud_print/virtual_driver/win/port_monitor/
H A Dport_monitor.cc595 const wchar_t* port_name) {
596 HandlePortUi(hwnd, port_name);
593 MonitorUiConfigureOrDeletePortUI(const wchar_t*, HWND hwnd, const wchar_t* port_name) argument
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dtransport.cc948 const buzz::QName& port_name,
953 if (!elem->HasAttr(port_name))
954 return BadParse("address does not have " + port_name.LocalPart(), error);
957 std::istringstream ist(elem->Attr(port_name));
946 ParseAddress(const buzz::XmlElement* elem, const buzz::QName& address_name, const buzz::QName& port_name, rtc::SocketAddress* address, ParseError* error) argument
/external/qemu/android/
H A Dsockets.c816 const char* port_name = strchr(host_and_port, ':'); local
817 if (port_name != NULL) {
818 int to_copy = MIN(sizeof(host_name)-1, port_name - host_and_port);
823 port_name++;
828 port_name = host_and_port;
830 // Make sure that port_name is not empty.
831 if (port_name[0] == '\0') {
834 return sock_address_list_create(actual_host_name, port_name, flags);

Completed in 4038 milliseconds