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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
__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.
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...]
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)
mac.py 29 """Chromium Mac implementation of the Port interface."""
34 from webkitpy.layout_tests.port import base
40 class MacPort(base.Port):
  /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/libjingle/source/talk/p2p/client/
basicportallocator.h 34 #include "talk/p2p/base/port.h"
135 // Starts the process of getting the port configurations.
138 // Adds a port configuration that is now ready. Once we have one for each
149 PortData(Port* port, AllocationSequence* seq)
150 : port_(port), sequence_(seq), state_(STATE_INIT) {
153 Port* port() { return port_; } function in class:cricket::BasicPortAllocatorSession::PortData
177 Port* port_;
191 void AddAllocatedPort(Port* port, AllocationSequence* seq
    [all...]
fakeportallocator.h 87 void AddPort(cricket::Port* port) {
88 port->set_component(component_);
89 port->set_generation(0);
90 port->SignalPortComplete.connect(
92 port->PrepareAddress();
93 SignalPortReady(this, port);
95 void OnPortComplete(cricket::Port* port) {
96 SignalCandidatesReady(this, port->Candidates())
    [all...]
connectivitychecker.h 33 class Port;
45 // TODO: List of current port mappings.
242 void OnRelayPortComplete(Port* port);
243 void OnStunPortComplete(Port* port);
244 void OnRelayPortError(Port* port);
245 void OnStunPortError(Port* port);
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
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...]
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_unittest.cc 95 static Candidate GetCandidate(Port* port) {
96 assert(port->Candidates().size() == 1);
97 return port->Candidates()[0];
100 static SocketAddress GetAddress(Port* port) {
101 return GetCandidate(port).address();
117 // Stub port class for testing STUN generation and processing.
118 class TestPort : public Port {
124 : Port(thread, type, factory, network, ip
442 TCPPort* port = CreateTcpPort(addr, &socket_factory_); local
448 TCPPort* port = TCPPort::Create(main_, socket_factory, &network_, local
458 StunPort* port = StunPort::Create(main_, factory, &network_, local
482 TurnPort* port = TurnPort::Create(main_, socket_factory, &network_, local
492 RelayPort* port = CreateGturnPort(addr); local
499 RelayPort* port = RelayPort::Create(main_, &socket_factory_, &network_, local
571 TestPort* port = new TestPort(main_, "test", &socket_factory_, &network_, local
582 TestPort* port = CreateTestPort(addr, username, password); local
    [all...]
relayport.h 36 #include "talk/p2p/base/port.h"
44 // Communicates using an allocated port on the relay server. For each
50 class RelayPort : public Port {
99 // Dispatches the given packet to the port or connection as appropriate.
stunport_unittest.cc 71 const cricket::Port* port() const { return stun_port_.get(); } function in class:StunPortTest
140 void OnPortComplete(cricket::Port* port) {
145 void OnPortError(cricket::Port* port) {
168 // Test that we can create a STUN port
171 EXPECT_EQ("stun", port()->Type());
172 EXPECT_EQ(0U, port()->Candidates().size());
180 ASSERT_EQ(1U, port()->Candidates().size())
    [all...]
tcpport.cc 41 : Port(thread, LOCAL_PORT_TYPE, factory, network, ip, min_port, max_port,
85 (address.tcptype().empty() && address.address().port() == 0)) {
224 Port::OnReadPacket(data, size, remote_addr, PROTO_TCP);
228 Port::OnReadyToSend();
238 TCPConnection::TCPConnection(TCPPort* port, const Candidate& candidate,
240 : Connection(port, 0, candidate), socket_(socket), error_(0) {
246 socket_ = port->socket_factory()->CreateClientTcpSocket(
247 rtc::SocketAddress(port->ip(), 0),
248 candidate.address(), port->proxy(), port->user_agent(), opts)
    [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/libunwind/src/setjmp/
siglongjmp.c 110 #error Port me
  /external/libunwind/src/x86/
siglongjmp.S 87 #error Port me
  /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/remoting/webapp/background/
it2me_helper_channel.js 12 * It runs in the background page and contains two chrome.runtime.Port objects,
16 * var port = chrome.runtime.connect({name:'it2me.helper.hangout'}, extId).
17 * port.postMessage('hello')
18 * If the webapp is not installed, |port.onDisconnect| will fire.
42 * | |<--------port.disconnect()-----|
43 * |<--------port.disconnect()----| |
47 * |---------port.disconnect()--->| |
48 * | |--------port.disconnect()----->|
53 * | |<-------port.disconnect()------|
55 * |<--------port.disconnect()----|
    [all...]
it2me_service.js 66 * @param {chrome.runtime.Port} port
69 remoting.It2MeService.prototype.onConnectExternal_ = function(port) {
72 switch (port.name) {
74 this.handleExternalHelperConnection_(port);
77 this.handleExternalHelpeeConnection_(port);
80 throw new Error('Unsupported port - ' + port.name);
85 port.disconnect();
91 * @param {chrome.runtime.Port} por
    [all...]
  /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
  /external/libunwind/src/coredump/
_UCD_access_reg_freebsd.c 114 #error Port me
  /external/libunwind/src/x86_64/
setcontext.S 82 #error Port me
  /external/linux-tools-perf/perf-3.12.0/arch/c6x/lib/
memcpy_64plus.S 0 ; Port on Texas Instruments TMS320C6x architecture
  /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...]

Completed in 507 milliseconds

1 2 3 4