HomeSort by relevance Sort by last modified time
    Searched defs:address (Results 126 - 150 of 1950) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
connection.py 45 def __init__(self, address=None, family=None, backlog=1):
54 address = property(lambda self: self._backlog_queue) variable in class:Listener
57 def Client(address):
59 address.put((_out, _in))
  /system/bt/types/
raw_address.h 23 /** Bluetooth Address */
28 uint8_t address[kLength]; member in class:final
34 return (std::memcmp(address, rhs.address, sizeof(address)) < 0);
37 return (std::memcmp(address, rhs.address, sizeof(address)) == 0);
49 // not represent a Bluetooth address, |to| is not modified and this function
53 // Copies |from| raw Bluetooth address octets to the local object
    [all...]
  /system/core/libpixelflinger/tests/arch-mips64/disassembler/
mips64_disassembler_test.cpp 171 //printf("DBG code address: %lx\n", (uint64_t)(&test->code));
174 char temp[256], address[16]; local
176 sprintf(address, "0x%lx", loc);
177 strcat(temp, address);
192 //printf("DBG code address: %lx\n", (uint64_t)(&test->code));
195 char temp[256], address[16]; local
197 sprintf(address, "0x%08lx", loc);
198 strcat(temp, address);
  /system/core/libunwindstack/tests/
DwarfCfaLogTest.cpp 214 TypeParam address; local
218 address = 0x81234578U;
222 address = 0x8123456712345678ULL;
226 memcpy(&buffer[1], &address, sizeof(address));
241 this->fde_.pc_start = address + 0x10;
DwarfCfaTest.cpp 258 TypeParam address; local
262 address = 0x81234578U;
266 address = 0x8123456712345678ULL;
270 memcpy(&buffer[1], &address, sizeof(address));
278 ASSERT_EQ(address, this->cfa_->cur_pc());
287 this->fde_.pc_start = address + 0x10;
291 ASSERT_EQ(address, this->cfa_->cur_pc());
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/address/
AddressImpl.java 29 package gov.nist.javax.sip.address;
31 import javax.sip.address.*;
37 * Address structure. Imbeds a URI and adds a display name.
48 implements javax.sip.address.Address {
71 /** address field
73 protected GenericURI address; field in class:AddressImpl
75 /** Match on the address only.
83 if (!(other instanceof Address))
92 return address.match(that.address)
    [all...]
  /frameworks/base/core/java/android/net/
LinkAddress.java 39 * Identifies an IP address on a network link.
43 * <li>An IP address and prefix length (e.g., {@code 2001:db8::1/64} or {@code 192.0.2.1/24}).
44 * The address must be unicast, as multicast addresses cannot be assigned to interfaces.
45 * <li>Address flags: A bitmask of {@code OsConstants.IFA_F_*} values representing properties
46 * of the address (e.g., {@code android.system.OsConstants.IFA_F_OPTIMISTIC}).
47 * <li>Address scope: One of the {@code OsConstants.IFA_F_*} values; defines the scope in which
48 * the address is unique (e.g.,
55 * IPv4 or IPv6 address.
57 private InetAddress address; field in class:LinkAddress
65 * Address flags. A bitmask of IFA_F_* values
    [all...]
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
TestUtil.java 19 import androidx.room.integration.testapp.vo.Address;
94 private static Address createAddress() {
95 Address address = new Address(); local
96 address.setCoordinates(createCoordinates());
97 address.setPostCode((int) (Math.random() * 1000 + 1000));
98 address.setState(UUID.randomUUID().toString().substring(0, 2));
99 address.setStreet(UUID.randomUUID().toString());
100 return address;
    [all...]
  /art/compiler/debug/
elf_symtab_writer.h 68 uint64_t address = info.code_address; local
69 address += info.is_code_address_text_relative ? text->GetAddress() : 0;
70 mapping_symbol_address = std::min(mapping_symbol_address, address);
97 uint64_t address = info.code_address; local
98 address += info.is_code_address_text_relative ? text->GetAddress() : 0;
100 address += CompiledMethod::CodeDelta(info.isa);
101 symtab->Add(name_offset, text, address, info.code_size, STB_GLOBAL, STT_FUNC);
  /dalvik/libdex/
DexCatch.h 32 u4 address; /* handler address */ member in struct:DexCatchHandler
61 pIterator->handler.address = 0;
104 pIterator->handler.address = readUnsignedLeb128(&pIterator->pEncodedData);
115 u4 address);
117 /* Find the handler associated with a given address, if any.
121 const DexCode* pCode, u4 address) {
134 if (address < start) {
140 if (address >= end) {
149 address);
    [all...]
  /development/tools/bugreport/src/com/android/bugreport/stacks/
LockSnapshot.java 33 public String address; field in class:LockSnapshot
43 this.address = that.address;
55 return this.address == that.address
56 || (this.address != null && that.address != null
57 && this.address.equals(that.address));
63 if (this.address != null)
    [all...]
  /external/curl/tests/libtest/
lib1506.c 43 char *address = libtest_arg2; local
50 i + 1, port, address);
  /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/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/libmojo/base/android/linker/
linker_jni.cc 144 // Use Android ASLR to create a random address into which we expect to be
146 // address we get from mmap and assume we can re-map into it later. This
148 // then loads the library normally at any available address.
150 // Returns the address selected by ASLR, or 0 on error.
155 // Pad the requested address space size for a Breakpad guard region.
159 void* address = local
161 if (address == MAP_FAILED) {
162 LOG_INFO("Random base load address not determinable");
165 munmap(address, bytes);
168 // Allow for a Breakpad guard region ahead of the returned address
    [all...]
  /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/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
FakeDns.java 44 public InetAddress address(int index) { method in class:FakeDns
  /external/strace/tests/
nlattr_inet_diag_msg.c 40 static const char address[] = "10.11.12.13"; variable
58 if (!inet_pton(AF_INET, address, msg->id.idiag_src) ||
59 !inet_pton(AF_INET, address, msg->id.idiag_dst))
76 msg_len, address, address);
  /external/strace/tests-m32/
nlattr_inet_diag_msg.c 40 static const char address[] = "10.11.12.13"; variable
58 if (!inet_pton(AF_INET, address, msg->id.idiag_src) ||
59 !inet_pton(AF_INET, address, msg->id.idiag_dst))
76 msg_len, address, address);
  /external/strace/tests-mx32/
nlattr_inet_diag_msg.c 40 static const char address[] = "10.11.12.13"; variable
58 if (!inet_pton(AF_INET, address, msg->id.idiag_src) ||
59 !inet_pton(AF_INET, address, msg->id.idiag_dst))
76 msg_len, address, address);

Completed in 1096 milliseconds

1 2 3 4 56 7 8 91011>>