HomeSort by relevance Sort by last modified time
    Searched full:address (Results 251 - 275 of 11852) sorted by null

<<11121314151617181920>>

  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PPreferredIdentity.java 36 import gov.nist.javax.sip.address.AddressImpl;
57 * @param address address to set
59 public PPreferredIdentity(AddressImpl address) {
61 this.address = address;
76 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
79 retval.append(address.encode());
80 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
Path.java 36 import gov.nist.javax.sip.address.AddressImpl;
49 * @param address address to set
51 public Path(AddressImpl address) {
53 this.address = address;
71 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
74 retval.append(address.encode());
75 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
ServiceRoute.java 35 import gov.nist.javax.sip.address.AddressImpl;
53 * @param address address to set
55 public ServiceRoute(AddressImpl address) {
57 this.address = address;
72 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
75 retval.append(address.encode());
76 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
  /cts/tests/tests/text/src/android/text/util/cts/
Rfc822TokenTest.java 29 final String address = "jdoe@example.net"; local
31 Rfc822Token rfc822Token1 = new Rfc822Token(name, address, comment);
33 assertEquals(address, rfc822Token1.getAddress());
36 Rfc822Token rfc822Token2 = new Rfc822Token(null, address, comment);
38 assertEquals(address, rfc822Token2.getAddress());
46 Rfc822Token rfc822Token4 = new Rfc822Token(name, address, null);
48 assertEquals(address, rfc822Token4.getAddress());
54 final String address = "jdoe@example.net"; local
56 Rfc822Token rfc822Token = new Rfc822Token(name, address, comment);
86 final String address = "jdoe@example.net" local
105 String address = "jdoe@example.net"; local
    [all...]
  /external/chromium/chrome/browser/resources/options/
autofill_options.js 29 * The address list.
49 $('autofill-add-address').onclick = function(event) {
61 * Creates, decorates and initializes the address list.
65 this.addressList_ = $('address-list');
82 * Shows the 'Add address' overlay, specifically by loading the
83 * 'Edit address' overlay, emptying the input fields and modifying the
108 * Updates the data model for the address list with the values from
126 * Removes the Autofill address represented by |guid|.
127 * @param {String} guid The GUID of the address to remove.
144 * Requests profile data for the address represented by |guid| from th
    [all...]
  /external/clang/test/Analysis/
stackaddrleak.c 8 } // expected-warning{{Address of stack memory associated with local variable 'str' is still referred to by the global variable 'p' upon returning to the caller. This will be a dangling reference}}
18 } // expected-warning{{Address of stack memory allocated by call to alloca() on line 17 is still referred to by the global variable 'p' upon returning to the caller. This will be a dangling reference}}
20 // PR 7383 - previosly the stack address checker would crash on this example
34 } // expected-warning{{Address of stack memory associated with local variable 'x' is still referred to by the global variable 'a' upon returning}} expected-warning{{Address of stack memory associated with local variable 'x' is still referred to by the global variable 'b' upon returning}}
  /external/iproute2/include/linux/
if_addr.h 11 __u8 ifa_scope; /* Address scope */
17 * IFA_ADDRESS is prefix address, rather than local interface address.
19 * but for point-to-point IFA_ADDRESS is DESTINATION address,
20 * local address is supplied in IFA_LOCAL attribute.
  /external/kernel-headers/original/linux/
if_addr.h 12 __u8 ifa_scope; /* Address scope */
18 * IFA_ADDRESS is prefix address, rather than local interface address.
20 * but for point-to-point IFA_ADDRESS is DESTINATION address,
21 * local address is supplied in IFA_LOCAL attribute.
  /external/llvm/lib/Support/
MemoryObject.cpp 16 int MemoryObject::readBytes(uint64_t address,
20 uint64_t current = address;
26 while (current - address < size) {
27 if (readByte(current, &buf[(current - address)]))
34 *copied = current - address;
  /external/nist-sip/java/javax/sip/
Dialog.java 6 import javax.sip.address.Address;
23 Address getLocalParty();
35 Address getRemoteParty();
47 Address getRemoteTarget();
  /external/v8/src/
ic-inl.h 41 Address IC::address() const { function in class:v8::internal::IC
42 // Get the address of the call.
43 Address result = pc() - Assembler::kCallTargetAddressOffset;
47 // First check if any break points are active if not just return the address
54 // If the call site is a call to debug break then return the address in
55 // the original code instead of the address in the running code. This will
60 // No break point here just return the address of the call.
69 Code* IC::GetTargetAtAddress(Address address) {
    [all...]
cpu-profiler.h 70 Address start;
73 Address shared;
81 Address from;
82 Address to;
90 Address from;
91 Address to;
138 Address start);
142 Address start, unsigned size,
143 Address shared);
146 Address start, unsigned size)
    [all...]
frames-inl.h 51 inline Address StackHandler::address() const { function in class:v8::internal::StackHandler
52 return reinterpret_cast<Address>(const_cast<StackHandler*>(this));
58 return FromAddress(Memory::Address_at(address() + offset));
62 inline bool StackHandler::includes(Address address) const {
63 Address start = this->address();
64 Address end = start + StackHandlerConstants::kSize;
65 return start <= address && address <= end
    [all...]
  /libcore/luni/src/main/java/java/net/
Proxy.java 20 * Proxy} stores a type and an address and is immutable. There are three types
31 * protocol handlers that there is no proxy to be used. The address is set
38 private SocketAddress address; field in class:Proxy
50 * the proxy address of this instance.
65 address = sa;
74 address = null;
87 * Gets the address of this {@code Proxy} instance.
89 * @return the stored proxy address or {@code null} if the proxy type is
92 public SocketAddress address() { method in class:Proxy
93 return address;
    [all...]
Inet6Address.java 29 * An IPv6 address. See {@link InetAddress}.
55 * Constructs an {@code InetAddress} representing the {@code address} and
58 * @param address
59 * the network address.
61 * the name associated with the address.
72 * Constructs an IPv6 address according to the given {@code host}, {@code
76 * the host name associated with the address.
78 * the network address.
81 * @return the Inet6Address instance representing the IP address.
83 * if the address is null or has an invalid length
118 Inet6Address address = Inet6Address.getByAddress(host, addr, 0); local
    [all...]
  /packages/apps/Bluetooth/jni/
com_android_bluetooth_gatt.cpp 127 static void jstr2bdaddr(JNIEnv* env, bt_bdaddr_t *bda, jstring address)
129 const char* c_bda = env->GetStringUTFChars(address, NULL);
132 bd_addr_str_to_addr(c_bda, bda->address);
133 env->ReleaseStringUTFChars(address, c_bda);
213 bda->address[0], bda->address[1], bda->address[2],
214 bda->address[3], bda->address[4], bda->address[5])
216 jstring address = sCallbackEnv->NewStringUTF(c_address); local
237 jstring address = sCallbackEnv->NewStringUTF(c_address); local
252 jstring address = sCallbackEnv->NewStringUTF(c_address); local
324 jstring address = sCallbackEnv->NewStringUTF(c_address); local
417 jstring address = sCallbackEnv->NewStringUTF(c_address); local
466 jstring address = sCallbackEnv->NewStringUTF(c_address); local
548 jstring address = sCallbackEnv->NewStringUTF(c_address); local
568 jstring address = sCallbackEnv->NewStringUTF(c_address); local
590 jstring address = sCallbackEnv->NewStringUTF(c_address); local
    [all...]
  /libcore/luni/src/main/java/libcore/net/http/
HttpConnection.java 45 * Address} inner class.
51 private final Address address; field in class:HttpConnection
61 private HttpConnection(Address config, int connectTimeout) throws IOException {
62 this.address = config;
95 Address address = (proxy.type() == Proxy.Type.DIRECT) local
96 ? new Address(uri, sslSocketFactory)
97 : new Address(uri, sslSocketFactory, proxy, requiresTunnel);
98 return HttpConnectionPool.INSTANCE.get(address, connectTimeout)
115 Address address = new Address(uri, sslSocketFactory, local
    [all...]
  /external/bluetooth/bluedroid/stack/btm/
btm_ble_addr.c 21 * This file contains functions for BLE address management.
37 random address refreshing */
43 ** Description This is callback functioin when resolvable private address
73 /* random address set failure */
74 BTM_TRACE_DEBUG0("set random address failed");
81 ** Description This function is called when random address has generate the
82 ** random number base for low 3 byte bd address.
119 ** Description This function generate a resolvable private address.
175 ** Description This function generate a non-resolvable private address.
200 ** Utility functions for Random address resolvin
    [all...]
  /external/chromium/chrome/browser/autofill/
personal_data_manager_mac.mm 21 // This implementation makes use of the Address Book API. Profiles are
23 // user's Address Book. The caller passes a vector of profiles into the
24 // the constructer and then initiate the fetch from the Mac Address Book "me"
38 // Import the "me" card from the Mac Address Book and fill in |profiles_|.
45 void GetAddressBookAddresses(NSDictionary* address, AutofillProfile* profile);
61 // from the active user's address book. It looks for the user address
72 NSDictionary* address = [addresses valueAtIndex:i];
76 // |kABUIDProperty| taken from from the "me" address. The format of
88 // Fill in address information
    [all...]
  /external/chromium/net/disk_cache/
block_files_unittest.cc 39 Addr address[kMaxSize]; local
43 EXPECT_TRUE(files.CreateBlock(RANKINGS, 4, &address[i]));
50 files.DeleteBlock(address[target], false);
51 EXPECT_TRUE(files.CreateBlock(RANKINGS, 4, &address[target]));
66 Addr address[kMaxSize]; local
70 EXPECT_TRUE(files.CreateBlock(RANKINGS, 4, &address[i]));
75 files.DeleteBlock(address[i], false);
95 Addr address(0);
97 EXPECT_TRUE(files.CreateBlock(RANKINGS, size, &address));
98 entries[i] = address.value()
188 Addr address; local
263 Addr address[kSize]; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Contact.java 38 import gov.nist.javax.sip.address.AddressImpl;
109 if (address.getAddressType() == AddressImpl.NAME_ADDR) {
110 address.encode(buffer);
112 // Encoding in canonical form must have <> around address.
114 address.encode(buffer);
140 /** get the address field.
141 * @return Address
143 public javax.sip.address.Address getAddress() {
144 // JAIN-SIP stores the wild card as an address!
    [all...]
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
fixChangeLogPatch.pl 42 # 2009-12-22 Alice <alice@email.address>
51 # 2009-12-21 Alice <alice@email.address>
67 2010-12-22 Bob <bob@email.address>
79 2010-12-22 Bob <bob@email.address>
94 -2010-12-22 Bob <bob@email.address>
102 2010-12-22 Alice <alice@email.address>
111 -2010-12-22 Bob <bob@email.address>
119 2010-12-22 Alice <alice@email.address>
134 -2010-12-22 Bob <bob@email.address>
138 2010-12-22 Alice <alice@email.address>
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/sms/
CdmaSmsAddress.java 29 * the address digits are 4-bit DTMF codes or 8-bit codes. (See
39 * address type is a data network address or not. (See 3GPP2
69 * This field shall be set to the number of address digits
88 * NOTE: the parsed string address and the raw byte array values
89 * are stored in the parent class address and origBytes fields,
105 builder.append(", address=\"" + address + "\"");
117 private static byte[] parseToDtmf(String address) {
118 int digits = address.length()
    [all...]
  /external/v8/src/arm/
assembler-arm-inl.h 68 Address RelocInfo::target_address() {
74 Address RelocInfo::target_address_address() {
78 return reinterpret_cast<Address>(Assembler::target_address_address_at(pc_));
87 void RelocInfo::set_target_address(Address target, WriteBarrierMode mode) {
118 Assembler::set_target_address_at(pc_, reinterpret_cast<Address>(target));
128 Address* RelocInfo::target_reference_address() {
130 return reinterpret_cast<Address*>(Assembler::target_address_address_at(pc_));
136 Address address = Memory::Address_at(pc_); local
138 reinterpret_cast<JSGlobalPropertyCell**>(address));
144 Address address = Memory::Address_at(pc_); local
154 Address address = cell->address() + JSGlobalPropertyCell::kValueOffset; local
    [all...]
  /external/arduino/libraries/Wire/
Wire.cpp 63 void TwoWire::begin(uint8_t address)
65 twi_setAddress(address);
71 void TwoWire::begin(int address)
73 begin((uint8_t)address);
76 uint8_t TwoWire::requestFrom(uint8_t address, uint8_t quantity)
83 uint8_t read = twi_readFrom(address, rxBuffer, quantity);
91 uint8_t TwoWire::requestFrom(int address, int quantity)
93 return requestFrom((uint8_t)address, (uint8_t)quantity);
96 void TwoWire::beginTransmission(uint8_t address)
100 // set address of targeted slav
    [all...]

Completed in 430 milliseconds

<<11121314151617181920>>