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

<<11121314151617181920>>

  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ScanFilterQueue.java 51 public String address; field in class:ScanFilterQueue.Entry
64 void addDeviceAddress(String address, byte type) {
67 entry.address = address;
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
ReceiveSmsMessageAction.java 66 // Make sure we have a sender address
67 String address = messageValues.getAsString(Sms.ADDRESS); local
68 if (TextUtils.isEmpty(address)) {
69 LogUtil.w(TAG, "Received an SMS without an address; using unknown sender.");
70 address = ParticipantData.getUnknownSenderDestination();
71 messageValues.put(Sms.ADDRESS, address);
74 address, subId);
83 final long threadId = MmsSmsUtils.Threads.getOrCreateThreadId(context, address);
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/
UtilsTest.java 100 LinkAddress address = new LinkAddress(InetAddress.getByName("127.0.0.1"), 0); local
102 lp.addLinkAddress(address);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
BluetoothDetailsControllerTestBase.java 85 private String address; field in class:BluetoothDetailsControllerTestBase.DeviceConfig
96 this.address = newValue;
120 return address;
  /packages/apps/Test/connectivity/sl4n/facades/bluetooth/
bt_binder_facade.cpp 86 String16 address; local
87 bt_iface->GetAddress(&address);
88 return std::make_tuple(std::string(String8(address).string()), sl4n_error_codes::kPassInt);
278 std::string address; local
280 std::tie(address, error_code) = facade.BtBinderGetAddress();
286 tmp.SetString(address.c_str(), doc.GetAllocator());
  /packages/apps/UnifiedEmail/src/com/android/mail/print/
PrintUtils.java 29 import com.android.emailcommon.mail.Address;
57 MessageCursor cursor, Map<String, Address> addressCache,
71 Map<String, Address> addressCache, String baseUri, boolean useJavascript) {
111 MessageCursor cursor, Map<String, Address> addressCache, boolean useJavascript) {
138 String subject, Map<String, Address> addressCache, boolean useJavascript) {
158 Message message, Map<String, Address> addressCache,
160 final Address fromAddress = Utils.getAddress(addressCache, message.getFrom());
175 Map<String, Address> addressCache, Message message) {
227 Map<String, Address> addressCache) {
233 final Address email = Utils.getAddress(addressCache, emails[i])
235 final String address = email.getAddress(); local
    [all...]
  /packages/services/BuiltInPrintService/src/com/android/bips/ipp/
StartJobTask.java 142 // Address, without port.
143 String address = mDestination.getHost() + mDestination.getPath(); local
170 Log.d(TAG, "nativeStartJob address=" + address
175 result = mBackend.nativeStartJob(Backend.getIp(address), mDestination.getPort(),
  /packages/services/Telephony/src/com/android/services/telephony/
ConferenceParticipantConnection.java 37 * RFC5767 states that a SIP URI with an unknown number should use an address of
69 Uri address; local
71 address = null;
74 address = getParticipantAddress(participant.getHandle(), countryIso);
76 setAddress(address, presentation);
172 Uri address = participant.getHandle(); local
173 if (address == null) {
177 String number = address.getSchemeSpecificPart();
186 // Parameters are optional, and the address (e.g. test@test.com) will always be the first
191 // Get the number portion from the address part
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
rose.h 66 rose_address address; member in struct:rose_route_struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/netrose/
rose.h 1 /* Definitions for Rose packet radio address family.
90 rose_address address; member in struct:rose_route_struct
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
vec.h 66 reference. Because the iterator will be inlined, the address-of
134 If you need to directly manipulate a vector, then the 'address'
135 accessor will return the address of the start of the vector. Also
148 idiom, thus they are not resizeable without changing the address
528 thus they are not resizeable without changing the address of the
556 T *address (void) { return vecdata_; } function
557 const T *address (void) const { return vecdata_; } function
629 /* If V is NULL, return NULL. Otherwise, return V->address(). */
634 return v ? v->address () : NULL;
710 memset (&(v->address()[oldlen]), 0, sizeof (T) * (len - oldlen))
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/asm/
parse.go 42 dataAddr map[string]int64 // Most recent address for DATA for this symbol.
206 addr := p.address(op)
242 // address parses the operand into a link address structure.
243 func (p *Parser) address(operand []lex.Token) obj.Addr { func
267 // General address (with a few exceptions) looks like
752 p.errorf("illegal address mode for register pair")
763 p.errorf("illegal address mode for register+register")
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
data.go 286 // ld64 for arm64 has a bug where if the address pointed to by o exists in the
316 Errorf(s, "non-pc-relative relocation address for %s is too big: %#x (%#x + %#x)", r.Sym.Name, uint64(o), Symaddr(r.Sym), r.Add)
380 r.Xadd -= int64(r.Siz) // relative to address after the relocated chunk
401 r.Xadd -= int64(r.Siz) // relative to address after the relocated chunk
425 // PE/COFF's PC32 relocation uses the address after the relocated
466 Errorf(s, "relocation address for %s is too big: %#x", r.Sym.Name, o)
473 Errorf(s, "pc-relative relocation address for %s is too big: %#x", r.Sym.Name, o)
477 Errorf(s, "non-pc-relative relocation address for %s is too big: %#x", r.Sym.Name, uint64(o))
975 // the address function.
1036 // datap is a collection of reachable data symbols in address order
1896 func (ctxt *Link) address() { func
    [all...]
  /prebuilts/go/linux-x86/src/cmd/asm/internal/asm/
parse.go 42 dataAddr map[string]int64 // Most recent address for DATA for this symbol.
206 addr := p.address(op)
242 // address parses the operand into a link address structure.
243 func (p *Parser) address(operand []lex.Token) obj.Addr { func
267 // General address (with a few exceptions) looks like
752 p.errorf("illegal address mode for register pair")
763 p.errorf("illegal address mode for register+register")
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
data.go 286 // ld64 for arm64 has a bug where if the address pointed to by o exists in the
316 Errorf(s, "non-pc-relative relocation address for %s is too big: %#x (%#x + %#x)", r.Sym.Name, uint64(o), Symaddr(r.Sym), r.Add)
380 r.Xadd -= int64(r.Siz) // relative to address after the relocated chunk
401 r.Xadd -= int64(r.Siz) // relative to address after the relocated chunk
425 // PE/COFF's PC32 relocation uses the address after the relocated
466 Errorf(s, "relocation address for %s is too big: %#x", r.Sym.Name, o)
473 Errorf(s, "pc-relative relocation address for %s is too big: %#x", r.Sym.Name, o)
477 Errorf(s, "non-pc-relative relocation address for %s is too big: %#x", r.Sym.Name, uint64(o))
975 // the address function.
1036 // datap is a collection of reachable data symbols in address order
1896 func (ctxt *Link) address() { func
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
test_allocator.h 76 pointer address(reference x) const {return &x;} function in class:test_allocator
77 const_pointer address(const_reference x) const {return &x;} function in class:test_allocator
140 pointer address(reference x) const {return &x;} function in class:non_default_test_allocator
141 const_pointer address(const_reference x) const {return &x;} function in class:non_default_test_allocator
  /system/bt/device/src/
controller.cc 51 static RawAddress address; variable
113 // Read the bluetooth address off the controller next
115 packet_parser->parse_read_bd_addr_response(response, &address);
290 return &address;
  /system/bt/include/hardware/
bt_common_types.h 93 RawAddress address; member in struct:ApcfCommand
  /system/bt/stack/btm/
btm_ble_bgconn.cc 52 RawAddress address; member in struct:background_connection_t
63 const uint8_t* a = x.address;
73 const RawAddress& address) {
74 auto map_iter = background_connections.find(address);
76 background_connections[address] =
77 background_connection_t{address, addr_type, false, 0, false};
85 static void background_connection_remove(const RawAddress& address) {
86 auto map_iter = background_connections.find(address);
103 BTM_IsAclConnectionUp(connection->address, BT_TRANSPORT_LE);
235 connection->address);
    [all...]
  /system/netd/server/
NetlinkHandler.cpp 105 const char *address = evt->findParam("ADDRESS"); local
110 strlcpy(addrstr, address, sizeof(addrstr));
121 gCtls->netCtrl.addInterfaceAddress(ifaceIndex, address);
123 bool shouldDestroy = gCtls->netCtrl.removeInterfaceAddress(ifaceIndex, address);
137 if (iface && iface[0] && address && flags && scope) {
138 notifyAddressChanged(action, address, iface, flags, scope);
237 "Address %s %s %s %s %s",
  /toolchain/binutils/binutils-2.27/bfd/
nlm32-ppc.c 242 /* Load address. */
292 /* TOC relative load address. */
512 rel->address = l_vaddr;
561 if the address of the data segment should be added to the
562 location addressed by the value, or 1 if the address of the text
590 rel->address = val << 2;
688 the address of the relocation. */
689 val = bfd_get_section_vma (abfd, sec) + rel->address;
743 bfd_size_type address;
805 address = rel->address
742 bfd_size_type address; local
    [all...]
  /toolchain/binutils/binutils-2.27/gold/
script-c.h 96 /* The address. This may be NULL. */
97 Expression_ptr address; member in struct:gold::Parser_output_section_header
100 /* The load address, from the AT specifier. This may be NULL. */
198 /* The load address. */
  /toolchain/binutils/binutils-2.27/intl/
relocatable.c 285 /* The DLL is being loaded into an application's address range. */
314 unsigned long address = (unsigned long) &find_shared_library_fullname; local
322 if (address >= start && address <= end - 1)
  /toolchain/binutils/binutils-2.27/ld/
mri.c 51 static struct section_name_struct *address; variable in typeref:struct:section_name_struct
99 mri_add_to_list (&address, name, vma, 0, 0, 0);
129 if (address != NULL)
135 order = address;
137 for (alist = address;
  /toolchain/binutils/binutils-2.27/opcodes/
arc-ext.c 56 long address; member in struct:ExtAuxRegister
193 newAuxRegister->address = (p[2] << 24) | (p[3] << 16)
408 arcExtMap_auxRegName (long address)
415 if (r->address == address)
465 printf ("AUX : %s %ld\n", r->name, r->address);

Completed in 1224 milliseconds

<<11121314151617181920>>