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

1234567891011>>

/external/chromium_org/third_party/tlslite/scripts/
H A Dtls.py131 printError("Missing address")
134 #Split address into hostname/port tuple
135 address = argv[0]
136 address = address.split(":")
137 if len(address) != 2:
139 address = ( address[0], int(address[1]) )
142 retList = [address]
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dtestclient_unittest.cc28 SocketAddress addr = client.address(), from;
42 socket, loopback, server.address());
46 SocketAddress addr = client.address(), from;
50 EXPECT_EQ(from, server.address());
/external/chromium_org/tools/deep_memory_profiler/tests/
H A Ddmprof_test.py31 for address in self._addresses:
32 yield address
40 for address in address_list:
41 result[address] = self._mapping[address]
84 for address in self._TEST_FUNCTION_ADDRESS_LIST1:
85 self.assertEqual(self._TEST_FUNCTION_DICT[address],
86 symbol_mapping_cache.lookup(FUNCTION_SYMBOLS, address))
94 for address in self._TEST_FUNCTION_ADDRESS_LIST2:
95 self.assertEqual(self._TEST_FUNCTION_DICT[address],
[all...]
/external/chromium_org/v8/src/base/platform/
H A Dplatform-cygwin.cc151 // No library name found, just record the raw address range.
186 // For exectutable pages try and randomize the allocation address
192 // After three attempts give up and let the OS find an address to use.
211 void* address = ReserveRegion(request_size); local
212 if (address == NULL) return;
213 uint8_t* base = RoundUp(static_cast<uint8_t*>(address), alignment);
215 bool result = ReleaseRegion(address, request_size);
218 address = VirtualAlloc(base, size, MEM_RESERVE, PAGE_NOACCESS);
219 if (address != NULL) {
221 DCHECK(base == static_cast<uint8_t*>(address));
252 Commit(void* address, size_t size, bool is_executable) argument
257 Uncommit(void* address, size_t size) argument
277 Guard(void* address) argument
[all...]
/external/linux-tools-perf/perf-3.12.0/arch/frv/lib/
H A Dmemcpy.S113 add gr8,gr10,gr6 ; calculate expected end address
125 # GR8 - memcpy's current dest address
/external/lldb/include/lldb/Core/
H A DValueObjectMemory.h23 // A ValueObject that represents memory at a given address, viewed as some
32 const Address &address,
38 const Address &address,
76 const Address &address,
81 const Address &address,
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachVMMemory.h27 nub_size_t Read(task_t task, nub_addr_t address, void *data, nub_size_t data_count);
28 nub_size_t Write(task_t task, nub_addr_t address, const void *data, nub_size_t data_count);
30 nub_bool_t GetMemoryRegionInfo(task_t task, nub_addr_t address, DNBRegionInfo *region_info);
41 nub_size_t WriteRegion(task_t task, const nub_addr_t address, const void *data, const nub_size_t data_count);
/external/llvm/include/llvm/CodeGen/
H A DMachineCodeInfo.h27 void *Address; // The address of the function in memory
44 void *address() const { function in class:llvm::MachineCodeInfo
/external/llvm/test/MC/Mips/
H A Dcpload-bad.s13 # ASM: :[[@LINE-1]]:17: error: expected register containing function address
15 # ASM: :[[@LINE-1]]:17: error: expected register containing function address
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DParameterNames.java26 package gov.nist.javax.sip.address;
71 * CVS: address here. If this is your work then delete this line.
112 * CVS: address here. If this is your work then delete this line.
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DProxyAuthenticate.java31 import javax.sip.address.URI;
71 * @see gov.nist.javax.sip.header.AuthenticationHeader#setURI(javax.sip.address.URI)
103 * CVS: address here. If this is your work then delete this line.
142 * CVS: address here. If this is your work then delete this line.
H A DSipRequestLine.java3 import javax.sip.address.URI;
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DURLParser.java32 import gov.nist.javax.sip.address.GenericURI;
33 import gov.nist.javax.sip.address.SipUri;
34 import gov.nist.javax.sip.address.TelURLImpl;
35 import gov.nist.javax.sip.address.TelephoneNumber;
/external/nist-sip/java/javax/sip/
H A DClientTransaction.java3 import javax.sip.address.Hop;
/external/nist-sip/java/javax/sip/address/
H A DRouter.java1 package javax.sip.address;
/external/nist-sip/java/javax/sip/header/
H A DCallInfoHeader.java3 import javax.sip.address.URI;
H A DErrorInfoHeader.java4 import javax.sip.address.URI;
/external/smack/src/org/xbill/DNS/
H A DAPLRecord.java27 public final Object address; field in class:APLRecord.Element
30 Element(int family, boolean negative, Object address, int prefixLength) argument
34 this.address = address;
45 * @param address The IPv4 or IPv6 address.
50 Element(boolean negative, InetAddress address, int prefixLength) { argument
51 this(Address.familyOf(address), negative, address,
63 sb.append(((InetAddress) address)
[all...]
/external/chromium_org/extensions/browser/api/socket/
H A Dsocket.h57 // Note: |address| contains the resolved IP address, not the hostname of
60 virtual void Connect(const std::string& address,
64 virtual int Bind(const std::string& address, int port) = 0;
80 const std::string& address,
86 virtual int Listen(const std::string& address,
94 virtual bool GetPeerAddress(net::IPEndPoint* address) = 0;
95 virtual bool GetLocalAddress(net::IPEndPoint* address) = 0;
105 static void IPEndPointToStringAndPort(const net::IPEndPoint& address,
/external/chromium_org/native_client_sdk/src/tools/
H A Ddecode_dump.py76 def _DecodeAddressSegment(self, segments, address):
77 """Convert an address to a segment relative one, plus filename.
81 address: a process wide code address.
83 A tuple of filename and segment relative address.
89 if address >= start and address < end:
90 return (segment['dlpi_name'], address - segment['dlpi_addr'])
91 return ('(null)', address)
93 def _Addr2Line(self, segments, address)
[all...]
/external/chromium_org/net/websockets/
H A Dwebsocket_throttle.cc52 const IPEndPoint& address = *addr_iter; local
53 // If |address| is already processed, don't do it again.
54 if (!address_set.insert(address).second)
57 ConnectingAddressMap::iterator iter = addr_map_.find(address);
60 addr_map_.insert(make_pair(address, ConnectingQueue())).first;
66 DVLOG(1) << "Waiting on " << address.ToString();
87 const IPEndPoint& address = *addr_iter; local
88 // If |address| is already processed, don't do it again.
89 if (!address_set.insert(address).second)
92 ConnectingAddressMap::iterator map_iter = addr_map_.find(address);
130 const IPEndPoint& address = *addr_iter; local
[all...]
/external/chromium_org/ppapi/proxy/
H A Dfile_mapping_resource.cc37 void** address,
74 if (!address)
78 base::Bind(&FileMappingResource::DoMapBlocking, file_holder, *address,
90 OnMapCompleted(address, length, callback, map_result);
99 base::Unretained(address),
107 const void* address,
110 if (!address)
116 base::Bind(&FileMappingResource::DoUnmapBlocking, address, length));
143 // The plugin won't get the address, so doesn't have a chance to do the
148 map_result.address,
31 Map(PP_Instance , PP_Resource file_io, int64_t length, uint32_t protection, uint32_t flags, int64_t offset, void** address, scoped_refptr<TrackedCallback> callback) argument
106 Unmap(PP_Instance , const void* address, int64_t length, scoped_refptr<TrackedCallback> callback) argument
[all...]
/external/chromium_org/third_party/libaddressinput/chromium/
H A Dchrome_address_validator.cc62 const AddressData& address,
65 if (supplier_->IsPending(address.region_code)) {
67 addressinput::ValidateRequiredFields(address, filter, problems);
71 if (!supplier_->IsLoaded(address.region_code)) {
73 addressinput::ValidateRequiredFields(address, filter, problems);
80 validator_->Validate(address,
116 AddressData* address) const {
117 if (!supplier_->IsLoaded(address->region_code))
121 AddressData tmp(*address);
123 address
61 ValidateAddress( const AddressData& address, const FieldProblemMap* filter, FieldProblemMap* problems) const argument
[all...]
/external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
H A DSocks5BytestreamRequest.java211 String address = streamHost.getAddress() + ":" + streamHost.getPort();
213 // check to see if this address has been blacklisted
214 int failures = getConnectionFailures(address);
234 incrementConnectionFailures(address);
237 incrementConnectionFailures(address);
240 incrementConnectionFailures(address);
296 * Increments the connection failure counter by one for the given address.
298 * @param address the address the connection failure counter should be increased
300 private void incrementConnectionFailures(String address) { argument
311 getConnectionFailures(String address) argument
[all...]
/external/chromium_org/net/dns/
H A Dmdns_client.cc18 IPEndPoint GetMDnsIPEndPoint(const char* address) { argument
20 bool success = ParseIPLiteralToNumber(address,
30 IPAddressNumber address_any(multicast_addr.address().size());
40 return socket->JoinGroup(multicast_addr.address());
73 AddressFamily family = GetAddressFamily(network_list[i].address);

Completed in 618 milliseconds

1234567891011>>