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

1 2 3 4 56 7 8 91011>>

  /external/capstone/tests/
test_sparc.c 102 uint64_t address = 0x1000; local
116 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn);
126 printf("0x%" PRIx64 ":\t%s\t%s\n", insn[j].address, insn[j].mnemonic, insn[j].op_str);
129 printf("0x%" PRIx64 ":\n", insn[j-1].address + insn[j-1].size);
test_systemz.c 95 uint64_t address = 0x1000; local
109 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn);
119 printf("0x%" PRIx64 ":\t%s\t%s\n", insn[j].address, insn[j].mnemonic, insn[j].op_str);
122 printf("0x%" PRIx64 ":\n", insn[j-1].address + insn[j-1].size);
test_x86.c 199 uint64_t address = 0x1000; local
216 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn);
226 printf("0x%" PRIx64 ":\t%s\t%s\n", insn[j].address, insn[j].mnemonic, insn[j].op_str);
229 printf("0x%" PRIx64 ":\n", insn[j-1].address + insn[j-1].size);
test_xcore.c 90 uint64_t address = 0x1000; local
104 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn);
114 printf("0x%" PRIx64 ":\t%s\t%s\n", insn[j].address, insn[j].mnemonic, insn[j].op_str);
117 printf("0x%" PRIx64 ":\n", insn[j-1].address + insn[j-1].size);
  /external/curl/tests/libtest/
lib1515.c 119 char *address = libtest_arg2; local
127 port, address);
  /external/curl/tests/unit/
unit1607.c 28 /* retrieves ip address and port from a sockaddr structure.
65 /* host:port:address[,address]... */
73 const char *address[10]; member in struct:testcase
86 /* CURLOPT_RESOLVE address parsing tests */
127 int addressnum = sizeof(tests[i].address) / sizeof(*tests[i].address);
160 if(!addr && !tests[i].address[j])
163 if(tests[i].address[j] == &skip)
174 if(addr && !tests[i].address[j])
    [all...]
unit1609.c 28 /* retrieves ip address and port from a sockaddr structure.
65 /* host:port:address[,address]... */
73 const char *address[10]; member in struct:testcase
77 /* CURLOPT_RESOLVE address parsing test - to test the following defect fix:
81 for example, if there is "test.com:80" with address "1.1.1.1"
82 and we called CURLOPT_RESOLVE with address "2.2.2.2", then DNS entry needs to
85 2) when cached address is already there and close to expire, then by the
87 we set address using CURLOPT_RESOLVE,
89 if address already exist
    [all...]
  /external/google-breakpad/src/client/windows/unittests/
dump_analysis.cc 132 uintptr_t address = reinterpret_cast<uintptr_t>(addr_in); local
142 if (address >= range_start &&
143 address + structuresize < range_end) {
144 // The start address falls in the range, and the end address is
168 if (address >= range_start &&
169 address + structuresize < range_end) {
170 // The start address falls in the range, and the end address is
  /external/google-breakpad/src/processor/
static_address_map_unittest.cc 94 int address; local
102 found = addr_map[testcase].Retrieve(target, &entry, &address);
109 ASSERT_EQ(address, address_test);
124 // Retrive (aka, search) for target address and compare results from
132 // a target address not stored in the map.
  /external/grpc-grpc/src/core/ext/filters/client_channel/
lb_policy_factory.cc 62 const void* address, size_t address_len,
68 memcpy(target->address.addr, address, address_len);
69 target->address.len = static_cast<socklen_t>(address_len);
80 grpc_resolved_address address; local
81 if (!grpc_parse_uri(uri, &address)) return false;
82 grpc_lb_addresses_set_address(addresses, index, address.addr, address.len,
96 if (target1->address.len > target2->address.len) return 1
    [all...]
  /external/grpc-grpc/test/cpp/microbenchmarks/
bm_opencensus_plugin.cc 72 const std::string& address() { return server_address_; } function in class:final
87 server.address(), grpc::InsecureChannelCredentials()));
107 server.address(), grpc::InsecureChannelCredentials()));
  /external/jacoco/org.jacoco.ant/src/org/jacoco/ant/
DumpTask.java 35 private String address = AgentOptions.DEFAULT_ADDRESS; field in class:DumpTask
53 * IP Address or hostname to connect to. Defaults to <code>localhost</code>
55 * @param address
56 * IP Address or hostname to connect to
58 public void setAddress(final String address) {
59 this.address = address;
131 protected void onConnecting(final InetAddress address,
133 log(format("Connecting to %s:%s", address,
147 final ExecFileLoader loader = client.dump(address, port)
    [all...]
  /external/libchrome/base/debug/
stack_trace_android.cc 86 // relocatable address and library names so host computers can use tools to
106 // Subtract one as return address of function may be in the next
108 uintptr_t address = reinterpret_cast<uintptr_t>(trace_[i]) - 1; local
112 if (address >= iter->start && address < iter->end &&
119 *os << base::StringPrintf("#%02zd " FMT_ADDR " ", i, address);
122 uintptr_t rel_pc = address - iter->start + iter->offset;
  /external/libchrome/base/test/
test_shared_memory_util.cc 55 void* address = local
57 const bool success = (address != nullptr) && (address != MAP_FAILED);
60 munmap(address, kDataSize); // Cleanup.
  /external/llvm/bindings/python/llvm/
object.py 71 print symbol.address # NOT OK. We didn't look up this property before.
225 def address(self): member in class:Section
226 """The address of this section, in long bytes."""
281 getattr(self, 'address')
314 def address(self): member in class:Symbol
315 """The address of this symbol, in long bytes."""
347 getattr(self, 'address')
420 getattr(self, 'address')
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_buffer.h 25 /* Resources, if mapped into the GPU's address space, are guaranteed to
28 * The address of a resource will lie within the nouveau_bo referenced,
35 uint64_t address; /* virtual address (nv50+) */ member in struct:nv04_resource
83 /* is resource mapped into the GPU's address space (i.e. VRAM or GART) ? */
106 /* Copy data to a scratch buffer and return address & bo the data resides in.
  /external/nist-sip/java/gov/nist/javax/sip/address/
AddressFactoryImpl.java 26 package gov.nist.javax.sip.address;
31 import javax.sip.address.*;
34 * Implementation of the JAIN-SIP address factory.
46 public class AddressFactoryImpl implements javax.sip.address.AddressFactory {
56 *Create an empty address object.
61 public javax.sip.address.Address createAddress() {
65 * Creates an Address with the new display name and URI attribute
69 * address. A <code>null</code> value does not set the display name.
70 * @param uri - the new URI value of the address
    [all...]
GenericURI.java 26 package gov.nist.javax.sip.address;
29 import javax.sip.address.URI;
39 public class GenericURI extends NetObject implements javax.sip.address.URI {
UserInfo.java 33 package gov.nist.javax.sip.address;
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PServedUser.java 30 import gov.nist.javax.sip.address.AddressImpl;
45 public PServedUser(AddressImpl address)
48 this.address = address;
130 retval.append(address.encode());
  /external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
GenericListeningConnector.java 45 static final String ARG_ADDRESS = "address";
55 * and optionally an "address" connector argument.
70 getString("generic_listening.address.label"),
71 getString("generic_listening.address"),
98 * have "address" and "timeout" connector arguments.
104 public String startListening(String address, Map<String,? extends Connector.Argument> args)
113 listener = transportService.startListening(address);
115 return listener.address();
122 String address = argument(ARG_ADDRESS, args).value(); local
123 return startListening(address, args)
    [all...]
RawCommandLineLauncher.java 38 static private final String ARG_ADDRESS = "address";
93 getString("raw.address.label"),
94 getString("raw.address"),
106 String address = argument(ARG_ADDRESS, arguments).value(); local
115 TransportService.ListenKey listener = transportService.startListening(address);
119 address, listener, transportService);
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
basic_endpoint.hpp 16 #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 associated with the endpoint
169 void address(const asio::ip::address& addr) function in class:asio::ip::basic_endpoint
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue29/
BigJavaBean.java 23 private String address; field in class:BigJavaBean
32 public BigJavaBean(int id, String name, String address, String description) {
35 this.address = address;
49 return address;
80 result = prime * result + ((address == null) ? 0 : address.hashCode());
98 if (address == null) {
99 if (other.address != null)
101 } else if (!address.equals(other.address)
    [all...]
  /external/strace/tests/
nlattr_inet_diag_req_v2.c 42 static const char address[] = "10.11.12.13"; variable
65 if (!inet_pton(AF_INET, address, req->id.idiag_src) ||
66 !inet_pton(AF_INET, address, req->id.idiag_dst))
83 msg_len, address, address);
169 if (!inet_pton(AF_INET, address, &addr))
206 printf("addr=inet_addr(\"%s\")}}", address));

Completed in 1229 milliseconds

1 2 3 4 56 7 8 91011>>