Searched refs:address (Results 226 - 250 of 1856) sorted by relevance

1234567891011>>

/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java35 * Parse the host address and port number of an extended address. This encoded format is used by
38 * The client network address can be in IPv4 format (e.g., "132.235.1.2") or
70 * Parse a 32-bit IP address and 16-bit port number from the String[] of FTP command parameters.
74 * of a 32-bit internet host address and a 16-bit TCP port address. This address
79 * where h1 is the high order 8 bits of the internet host address, and p1 is the
94 byte[] address = {host1, host2, host3, host4};
97 inetAddress = InetAddress.getByAddress(address);
[all...]
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java35 * Parse the host address and port number of an extended address. This encoded format is used by
38 * The client network address can be in IPv4 format (e.g., "132.235.1.2") or
70 * Parse a 32-bit IP address and 16-bit port number from the String[] of FTP command parameters.
74 * of a 32-bit internet host address and a 16-bit TCP port address. This address
79 * where h1 is the high order 8 bits of the internet host address, and p1 is the
94 byte[] address = {host1, host2, host3, host4};
97 inetAddress = InetAddress.getByAddress(address);
[all...]
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java35 * Parse the host address and port number of an extended address. This encoded format is used by
38 * The client network address can be in IPv4 format (e.g., "132.235.1.2") or
70 * Parse a 32-bit IP address and 16-bit port number from the String[] of FTP command parameters.
74 * of a 32-bit internet host address and a 16-bit TCP port address. This address
79 * where h1 is the high order 8 bits of the internet host address, and p1 is the
94 byte[] address = {host1, host2, host3, host4};
97 inetAddress = InetAddress.getByAddress(address);
[all...]
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java35 * Parse the host address and port number of an extended address. This encoded format is used by
38 * The client network address can be in IPv4 format (e.g., "132.235.1.2") or
70 * Parse a 32-bit IP address and 16-bit port number from the String[] of FTP command parameters.
74 * of a 32-bit internet host address and a 16-bit TCP port address. This address
79 * where h1 is the high order 8 bits of the internet host address, and p1 is the
94 byte[] address = {host1, host2, host3, host4};
97 inetAddress = InetAddress.getByAddress(address);
[all...]
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java35 * Parse the host address and port number of an extended address. This encoded format is used by
38 * The client network address can be in IPv4 format (e.g., "132.235.1.2") or
70 * Parse a 32-bit IP address and 16-bit port number from the String[] of FTP command parameters.
74 * of a 32-bit internet host address and a 16-bit TCP port address. This address
79 * where h1 is the high order 8 bits of the internet host address, and p1 is the
94 byte[] address = {host1, host2, host3, host4};
97 inetAddress = InetAddress.getByAddress(address);
[all...]
/external/parameter-framework/asio/include/asio/ip/
H A Dbasic_endpoint.hpp16 #include "asio/ip/address.hpp"
55 /// order. The IP address will be the any address (i.e. INADDR_ANY or
76 /// Construct an endpoint using a port number and an IP address. This
79 basic_endpoint(const asio::ip::address& addr, unsigned short port_num)
162 /// Get the IP address associated with the endpoint.
163 asio::ip::address address() const function in class:asio::ip::basic_endpoint
165 return impl_.address();
168 /// Set the IP address associate
169 void address(const asio::ip::address& addr) function in class:asio::ip::basic_endpoint
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/ip/
H A Dbasic_endpoint.hpp16 #include "asio/ip/address.hpp"
55 /// order. The IP address will be the any address (i.e. INADDR_ANY or
76 /// Construct an endpoint using a port number and an IP address. This
79 basic_endpoint(const asio::ip::address& addr, unsigned short port_num)
162 /// Get the IP address associated with the endpoint.
163 asio::ip::address address() const function in class:asio::ip::basic_endpoint
165 return impl_.address();
168 /// Set the IP address associate
169 void address(const asio::ip::address& addr) function in class:asio::ip::basic_endpoint
[all...]
/external/llvm/lib/Support/
H A DStreamingMemoryObject.cpp30 const uint8_t *getPointer(uint64_t address, uint64_t size) const override;
31 bool isValidAddress(uint64_t address) const override {
32 return validAddress(address);
41 bool validAddress(uint64_t address) const {
42 return static_cast<std::ptrdiff_t>(address) < LastChar - FirstChar;
65 const uint8_t *RawMemoryObject::getPointer(uint64_t address, argument
67 return FirstChar + address;
74 bool StreamingMemoryObject::isValidAddress(uint64_t address) const {
75 if (ObjectSize && address < ObjectSize) return true;
76 return fetchToPos(address);
[all...]
/external/swiftshader/third_party/subzero/pnacl-llvm/
H A DStreamingMemoryObject.cpp30 const uint8_t *getPointer(uint64_t address, uint64_t size) const override;
31 bool isValidAddress(uint64_t address) const override {
32 return validAddress(address);
41 bool validAddress(uint64_t address) const {
42 return static_cast<std::ptrdiff_t>(address) < LastChar - FirstChar;
65 const uint8_t *RawMemoryObject::getPointer(uint64_t address, argument
67 return FirstChar + address;
74 bool StreamingMemoryObject::isValidAddress(uint64_t address) const {
75 if (ObjectSize && address < ObjectSize) return true;
76 return fetchToPos(address);
[all...]
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
H A DPasvCommandHandler.java34 * bytes of the 32-bit internet host address of the server, and <i>p1..p2</i> are the 2
35 * bytes of the 16-bit TCP port address of the data connection on the server to which
81 byte[] address = host.getAddress();
82 for (int i = 0; i < address.length; i++) {
83 int positiveValue = (address[i] >=0) ? address[i] : 256 + address[i];
/external/mockftpserver/tags/1.0/src/main/java/org/mockftpserver/stub/command/
H A DPasvCommandHandler.java34 * bytes of the 32-bit internet host address of the server, and <i>p1..p2</i> are the 2
35 * bytes of the 16-bit TCP port address of the data connection on the server to which
81 byte[] address = host.getAddress();
82 for (int i = 0; i < address.length; i++) {
83 int positiveValue = (address[i] >=0) ? address[i] : 256 + address[i];
/external/mockftpserver/tags/1.1/src/main/java/org/mockftpserver/stub/command/
H A DPasvCommandHandler.java34 * bytes of the 32-bit internet host address of the server, and <i>p1..p2</i> are the 2
35 * bytes of the 16-bit TCP port address of the data connection on the server to which
81 byte[] address = host.getAddress();
82 for (int i = 0; i < address.length; i++) {
83 int positiveValue = (address[i] >=0) ? address[i] : 256 + address[i];
/external/mockftpserver/tags/1.2/src/main/java/org/mockftpserver/stub/command/
H A DPasvCommandHandler.java34 * bytes of the 32-bit internet host address of the server, and <i>p1..p2</i> are the 2
35 * bytes of the 16-bit TCP port address of the data connection on the server to which
81 byte[] address = host.getAddress();
82 for (int i = 0; i < address.length; i++) {
83 int positiveValue = (address[i] >=0) ? address[i] : 256 + address[i];
/external/mockftpserver/tags/1.2.1/src/main/java/org/mockftpserver/stub/command/
H A DPasvCommandHandler.java34 * bytes of the 32-bit internet host address of the server, and <i>p1..p2</i> are the 2
35 * bytes of the 16-bit TCP port address of the data connection on the server to which
81 byte[] address = host.getAddress();
82 for (int i = 0; i < address.length; i++) {
83 int positiveValue = (address[i] >=0) ? address[i] : 256 + address[i];
/external/mockftpserver/tags/1.2.2/src/main/java/org/mockftpserver/stub/command/
H A DPasvCommandHandler.java34 * bytes of the 32-bit internet host address of the server, and <i>p1..p2</i> are the 2
35 * bytes of the 16-bit TCP port address of the data connection on the server to which
81 byte[] address = host.getAddress();
82 for (int i = 0; i < address.length; i++) {
83 int positiveValue = (address[i] >=0) ? address[i] : 256 + address[i];
/external/mockftpserver/tags/1.2.3/src/main/java/org/mockftpserver/stub/command/
H A DPasvCommandHandler.java34 * bytes of the 32-bit internet host address of the server, and <i>p1..p2</i> are the 2
35 * bytes of the 16-bit TCP port address of the data connection on the server to which
81 byte[] address = host.getAddress();
82 for (int i = 0; i < address.length; i++) {
83 int positiveValue = (address[i] >=0) ? address[i] : 256 + address[i];
/external/mockftpserver/tags/1.2.4/src/main/java/org/mockftpserver/stub/command/
H A DPasvCommandHandler.java34 * bytes of the 32-bit internet host address of the server, and <i>p1..p2</i> are the 2
35 * bytes of the 16-bit TCP port address of the data connection on the server to which
81 byte[] address = host.getAddress();
82 for (int i = 0; i < address.length; i++) {
83 int positiveValue = (address[i] >=0) ? address[i] : 256 + address[i];
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/java/org/mockftpserver/stub/command/
H A DPasvCommandHandler.java34 * bytes of the 32-bit internet host address of the server, and <i>p1..p2</i> are the 2
35 * bytes of the 16-bit TCP port address of the data connection on the server to which
81 byte[] address = host.getAddress();
82 for (int i = 0; i < address.length; i++) {
83 int positiveValue = (address[i] >=0) ? address[i] : 256 + address[i];
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPServedUser.java30 import gov.nist.javax.sip.address.AddressImpl;
45 public PServedUser(AddressImpl address) argument
48 this.address = address;
130 retval.append(address.encode());
/external/v8/src/ic/arm/
H A Dic-arm.cc35 bool CompareIC::HasInlinedSmiCode(Address address) { argument
36 // The address of the instruction following the call.
38 Assembler::return_address_from_call_start(address);
47 void PatchInlinedSmiCode(Isolate* isolate, Address address, argument
50 Assembler::return_address_from_call_start(address);
70 LOG(isolate, PatchIC(address, cmp_instruction_address, delta));
/external/v8/src/ic/arm64/
H A Dic-arm64.cc35 bool CompareIC::HasInlinedSmiCode(Address address) { argument
36 // The address of the instruction following the call.
37 Address info_address = Assembler::return_address_from_call_start(address);
47 void PatchInlinedSmiCode(Isolate* isolate, Address address, argument
53 Address info_address = Assembler::return_address_from_call_start(address);
62 LOG(isolate, PatchIC(address, info_address, info.SmiCheckDelta()));
/external/v8/src/ic/ppc/
H A Dic-ppc.cc35 bool CompareIC::HasInlinedSmiCode(Address address) { argument
36 // The address of the instruction following the call.
38 Assembler::return_address_from_call_start(address);
50 void PatchInlinedSmiCode(Isolate* isolate, Address address, argument
53 Assembler::return_address_from_call_start(address);
73 LOG(isolate, PatchIC(address, cmp_instruction_address, delta));
/external/v8/tools/testrunner/objects/
H A Dpeer.py30 def __init__(self, address, jobs, rel_perf, pubkey):
31 self.address = address # string: IP address
44 (self.address, self.jobs, self.relative_performance,
74 return [self.address, self.jobs, self.relative_performance]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A DgenX_blorp_exec.c52 void *location, struct blorp_address address, uint32_t delta)
59 return intel_batchbuffer_reloc64(&brw->batch, address.buffer, offset,
60 address.read_domains,
61 address.write_domain,
62 address.offset + delta);
64 return intel_batchbuffer_reloc(&brw->batch, address.buffer, offset,
65 address.read_domains,
66 address.write_domain,
67 address.offset + delta);
73 struct blorp_address address, uint32_
51 blorp_emit_reloc(struct blorp_batch *batch, void *location, struct blorp_address address, uint32_t delta) argument
72 blorp_surface_reloc(struct blorp_batch *batch, uint32_t ss_offset, struct blorp_address address, uint32_t delta) argument
[all...]
/external/conscrypt/testing/src/main/java/org/conscrypt/
H A DChannelType.java41 SSLSocket newClientSocket(SSLSocketFactory factory, InetAddress address, int port)
43 return clientMode(factory.createSocket(address, port));
58 SSLSocket newClientSocket(SSLSocketFactory factory, InetAddress address, int port)
60 Socket wrapped = new Socket(address, port);
63 return clientMode(factory.createSocket(wrapped, address.getHostName(), port, true));
84 SSLSocket newClientSocket(SSLSocketFactory factory, InetAddress address, int port)
86 Socket wrapped = SocketChannel.open(new InetSocketAddress(address, port)).socket();
87 return clientMode(factory.createSocket(wrapped, address.getHostName(), port, true));
114 abstract SSLSocket newClientSocket(SSLSocketFactory factory, InetAddress address, int port) argument

Completed in 855 milliseconds

1234567891011>>