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

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/net/
DatagramPacket.java 71 InetAddress address; field in class:DatagramPacket
89 this.address = null;
117 * @param address the destination address.
124 InetAddress address, int port) {
126 setAddress(address);
146 * @param address the destination socket address.
147 * @throws IllegalArgumentException if address type is not supported
152 public DatagramPacket(byte buf[], int offset, int length, SocketAddress address) {
    [all...]
Inet4Address.java 33 * This class represents an Internet Protocol version 4 (IPv4) address.
37 * <i>RFC&nbsp;1918: Address Allocation for Private Internets</i></a>,
43 * Textual representation of IPv4 address used as input to methods
55 * address.
57 * <p> When a three part address is specified, the last part is
59 * bytes of the network address. This makes the three part address
63 * <p> When a two part address is supplied, the last part is
65 * bytes of the network address. This makes the two part address
131 int address = addr[3] & 0xFF; local
219 int address = holder().getAddress(); local
236 int address = holder().getAddress(); local
283 int address = holder().getAddress(); local
299 int address = holder().getAddress(); local
315 int address = holder().getAddress(); local
329 int address = holder().getAddress(); local
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/searchfragment/nearbyplaces/
NearbyPlaceViewHolder.java 65 String address = cursor.getString(Projections.PHONE_LABEL); local
68 placeAddress.setText(QueryBoldingUtil.getNameWithQueryBolded(query, address, context));
  /packages/apps/Gallery/src/com/android/camera/
ReverseGeocoderTask.java 19 import android.location.Address;
52 List<Address> address = local
55 for (Address addr : address) {
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/
AddressList.java 20 package org.apache.james.mime4j.field.address;
22 import org.apache.james.mime4j.field.address.parser.AddressListParser;
23 import org.apache.james.mime4j.field.address.parser.ParseException;
29 * An immutable, random-access list of Address objects.
35 private ArrayList<Address> addresses;
38 * @param addresses An ArrayList that contains only Address objects.
41 public AddressList(ArrayList<Address> addresses, boolean dontCopy) {
43 this.addresses = (dontCopy ? addresses : new ArrayList<Address>(addresses));
45 this.addresses = new ArrayList<Address>(0);
56 * Gets an address
    [all...]
Builder.java 20 package org.apache.james.mime4j.field.address;
26 import org.apache.james.mime4j.field.address.parser.ASTaddr_spec;
27 import org.apache.james.mime4j.field.address.parser.ASTaddress;
28 import org.apache.james.mime4j.field.address.parser.ASTaddress_list;
29 import org.apache.james.mime4j.field.address.parser.ASTangle_addr;
30 import org.apache.james.mime4j.field.address.parser.ASTdomain;
31 import org.apache.james.mime4j.field.address.parser.ASTgroup_body;
32 import org.apache.james.mime4j.field.address.parser.ASTlocal_part;
33 import org.apache.james.mime4j.field.address.parser.ASTmailbox;
34 import org.apache.james.mime4j.field.address.parser.ASTname_addr
61 Address address = buildAddress(childNode); local
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
AddressListParserConstants.java 17 package org.apache.james.mime4j.field.address.parser;
AddressListParserTreeConstants.java 1 /* Generated By:JJTree: Do not edit this line. /Users/jason/Projects/apache-mime4j-0.3/target/generated-sources/jjtree/org/apache/james/mime4j/field/address/parser/AddressListParserTreeConstants.java */
3 package org.apache.james.mime4j.field.address.parser;
24 "address",
ParseException.java 17 package org.apache.james.mime4j.field.address.parser;
SimpleNode.java 3 package org.apache.james.mime4j.field.address.parser;
5 public class SimpleNode extends org.apache.james.mime4j.field.address.parser.BaseNode implements Node {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForEmail.java 27 * Handler for email address data rows.
44 String address = mDbHelper.insertNameLookupForEmail(rawContactId, dataId, email); local
45 if (address != null) {
62 String address = values.getAsString(Email.DATA); local
64 mDbHelper.insertNameLookupForEmail(rawContactId, dataId, address);
98 return values.containsKey(Email.ADDRESS);
103 builder.appendContentFromColumn(Email.ADDRESS);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
netcontext.py 107 return "nodecon {0.address} {0.netmask} {0.context}".format(self)
110 return hash("nodecon|{0.address}|{0.netmask}".format(self))
117 return (self.address == other.address and
132 def address(self): member in class:Nodecon
133 """The network address for the nodecon."""
  /system/bt/btif/src/
btif_profile_queue.cc 48 ConnectNode(const RawAddress& address, uint16_t uuid,
50 : address_(address), uuid_(uuid), busy_(false), connect_cb_(connect_cb) {}
53 return base::StringPrintf("address=%s UUID=%04X busy=%s",
58 const RawAddress& address() const { return address_; } function in class:ConnectNode
100 if (node.uuid() == param.uuid() && node.address() == param.address()) {
  /system/bt/service/ipc/binder/
bluetooth_low_energy_binder_server.cc 66 const String16& address,
69 VLOG(2) << __func__ << " client_id: " << client_id << " address: " << address
81 client->Connect(std::string(String8(address).string()), is_direct);
86 const String16& address,
88 VLOG(2) << __func__ << " client_id: " << client_id << " address: " << address; local
98 *_aidl_return = client->Disconnect(std::string(String8(address).string()));
103 const String16& address, int mtu,
105 VLOG(2) << __func__ << " client_id: " << client_id << " address: " << addres
    [all...]
  /system/bt/service/test/
ipc_linux_unittest.cc 92 struct sockaddr_un address; local
93 memset(&address, 0, sizeof(address));
94 address.sun_family = AF_UNIX;
95 strncpy(address.sun_path, kTestSocketPath, sizeof(address.sun_path) - 1);
98 connect(client_fd_.get(), (struct sockaddr*)&address, sizeof(address));
  /system/bt/stack/test/rfcomm/
stack_rfcomm_test_utils.cc 36 std::bitset<8> address; local
37 address.set(0, ea);
45 address.set(1, cr);
46 address |= dlci << 2;
47 return static_cast<uint8_t>(address.to_ulong());
111 std::vector<uint8_t> CreateRfcommPacket(uint8_t address, uint8_t control,
116 result.push_back(address);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
ProxyTest.java 26 private SocketAddress address = new InetSocketAddress("127.0.0.1", 1234); field in class:ProxyTest
33 Proxy proxy = new Proxy(Proxy.Type.HTTP, address);
35 assertEquals(address, proxy.address());
38 proxy = new Proxy(Proxy.Type.SOCKS, address);
40 assertEquals(address, proxy.address());
45 assertNull(proxy.address());
74 // test DIRECT type proxy, any address is illegal
76 proxy = new Proxy(Proxy.Type.DIRECT, address);
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/inspector/
MediaView.java 20 import android.location.Address;
214 * Attempts to retrieve an approximate address and displays the address if it can find one.
215 * @param coords the coordinates that gets an address.
218 new AsyncTask<Float, Void, Address>() {
220 protected Address doInBackground(Float... coords) {
224 Address address = geocoder.getFromLocation(coords[0], // latitude local
228 return address;
234 protected void onPostExecute(@Nullable Address address)
    [all...]
  /art/compiler/optimizing/
block_builder.cc 158 // Check if this dex_pc address starts a new basic block.
317 uint32_t address = iterator.GetHandlerAddress(); local
318 if (catch_blocks.find(address) != catch_blocks.end()) {
328 HBasicBlock* catch_block = GetBlockAt(address);
331 HBasicBlock* new_catch_block = new (allocator_) HBasicBlock(graph_, address);
332 new_catch_block->AddInstruction(new (allocator_) HGoto(address));
338 catch_blocks.Put(address, catch_block);
instruction_simplifier_shared.cc 256 // Proceed to extract the base address computation.
261 HIntermediateAddress* address = new (allocator) HIntermediateAddress(array, offset, kNoDexPc); local
262 // TODO: Is it ok to not have this on the intermediate address?
263 // address->SetReferenceTypeInfo(array->GetReferenceTypeInfo());
264 access->GetBlock()->InsertInstructionBefore(address, access);
265 access->ReplaceInput(address, 0);
269 DCHECK(address->GetSideEffects().Includes(SideEffects::DependsOnGC()));
271 // TODO: Code generation for HArrayGet and HArraySet will check whether the input address
286 // If index is constant the whole address calculation often can be done by LDR/STR themselves.
299 // It is beneficial to extract index intermediate address only if there are at least 2 users
330 HIntermediateAddressIndex* address = local
    [all...]
  /art/compiler/utils/
swap_space.h 175 pointer address(reference x) const { return &x; } function in class:art::SwapAllocator
176 const_pointer address(const_reference x) const { return &x; } function in class:art::SwapAllocator
  /art/runtime/
handle_scope.h 158 uintptr_t address = reinterpret_cast<uintptr_t>(this) + ReferencesOffset(kRuntimePointerSize); local
159 return reinterpret_cast<StackReference<mirror::Object>*>(address);
memory_region.h 59 // Load value of type `T` at `offset`. The memory address corresponding
63 T* address = ComputeInternalPointer<T>(offset); local
64 DCHECK(IsWordAligned(address));
65 return *address;
68 // Store `value` (of type `T`) at `offset`. The memory address
73 T* address = ComputeInternalPointer<T>(offset); local
74 DCHECK(IsWordAligned(address));
75 *address = value;
78 // Load value of type `T` at `offset`. The memory address corresponding
93 // Store `value` (of type `T`) at `offset`. The memory address
141 const uint8_t* address = begin() + bit_offset \/ kBitsPerByte; local
    [all...]
  /art/runtime/mirror/
object.h 100 // Get the read barrier state with a fake address dependency.
621 // Getter method that exposes the raw address of a primitive value-type field to an Accessor
628 // Update methods that expose the raw address of a primitive value-type to an Accessor instance
700 uint64_t address = static_cast<uint32_t>(GetField32<kVerifyFlags, kIsVolatile>(field_offset)); local
    [all...]
  /cts/tests/tests/net/src/android/net/rtp/cts/
AudioStreamTest.java 26 private void testRtpStream(InetAddress address) throws Exception {
27 AudioStream stream = new AudioStream(address);
28 assertEquals(stream.getLocalAddress(), address); local
33 stream.associate(address, 1000);
34 assertEquals(stream.getRemoteAddress(), address); local

Completed in 518 milliseconds

1 2 3 4 5 6 7 8 91011>>