HomeSort by relevance Sort by last modified time
    Searched defs:Port (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/remoting/webapp/unittests/
chrome_mocks.js 37 chromeMocks.runtime.Port = function() {
45 chromeMocks.runtime.Port.prototype.disconnect = function() {};
46 chromeMocks.runtime.Port.prototype.postMessage = function() {};
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
print_layout_test_times.py 32 from webkitpy.layout_tests.port import Port
57 port = host.port_factory.get()
61 times_ms_path = host.filesystem.join(port.results_directory(), 'times_ms.json')
70 print_fastest(host, port, options, times)
84 def print_fastest(host, port, options, times):
121 sep = Port.TEST_PATH_SEPARATOR
layout_tests_mover.py 56 from webkitpy.layout_tests.port.base import Port
68 def __init__(self, port=None):
69 self._port = port
73 # constructing the TestExpectations object, it doesn't matter which Port object we use.
138 file_filter=Port.is_test_file):
256 return (Port.is_test_file(filesystem, dirname, basename) or pass_regex.search(basename)) and not fail_regex.search(basename)
run_webkit_tests_unittest.py 51 from webkitpy.layout_tests import port namespace
54 from webkitpy.layout_tests.port import Port
55 from webkitpy.layout_tests.port import test
506 # Test that we don't run just the smoke tests by default on a normal test port.
510 # Create a port that does run only the smoke tests by default, and verify that works as expected.
516 # Verify that --no-smoke continues to work on a smoke-by-default port.
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/braille_ime/
externs.js 95 * @return {!Port} New port.
103 function Port() {}
106 Port.prototype.onDisconnect;
109 Port.prototype.onMessage;
114 Port.prototype.postMessage = function(obj) {};
120 Port.prototype.disconnect = function() {};
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
browser_test_driver_unittest.py 33 from webkitpy.layout_tests.port import Port, Driver, DriverOutput
34 from webkitpy.layout_tests.port import browser_test, browser_test_driver
35 from webkitpy.layout_tests.port.server_process_mock import MockServerProcess
37 from webkitpy.layout_tests.port.port_testcase import TestWebKitPort
44 port = TestWebKitPort()
45 driver = browser_test_driver.BrowserTestDriver(port, 0, pixel_tests=True)
__init__.py 29 """Port-specific entrypoints for the layout tests test infrastructure."""
31 import builders # Why is this in port? namespace
33 from base import Port # It's possible we don't need to export this virtual baseclass outside the module.
driver_unittest.py 33 from webkitpy.layout_tests.port import Port, Driver, DriverOutput
34 from webkitpy.layout_tests.port.server_process_mock import MockServerProcess
37 from webkitpy.layout_tests.port.port_testcase import TestWebKitPort
44 port = Port(MockSystemHost(), 'test', MockOptions(configuration='Release'))
45 port._config.build_directory = lambda configuration: '/mock-checkout/out/' + configuration
46 return port
62 port = self.make_port()
63 driver = Driver(port, None, pixel_tests=False
    [all...]
base_unittest.py 45 from webkitpy.layout_tests.port import Port, Driver, DriverOutput
46 from webkitpy.layout_tests.port.base import VirtualTestSuite
47 from webkitpy.layout_tests.port.test import add_unit_tests_to_mock_filesystem, TestPort
57 return Port(host, port_name or 'baseport', **kwargs)
60 port = self.make_port()
61 self.assertIsNotNone(port.default_child_processes())
64 output = "OUTPUT %s %s %s" % (Port._WDIFF_DEL, Port._WDIFF_ADD, Port._WDIFF_END
    [all...]
port_testcase.py 29 """Unit testing base class for Port implementations."""
46 from webkitpy.layout_tests.port.base import Port, TestConfiguration
47 from webkitpy.layout_tests.port.server_process_mock import MockServerProcess
52 class TestWebKitPort(Port):
83 """Tests that all Port implementations must pass."""
87 # Subclasses override this to point to their Port subclass.
99 port = self.port_maker(host, port_name, options=options, **kwargs)
100 port._config.build_directory = lambda configuration: '/mock-build'
101 return port
    [all...]
test.py 34 from webkitpy.layout_tests.port import DeviceFailure, Driver, DriverOutput, Port
35 from webkitpy.layout_tests.port.base import VirtualTestSuite
335 # Add in a file should be ignored by port.find_test_files().
361 class TestPort(Port):
365 """Test implementation of the Port interface."""
387 Port.__init__(self, host, port_name or TestPort.default_port_name, **kwargs)
395 # rebaseline_unittest.py having tests that refer to "real" port names
519 """Returns a sequence of the TestConfigurations the port supports."""
base.py 29 """Abstract base class of Port-specific entry points for the layout tests
30 test infrastructure (the Port and Driver classes)."""
62 from webkitpy.layout_tests.port import config as port_config
63 from webkitpy.layout_tests.port import driver
64 from webkitpy.layout_tests.port import server_process
65 from webkitpy.layout_tests.port.factory import PortFactory
73 class Port(object):
74 """Abstract class for Port-specific hooks for the layout_test package."""
77 # part of the port name, e.g., 'mac', 'win', 'gtk'; there is probably (?)
90 # True if the port as aac and mp3 codecs built in
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
iphlpapi.h 144 WCHAR Port[6];
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
rebaselineserver.py 34 from webkitpy.layout_tests.port.base import Port
164 # FIXME: This seems like a hack. This only seems used to access the Port.expected_baselines logic.
165 class AllPlatformsPort(Port):
rebaselineserver_unittest.py 35 from webkitpy.layout_tests.port.base import Port
294 port = host.port_factory.get()
295 layout_tests_directory = port.layout_tests_dir()
296 results_directory = port.results_directory()
303 class TestMacPort(Port):
  /external/chromium_org/extensions/renderer/resources/
messaging.js 25 // Map of port IDs to port object.
28 // Map of port IDs to unloadEvent listeners. Keep track of these to free the
36 // Port object. Represents a connection to another script context through
42 var portSchema = {name: 'port', $ref: 'runtime.Port'};
53 // port.
67 console.error('Illegal argument to Port.postMessage');
73 // Disconnects the port from the other end.
94 // Returns true if the specified port id is in this context. This is used b
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
chrome_extension_externs.js 45 * @return {Port} New port.
189 * @return {!Port} New port.
240 * Event whose listeners take a Port parameter.
247 * @param {function(!Port): void} callback Callback.
253 * @param {function(!Port): void} callback Callback.
259 * @param {function(!Port): void} callback Callback.
966 function Port() {}
970 Port.prototype.name
    [all...]
  /external/chromium_org/remoting/webapp/js_proto/
chrome_proto.js 75 * @type {?function(string):chrome.runtime.Port}
81 * @return {chrome.runtime.Port}
101 chrome.runtime.Port = function() {
113 chrome.runtime.Port.prototype.onMessage = null;
116 chrome.runtime.Port.prototype.onDisconnect = null;
118 chrome.runtime.Port.prototype.disconnect = function() {};
123 chrome.runtime.Port.prototype.postMessage = function(message) {};
635 * @param {number} port
639 function(socketId, hostname, port, callback) {};
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
port.cc 28 #include "talk/p2p/base/port.h"
112 // The delay before we begin checking if this port is useless.
171 Port::Port(rtc::Thread* thread, rtc::PacketSocketFactory* factory,
194 Port::Port(rtc::Thread* thread, const std::string& type,
221 void Port::Construct() {
228 LOG_J(LS_INFO, this) << "Port created";
231 Port::~Port() {
    [all...]
port.h 124 class Port : public PortInterface, public rtc::MessageHandler,
127 Port(rtc::Thread* thread, rtc::PacketSocketFactory* factory,
130 Port(rtc::Thread* thread, const std::string& type,
135 virtual ~Port();
160 // The thread on which this port performs its I/O.
163 // The factory used to create the sockets of this port.
185 // Identifies the generation that this port was created in.
206 // Fired when candidates are discovered by the port. When all candidates
207 // are discovered that belong to port SignalAddressReady is fired.
208 sigslot::signal2<Port*, const Candidate&> SignalCandidateReady
414 Port* port() { return port_; } function in class:cricket::Connection
415 const Port* port() const { return port_; } function in class:cricket::Connection
    [all...]
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipEditor.java 77 Port(R.string.port, R.string.default_port, R.string.default_port),
326 case Port:
334 } else if (key == PreferenceKey.Port) {
335 int port = Integer.parseInt(PreferenceKey.Port.getValue()); local
336 if ((port < 1000) || (port > 65534)) {
399 .setPort(Integer.parseInt(PreferenceKey.Port.getValue()))
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
miniport.h 158 } Port;
parallel.h 65 UCHAR Port;
hubbusif.h 763 USB_EXTPORT_INFORMATION_0 Port[255];
  /external/mdnsresponder/mDNSCore/
uDNS.c 104 mDNSexport DNSServer *mDNS_AddDNSServer(mDNS *const m, const domainname *d, const mDNSInterfaceID interface, const mDNSAddr *addr, const mDNSIPPort port, mDNSBool scoped, mDNSu32 timeout)
121 while (*p) // Check if we already have this {interface,address,port,domain} tuple registered
124 mDNSSameAddress(&(*p)->addr, addr) && mDNSSameIPPort((*p)->port, port) && SameDomainName(&(*p)->domain, d))
126 if (!((*p)->flags & DNSServer_FlagDelete)) debugf("Note: DNS Server %#a:%d for domain %##s (%p) registered more than once", addr, mDNSVal16(port), d->c, interface);
148 (*p)->port = port;
184 &q->qDNSServer->addr, mDNSVal16(q->qDNSServer->port), q->qDNSServer->domain.c, q, q->qname.c, DNSTypeName(q->qtype),
223 mDNSVal16(new->port));
236 q->qname.c, DNSTypeName(q->qtype), &q->qDNSServer->addr, mDNSVal16(q->qDNSServer->port), q->qDNSServer->domain.c)
1948 mDNSIPPort port = rr->resrec.rdata->u.srv.port; local
    [all...]

Completed in 1382 milliseconds

1 2