Searched defs:Port (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/remoting/webapp/unittests/
H A Dchrome_mocks.js37 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/
H A Dprint_layout_test_times.py32 from webkitpy.layout_tests.port import Port namespace
121 sep = Port.TEST_PATH_SEPARATOR
H A Dlayout_tests_mover.py56 from webkitpy.layout_tests.port.base import Port namespace
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)
H A Drun_webkit_tests_unittest.py54 from webkitpy.layout_tests.port import Port namespace
/external/chromium_org/chrome/browser/resources/chromeos/braille_ime/
H A Dexterns.js95 * @return {!Port} New port.
103 function Port() {} class
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/
H A Dbrowser_test_driver_unittest.py33 from webkitpy.layout_tests.port import Port, Driver, DriverOutput namespace
H A D__init__.py29 """Port-specific entrypoints for the layout tests test infrastructure."""
33 from base import Port # It's possible we don't need to export this virtual baseclass outside the module. namespace
H A Ddriver_unittest.py33 from webkitpy.layout_tests.port import Port, Driver, DriverOutput namespace
44 port = Port(MockSystemHost(), 'test', MockOptions(configuration='Release'))
H A Dbase_unittest.py45 from webkitpy.layout_tests.port import Port, Driver, DriverOutput namespace
57 return Port(host, port_name or 'baseport', **kwargs)
64 output = "OUTPUT %s %s %s" % (Port._WDIFF_DEL, Port._WDIFF_ADD, Port._WDIFF_END)
287 self.assertTrue(Port.is_test_file(filesystem, '', 'foo.html'))
288 self.assertTrue(Port.is_test_file(filesystem, '', 'foo.svg'))
289 self.assertTrue(Port.is_test_file(filesystem, '', 'test-ref-test.html'))
290 self.assertFalse(Port.is_test_file(filesystem, '', 'foo.png'))
291 self.assertFalse(Port
[all...]
H A Dport_testcase.py29 """Unit testing base class for Port implementations."""
46 from webkitpy.layout_tests.port.base import Port, TestConfiguration namespace
52 class TestWebKitPort(Port):
83 """Tests that all Port implementations must pass."""
87 # Subclasses override this to point to their Port subclass.
H A Dtest.py34 from webkitpy.layout_tests.port import DeviceFailure, Driver, DriverOutput, Port namespace
361 class TestPort(Port):
365 """Test implementation of the Port interface."""
387 Port.__init__(self, host, port_name or TestPort.default_port_name, **kwargs)
H A Dbase.py29 """Abstract base class of Port-specific entry points for the layout tests
30 test infrastructure (the Port and Driver classes)."""
73 class Port(object): class in inherits:object
74 """Abstract class for Port-specific hooks for the layout_test package."""
691 self._reftest_list[dirname] = Port._parse_reftest_list(self._filesystem, dirname)
722 for extention in Port._supported_file_extensions:
744 files = find_files.find(self._filesystem, self.layout_tests_dir(), paths, skipped_directories, Port.is_test_file, self.test_key)
766 return extension in Port._supported_file_extensions
770 return Port._has_supported_extension(filesystem, filename) and not Port
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
H A Drebaselineserver.py34 from webkitpy.layout_tests.port.base import Port namespace
164 # FIXME: This seems like a hack. This only seems used to access the Port.expected_baselines logic.
165 class AllPlatformsPort(Port):
H A Drebaselineserver_unittest.py35 from webkitpy.layout_tests.port.base import Port namespace
303 class TestMacPort(Port):
/external/tcpdump/
H A Dprint-sctp.c73 static inline int isForCES_port(u_short Port) argument
75 if (Port == CHAN_HP)
77 if (Port == CHAN_MP)
79 if (Port == CHAN_LP)
/external/chromium_org/extensions/renderer/resources/
H A Dmessaging.js36 // Port object. Represents a connection to another script context through
42 var portSchema = {name: 'port', $ref: 'runtime.Port'};
67 console.error('Illegal argument to Port.postMessage');
105 throw new Error("Port '" + portId + "' already exists.");
106 var port = new Port(portId, opt_name);
223 // Only create a new Port if someone is actually listening for a connection.
288 lastError.set('Port', errorMessage, null, chrome);
327 // that we added before destroying the Port, a workaround to a bug in Port
329 // be leaked when the Port i
364 var Port = utils.expose('Port', PortImpl, { functions: [ variable
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dchrome_extension_externs.js45 * @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() {} class
970 Port.prototype.name;
974 Port.prototype.onDisconnect;
978 Port
[all...]
/external/chromium_org/remoting/webapp/js_proto/
H A Dchrome_proto.js75 * @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) {};
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dport.cc171 Port::Port(rtc::Thread* thread, rtc::PacketSocketFactory* factory, function in class:cricket::Port
194 Port::Port(rtc::Thread* thread, const std::string& type, function in class:cricket::Port
221 void Port::Construct() {
228 LOG_J(LS_INFO, this) << "Port created";
231 Port::~Port() {
247 Connection* Port::GetConnection(const rtc::SocketAddress& remote_addr) {
255 void Port
[all...]
H A Dport.h124 class Port : public PortInterface, public rtc::MessageHandler, class in namespace:cricket
127 Port(rtc::Thread* thread, rtc::PacketSocketFactory* factory,
130 Port(rtc::Thread* thread, const std::string& type,
135 virtual ~Port();
208 sigslot::signal2<Port*, const Candidate&> SignalCandidateReady;
217 sigslot::signal1<Port*> SignalPortComplete;
223 sigslot::signal1<Port*> SignalPortError;
235 sigslot::signal2<Port*, Connection*> SignalConnectionCreated;
373 // In order to establish a connection to this Port (so that real data can be
414 Port* por
[all...]
/external/mdnsresponder/mDNSCore/
H A DuDNS.c524 LogInfo("natTraversalHandlePortMapReply: %p Response %s Port %5d External Port %5d lease %d error %d",
539 LogInfo("natTraversalHandlePortMapReply: %p Response %s Port %5d External Port %5d changed to %5d",
545 LogInfo("natTraversalHandlePortMapReply: %p Response %s Port %5d External Port %5d lease %d",
1026 err = mDNSSendDNSMessage(m, &tcpInfo->request, end, mDNSInterface_Any, mDNSNULL, &tcpInfo->Addr, tcpInfo->Port, sock, AuthInfo);
1122 mDNSIPPort Port = tcpInfo->Port; local
1145 mDNSCoreReceive(m, reply, end, &Addr, Port, tl
1229 MakeTCPConn(mDNS *const m, const DNSMessage *const msg, const mDNSu8 *const end, TCPSocketFlags flags, const mDNSAddr *const Addr, const mDNSIPPort Port, domainname *hostname, DNSQuestion *const question, AuthRecord *const rr) argument
[all...]
H A DmDNSEmbeddedAPI.h487 mDNSIPPort Port; member in struct:tcpInfo_t
980 mDNSIPPort Port; // router port member in struct:tcpLNTInfo_struct
1550 mDNSIPPort tcpSrcPort; // Local Port TCP packet received on;need this as tcp struct is disposed
1595 mDNSIPPort port; // Port where this service can be accessed
1636 mDNSIPPort Port; // Discovered result: Update port, query port, or LLQ port from SRV record member in struct:ZoneData_struct
/external/chromium_org/third_party/closure_compiler/externs/
H A Dchrome_extensions.js107 * class type provides the strongest type checking. For example, see the Port
108 * type defined at http://developer.chrome.com/apps/runtime.html#type-Port.
112 * chrome.extension.Port = function() {}
114 * function Port() {}
116 * Note that, unfortunately, the actual Port class definition in this file
139 * * at-param {function(!chrome.runtime.Port): void} callback Callback.
1184 // TODO: change Port to !Port since it should never be null
1191 * @return {Port} New port.
1404 * @return {!Port} Ne
4745 Port.prototype.name; class
[all...]

Completed in 7051 milliseconds