HomeSort by relevance Sort by last modified time
    Searched refs:addresses (Results 51 - 75 of 291) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/net/socket/
client_socket_factory.h 43 const AddressList& addresses,
  /external/chromium_org/ppapi/cpp/
network_list.h 43 /// Gets the list of IP addresses for the network interface with the
45 /// <code>addresses</code>.
47 std::vector<NetAddress>* addresses) const;
  /external/chromium_org/third_party/libjingle/source/talk/base/
nethelpers.cc 42 std::vector<IPAddress>* addresses) {
43 if (!addresses) {
46 addresses->clear();
61 addresses->push_back(ip);
nethelpers.h 61 const std::vector<IPAddress>& addresses() const { return addresses_; } function in class:talk_base::AsyncResolver
  /external/chromium_org/tools/tcmalloc/
print-live-objects.py 42 addresses = set()
45 addresses.add(frame)
47 for addr in addresses:
55 for address, symbol, location in zip(addresses, syms[::2], syms[1::2]):
  /frameworks/ex/common/java/com/android/common/contacts/
DataUsageStatUpdater.java 84 final Set<String> addresses = new HashSet<String>(); local
88 addresses.add(token.getAddress());
91 return updateWithAddress(addresses);
96 * Update usage statistics information using a list of email addresses.
105 public boolean updateWithAddress(Collection<String> addresses) {
107 Log.d(TAG, "updateWithAddress: " + Arrays.toString(addresses.toArray()));
109 if (addresses != null && !addresses.isEmpty()) {
112 final String[] questionMarks = new String[addresses.size()];
114 whereArgs.addAll(addresses);
    [all...]
  /external/chromium/net/base/
host_resolver.cc 51 AddressList* addresses,
63 info, addresses, transient_callback, &request, net_log);
  /external/chromium/net/data/proxy_resolver_v8_unittest/
simple.js 1 // PAC script which uses isInNet on both IP addresses and hosts, and calls
  /external/chromium/third_party/libevent/test/
regress_dns.c 73 void *addresses, void *arg)
93 struct in6_addr *in6_addrs = addresses;
110 struct in_addr *in_addrs = addresses;
124 fprintf(stderr, "%s ", *(char **)addresses);
237 void *addresses, void *arg)
251 struct in_addr *in_addrs = addresses;
262 struct in6_addr *in6_addrs = addresses;
275 char **addrs = addresses;
  /external/chromium-libpac/test/js-unittest/
simple.js 1 // PAC script which uses isInNet on both IP addresses and hosts, and calls
  /external/chromium_org/media/audio/mac/
audio_device_listener_mac_unittest.cc 57 // Include multiple addresses to ensure only a single device change event
59 const AudioObjectPropertyAddress addresses[] = { local
67 kAudioObjectSystemObject, 1, addresses, output_device_listener_.get());
  /external/chromium_org/net/data/proxy_resolver_v8_unittest/
simple.js 1 // PAC script which uses isInNet on both IP addresses and hosts, and calls
  /external/chromium_org/third_party/libevent/test/
regress_dns.c 73 void *addresses, void *arg)
93 struct in6_addr *in6_addrs = addresses;
110 struct in_addr *in_addrs = addresses;
124 fprintf(stderr, "%s ", *(char **)addresses);
237 void *addresses, void *arg)
251 struct in_addr *in_addrs = addresses;
262 struct in6_addr *in6_addrs = addresses;
275 char **addrs = addresses;
  /external/chromium_org/tools/find_runtime_symbols/
find_runtime_symbols.py 5 """Find symbols in a binary corresponding to given runtime virtual addresses.
120 def _find_runtime_function_symbols(symbols_in_process, addresses):
122 for address in addresses:
133 def _find_runtime_sourcefile_symbols(symbols_in_process, addresses):
135 for address in addresses:
146 def _find_runtime_typeinfo_symbols(symbols_in_process, addresses):
148 for address in addresses:
172 def find_runtime_symbols(symbol_type, symbols_in_process, addresses):
173 return _INTERNAL_FINDERS[symbol_type](symbols_in_process, addresses)
180 %s /path/to/prepared_data_dir/ < addresses.tx
    [all...]
  /external/chromium_org/tools/cygprofile/
patch_orderfile.py 21 # Map addresses to list of functions at that address. There are multiple
75 # addresses for the same function name may also be due to ".clone" symbols,
93 addresses = [] variable
103 if not (addr in addresses):
104 addresses.append(addr)
107 sys.stderr.write ("number of addresses: " + str(len(addresses)) + "\n")
109 for addr in addresses:
mergetraces.py 96 """Converts the call addresses to static offsets and removes invalid calls.
99 addresses, converts strings to integer values, coverts virtual addresses to
143 Merges the two traces and coverts the virtual addresses to the offsets in the
145 so that symbolizing the addresses uses the addresses in the log, since the
146 addresses have already been converted to static offsets.
  /external/smack/src/org/xbill/DNS/spi/
DNSJavaNameService.java 96 InetAddress[] addresses; local
97 addresses = this.lookupAllHostAddr((String) args[0]);
101 return addresses;
104 int naddrs = addresses.length;
108 addr = addresses[i].getAddress();
126 * @return All the ip addresses found for the host name.
  /external/chromium/chrome/browser/autofill/
form_field.cc 266 std::vector<AddressField*> addresses; local
286 addresses.push_back(address);
292 if (!is_ecml && !addresses.empty()) {
293 if (addresses.size() == 1) {
294 addresses[0]->SetType(addresses[0]->FindType());
296 AddressType type0 = addresses[0]->FindType();
297 AddressType type1 = addresses[1]->FindType();
299 // When there are two addresses on a page, they almost always appear in
302 addresses[0]->SetType(reversed ? kShippingAddress : kBillingAddress)
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/backends/
android_rndis.py 184 """Returns the IP addresses on host's interfaces, breaking out |iface|."""
186 addresses = []
200 addresses.append(address)
201 return addresses, iface_address
204 """Returns the IP addresses on all connected devices.
208 addresses = []
215 addresses += [line.split()[2] for line in adb.RunShellCommand('netcfg')
217 return addresses
235 def _IsNetworkUnique(network, addresses):
236 return all((addr & mask != network & mask) for addr, mask in addresses)
    [all...]
  /external/chromium/net/proxy/
sync_host_resolver_bridge_unittest.cc 34 AddressList* addresses,
95 AddressList addresses; local
97 host_resolver_->Resolve(info, &addresses, NULL, NULL, BoundNetLog());
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowGeocoder.java 139 ArrayList<Address> addresses = new ArrayList<Address>(); local
140 addresses.add(address);
141 return addresses;
  /frameworks/support/v4/java/android/support/v4/app/
ShareCompat.java 502 * Set an array of email addresses as recipients of this share.
505 * @param addresses Email addresses to send to
509 public IntentBuilder setEmailTo(String[] addresses) {
513 mIntent.putExtra(Intent.EXTRA_EMAIL, addresses);
533 * Add an array of email addresses to be used in the "to" field of the final Intent.
535 * @param addresses Email addresses to send to
539 public IntentBuilder addEmailTo(String[] addresses) {
540 combineArrayExtra(Intent.EXTRA_EMAIL, addresses);
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
AttrGetOwnerElement.java 89 NodeList addresses; local
94 addresses = doc
96 element = (Element) addresses.item(1);
  /external/dropbear/
runopts.h 58 char *addresses[DROPBEAR_MAX_PORTS]; member in struct:svr_runopts
  /frameworks/base/services/java/com/android/server/location/
LocationBasedCountryDetector.java 78 List<Address> addresses = geoCoder.getFromLocation( local
80 if (addresses != null && addresses.size() > 0) {
81 country = addresses.get(0).getCountryCode();

Completed in 1009 milliseconds

1 23 4 5 6 7 8 91011>>