HomeSort by relevance Sort by last modified time
    Searched defs:address (Results 76 - 100 of 996) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/deqp/execserver/
xsTcpServer.cpp 36 de::SocketAddress address; local
37 address.setFamily(family);
38 address.setPort(port);
39 address.setType(DE_SOCKETTYPE_STREAM);
40 address.setProtocol(DE_SOCKETPROTOCOL_TCP);
42 m_socket.listen(address);
  /external/deqp/executor/
xeLocalTcpIpLink.cpp 70 de::SocketAddress address; local
71 address.setFamily (DE_SOCKETFAMILY_INET4);
72 address.setProtocol (DE_SOCKETPROTOCOL_TCP);
73 address.setHost ("127.0.0.1");
74 address.setPort (port);
85 m_link.connect(address);
  /external/google-breakpad/src/processor/
address_map_unittest.cc 81 AddressType address; local
84 ASSERT_FALSE(test_map.Retrieve(0, &entry, &address));
85 ASSERT_FALSE(test_map.Retrieve(INT_MIN, &entry, &address));
86 ASSERT_FALSE(test_map.Retrieve(INT_MAX, &entry, &address));
92 ASSERT_TRUE(test_map.Retrieve(1, &entry, &address));
98 ASSERT_FALSE(test_map.Retrieve(0, &entry, &address));
99 ASSERT_FALSE(test_map.Retrieve(INT_MIN, &entry, &address));
100 ASSERT_FALSE(test_map.Retrieve(INT_MAX, &entry, &address));
105 ASSERT_FALSE(test_map.Retrieve(9, &entry, &address));
106 ASSERT_TRUE(test_map.Retrieve(10, &entry, &address));
    [all...]
source_line_resolver_base_types.h 72 : address(addr)
77 MemAddr address; member in struct:google_breakpad::SourceLineResolverBase::Line
89 : name(function_name), address(function_address), size(code_size),
93 MemAddr address; member in struct:google_breakpad::SourceLineResolverBase::Function
106 address(set_address),
110 MemAddr address; member in struct:google_breakpad::SourceLineResolverBase::PublicSymbol
134 // Looks up the given relative address, and fills the StackFrame struct
138 // If Windows stack walking information is available covering ADDRESS,
146 // If CFI stack walking information is available covering ADDRESS,
  /external/grpc-grpc/src/core/ext/filters/client_channel/
lb_policy_factory.h 31 // representation of an LB address
37 /** A resolved address alongside any LB related information associated with it.
45 grpc_resolved_address address; member in struct:grpc_lb_address
72 /** Sets the value of the address at index \a index of \a addresses.
73 * \a address is a socket address of length \a address_len.
76 const void* address, size_t address_len,
80 /** Sets the value of the address at index \a index of \a addresses from \a uri.
104 // Returns true if addresses contains at least one balancer address.
  /external/grpc-grpc/test/cpp/server/
server_builder_with_socket_mutator_test.cc 90 auto address = "localhost:" + std::to_string(grpc_pick_unused_port_or_die()); local
98 builder.AddListeningPort(address, InsecureServerCredentials());
server_request_call_test.cc 47 const string address = s.str(); local
50 builder.AddListeningPort(address, InsecureServerCredentials());
56 std::thread t([address, &service, &cq, &mu, &shutting_down] {
118 CreateChannel(address, InsecureChannelCredentials()));
  /external/grpc-grpc/test/cpp/util/
metrics_server.cc 103 const grpc::string address = "0.0.0.0:" + grpc::to_string(port); local
106 builder.AddListeningPort(address, grpc::InsecureServerCredentials());
111 address.c_str());
  /external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
DumpMojo.java 72 * IP address or hostname to connect to.
74 @Parameter(property = "jacoco.address")
75 private String address; field in class:DumpMojo
95 protected void onConnecting(final InetAddress address,
98 format("Connecting to %s:%s", address,
112 final ExecFileLoader loader = client.dump(address, port);
  /external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/commands/
Dump.java 30 @Option(name = "--address", usage = "host name or ip address to connect to (default localhost)", metaVar = "<address>")
31 String address = AgentOptions.DEFAULT_ADDRESS; field in class:Dump
55 protected void onConnecting(final InetAddress address,
57 out.printf("[INFO] Connecting to %s:%s.%n", address,
69 final ExecFileLoader loader = client.dump(address, port);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
AddressParser.java 28 import gov.nist.javax.sip.address.*;
45 public AddressParser(String address) {
46 this.lexer = new Lexer("charLexer", address);
92 public AddressImpl address( boolean inclParams ) throws ParseException { method in class:AddressParser
94 dbg_enter("address");
120 throw createParseException("Bad address spec");
125 dbg_leave("address");
137 * Fix for issue #230, restructured the code such that parsing for any address appearing without '<' '>'
166 * CVS: address here. If this is your work then delete this line.
210 * CVS: address here. If this is your work then delete this line
    [all...]
  /external/nist-sip/java/javax/sip/address/
Address.java 1 package javax.sip.address;
6 public interface Address extends Cloneable, Serializable {
  /external/oj-libjdwp/src/share/classes/com/sun/jdi/connect/spi/
TransportService.java 105 * multiple concurrent connections to a single address that
160 * Attaches to the specified address.
162 * <p> Attaches to the specified address and returns a connection
167 * First, a connection is established to specified address. This
174 * @param address
175 * The address of the target VM.
213 * If the address is invalid or the value of the
218 public abstract Connection attach(String address, long attachTimeout,
232 * service from listening on an address.
240 public abstract String address(); method in class:TransportService.ListenKey
    [all...]
  /external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
GenericAttachingConnector.java 47 static final String ARG_ADDRESS = "address";
56 * "address" connector argument.
72 getString("generic_attaching.address.label"),
73 getString("generic_attaching.address"),
99 * will have address and timeout connector arguments.
106 * Attach to a target VM using the specified address and Connector arguments.
108 public VirtualMachine attach(String address, Map<String, ? extends Connector.Argument> args)
116 Connection connection = transportService.attach(address, timeout, 0);
121 * Attach to a target VM using the specified arguments - the address
122 * of the target VM is specified by the <code>address</code> connecto
129 String address = argument(ARG_ADDRESS, args).value(); local
    [all...]
SocketAttachingConnector.java 78 * Create an "address" from the hostname and port connector
89 String address = host + argument(ARG_PORT, arguments).value(); local
90 return super.attach(address, arguments);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
FakeDns.java 44 public InetAddress address(int index) { method in class:FakeDns
  /external/perfetto/src/profiling/memory/
bookkeeping_unittest.cc 148 uint64_t address; member in struct:perfetto::profiling::__anon35840::Operation
177 hd.RecordFree(operation.address, operation.sequence_number,
180 hd.RecordMalloc(*operation.stack, operation.address, operation.bytes,
  /external/strace/tests/
nlattr_inet_diag_msg.c 52 static const char address[] = "10.11.12.13"; variable
70 if (!inet_pton(AF_INET, address, msg->id.idiag_src) ||
71 !inet_pton(AF_INET, address, msg->id.idiag_dst))
88 msg_len, address, address);
nlattr_smc_diag_msg.c 52 static const char address[] = "12.34.56.78"; variable
69 if (!inet_pton(AF_INET, address, msg->id.idiag_src) ||
70 !inet_pton(AF_INET, address, msg->id.idiag_dst))
86 msg_len, address, address);
  /external/strace/tests-m32/
nlattr_inet_diag_msg.c 52 static const char address[] = "10.11.12.13"; variable
70 if (!inet_pton(AF_INET, address, msg->id.idiag_src) ||
71 !inet_pton(AF_INET, address, msg->id.idiag_dst))
88 msg_len, address, address);
nlattr_smc_diag_msg.c 52 static const char address[] = "12.34.56.78"; variable
69 if (!inet_pton(AF_INET, address, msg->id.idiag_src) ||
70 !inet_pton(AF_INET, address, msg->id.idiag_dst))
86 msg_len, address, address);
  /external/strace/tests-mx32/
nlattr_inet_diag_msg.c 52 static const char address[] = "10.11.12.13"; variable
70 if (!inet_pton(AF_INET, address, msg->id.idiag_src) ||
71 !inet_pton(AF_INET, address, msg->id.idiag_dst))
88 msg_len, address, address);
nlattr_smc_diag_msg.c 52 static const char address[] = "12.34.56.78"; variable
69 if (!inet_pton(AF_INET, address, msg->id.idiag_src) ||
70 !inet_pton(AF_INET, address, msg->id.idiag_dst))
86 msg_len, address, address);
  /external/u-boot/drivers/usb/gadget/
ep0.c 384 int address; local
426 * address to the client.
545 /* check if this is a re-address, reset first if it is (this shouldn't be possible) */
552 address = le16_to_cpu (request->wValue);
553 if ((address & 0x7f) != address) {
554 dbg_ep0 (1, "invalid address %04x %04x",
555 address, address & 0x7f);
558 device->address = address
    [all...]
  /external/v8/src/
maybe-handles.h 64 // Returns the raw address where this handle is stored. This should only be
66 V8_INLINE Address address() const { return bit_cast<Address>(location_); } function in class:v8::internal::final

Completed in 977 milliseconds

1 2 34 5 6 7 8 91011>>