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

1 2 3 4

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
conio.h 96 __CRT_INLINE unsigned char __inbyte(unsigned short Port)
101 : "Nd" (Port));
104 __CRT_INLINE unsigned short __inword(unsigned short Port)
109 : "Nd" (Port));
112 __CRT_INLINE unsigned long __indword(unsigned short Port)
117 : "Nd" (Port));
120 __CRT_INLINE void __outbyte(unsigned short Port,unsigned char Data)
124 : "a" (Data), "Nd" (Port));
126 __CRT_INLINE void __outword(unsigned short Port,unsigned short Data)
130 : "a" (Data), "Nd" (Port));
    [all...]
mstcpip.h 104 LONG NTAPI RtlIpv6AddressToStringExA(const IN6_ADDR *Address, ULONG ScopeId, USHORT Port, LPSTR AddressString, PULONG AddressStringLength);
105 LONG NTAPI RtlIpv6AddressToStringExW(const IN6_ADDR *Address, ULONG ScopeId, USHORT Port, LPWSTR AddressString, PULONG AddressStringLength);
112 LONG NTAPI RtlIpv4AddressToStringExA(const IN_ADDR *Address, USHORT Port, LPSTR AddressString, PULONG AddressStringLength);
113 LONG NTAPI RtlIpv4AddressToStringExW(const IN_ADDR *Address, USHORT Port, LPWSTR AddressString, PULONG AddressStringLength);
120 LONG NTAPI RtlIpv4StringToAddressExA(PCSTR AddressString, BOOLEAN Strict, IN_ADDR *Address, PUSHORT Port);
121 LONG NTAPI RtlIpv4StringToAddressExW(PCWSTR AddressString, BOOLEAN Strict, IN_ADDR *Address, PUSHORT Port);
124 LONG NTAPI RtlIpv6StringToAddressExA(PCSTR AddressString, IN6_ADDR *Address, PULONG ScopeId, PUSHORT Port);
125 LONG NTAPI RtlIpv6StringToAddressExW(PCWSTR AddressString, IN6_ADDR *Address, PULONG ScopeId, PUSHORT Port);
  /external/ppp/pppd/plugins/radius/etc/
dictionary.compat 5 ATTRIBUTE Client-Port-Id 5 integer
11 ATTRIBUTE Login-Port 16 integer
13 ATTRIBUTE Port-Message 18 string
27 ATTRIBUTE NAS-Port 5 integer
31 ATTRIBUTE Client-Port-DNIS 30 string
dictionary 50 ATTRIBUTE NAS-Port-Id 5 integer
61 ATTRIBUTE Login-TCP-Port 16 integer
86 ATTRIBUTE NAS-Port-Type 61 integer
87 ATTRIBUTE Port-Limit 62 integer
102 ATTRIBUTE Add-Port-To-IP-Address 1037 integer
185 # NAS Port Types, available in 3.3.1 and later
187 VALUE NAS-Port-Type Async 0
188 VALUE NAS-Port-Type Sync 1
189 VALUE NAS-Port-Type ISDN 2
190 VALUE NAS-Port-Type ISDN-V120
    [all...]
  /external/deqp/execserver/tools/
xsMain.cpp 39 DE_DECLARE_COMMAND_LINE_OPT(Port, int);
47 parser << Option<Port> ("p", "port", "Port", "50016")
83 const int port = cmdLine.getOption<opt::Port>(); local
84 xs::ExecutionServer server (&testProcess, DE_SOCKETFAMILY_INET4, port, runMode);
86 std::cout << "Listening on port " << port << ".\n"; local
  /external/avahi/avahi-ui-sharp/
bssh.cs 17 Console.WriteLine ("Connecting to {0}:{1}", dialog.Address, dialog.Port);
33 dialog.HostName, dialog.Port, user, dialog.Address.ToString ());
  /external/webrtc/webrtc/p2p/client/
basicportallocator.h 114 // Starts the process of getting the port configurations.
117 // Adds a port configuration that is now ready. Once we have one for each
128 PortData(Port* port, AllocationSequence* seq)
129 : port_(port), sequence_(seq), state_(STATE_INIT) {
132 Port* port() { return port_; } function in class:cricket::BasicPortAllocatorSession::PortData
156 Port* port_;
171 void AddAllocatedPort(Port* port, AllocationSequence* seq
    [all...]
fakeportallocator.h 39 TestUDPPort* port = new TestUDPPort(thread, factory, network, ip, min_port, local
42 if (!port->Init()) {
43 delete port;
44 port = nullptr;
46 return port;
119 void AddPort(cricket::Port* port) {
120 port->set_component(component_);
121 port->set_generation(0);
122 port->SignalPortComplete.connect
    [all...]
  /external/webrtc/webrtc/p2p/base/
port.h 115 class Port : public PortInterface, public rtc::MessageHandler,
118 Port(rtc::Thread* thread,
124 Port(rtc::Thread* thread,
133 virtual ~Port();
148 // The thread on which this port performs its I/O.
151 // The factory used to create the sockets of this port.
173 // Identifies the generation that this port was created in.
194 // Fired when candidates are discovered by the port. When all candidates
195 // are discovered that belong to port SignalAddressReady is fired.
196 sigslot::signal2<Port*, const Candidate&> SignalCandidateReady
425 Port* port() { return port_; } function in class:cricket::Connection
426 const Port* port() const { return port_; } function in class:cricket::Connection
    [all...]
port.cc 11 #include "webrtc/p2p/base/port.h"
76 // The delay before we begin checking if this port is useless.
132 Port::Port(rtc::Thread* thread,
158 Port::Port(rtc::Thread* thread,
189 void Port::Construct() {
198 LOG_J(LS_INFO, this) << "Port created";
201 Port::~Port() {
    [all...]
port_unittest.cc 75 static Candidate GetCandidate(Port* port) {
76 assert(port->Candidates().size() >= 1);
77 return port->Candidates()[0];
80 static SocketAddress GetAddress(Port* port) {
81 return GetCandidate(port).address();
97 // Stub port class for testing STUN generation and processing.
98 class TestPort : public Port {
109 : Port(thread
324 Port* port() { return port_.get(); } function in class:TestChannel
516 RelayPort* port = CreateGturnPort(addr); local
720 TestPort* port = new TestPort(main_, "test", &socket_factory_, &network_, local
730 TestPort* port = CreateTestPort(addr, username, password); local
    [all...]
turnport_unittest.cc 37 using cricket::Port;
164 void OnTurnPortComplete(Port* port) {
167 void OnTurnPortError(Port* port) {
170 void OnTurnUnknownAddress(PortInterface* port, const SocketAddress& addr,
176 void OnTurnCreatePermissionResult(TurnPort* port,
183 void OnTurnRefreshResult(TurnPort* port, int code) {
190 void OnUdpPortComplete(Port* port) {
    [all...]
stunport_unittest.cc 54 const cricket::Port* port() const { return stun_port_.get(); } function in class:StunPortTest
120 void OnPortComplete(cricket::Port* port) {
125 void OnPortError(cricket::Port* port) {
155 // Test that we can create a STUN port
158 EXPECT_EQ("stun", port()->Type());
159 EXPECT_EQ(0U, port()->Candidates().size());
167 ASSERT_EQ(1U, port()->Candidates().size())
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
storport.h 249 IN PUCHAR Port);
255 IN PULONG Port);
261 IN PUSHORT Port);
285 IN PUCHAR Port,
292 IN PULONG Port,
299 IN PUSHORT Port,
306 IN PUCHAR Port,
313 IN PULONG Port,
320 IN PUSHORT Port,
srb.h 4 * Interface between SCSI miniport drivers and the SCSI port driver.
756 IN PUCHAR Port);
762 IN PULONG Port);
768 IN PUSHORT Port);
774 IN PUCHAR Port,
782 IN PULONG Port,
790 IN PUSHORT Port,
840 IN PUCHAR Port,
847 IN PULONG Port,
854 IN PUSHORT Port,
    [all...]
video.h 4 * Video port and miniport driver interface
591 IN ULONG Port,
598 IN ULONG Port,
606 IN ULONG Port,
613 IN ULONG Port,
621 IN ULONG Port,
628 IN ULONG Port,
828 /* Video port functions for miniports */
1077 IN PUCHAR Port,
1085 IN PULONG Port,
    [all...]
  /external/libunwind/src/setjmp/
siglongjmp.c 110 #error Port me
  /external/libunwind/src/x86/
siglongjmp.S 87 #error Port me
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/roboto/
awsqueryservice.py 23 Port = 443
42 if 'port' not in self.args:
43 self.args['port'] = self.Port
107 port = None
111 port = int(l[1])
114 if port and 'port' not in self.args:
115 self.args['port'] = port
    [all...]
  /external/libunwind/src/coredump/
_UCD_access_reg_freebsd.c 114 #error Port me
_UCD_access_reg_linux.c 117 #error Port me
  /external/libunwind/src/x86_64/
setcontext.S 82 #error Port me
getcontext.S 90 #error Port me
  /external/libunwind/tests/
crasher.c 86 #error Port me
  /external/tcpdump/
print-sctp.c 482 static inline int isForCES_port(u_short Port)
484 if (Port == CHAN_HP)
486 if (Port == CHAN_MP)
488 if (Port == CHAN_LP)

Completed in 944 milliseconds

1 2 3 4