Searched refs:address (Results 51 - 75 of 216) sorted by relevance

123456789

/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIMms.aidl73 * @param address the destination address of the message
81 Uri importTextMessage(String callingPkg, String address, int type, String text,
142 * @param address the destination address of message
146 Uri addTextMessageDraft(String callingPkg, String address, String text);
/frameworks/av/services/audioflinger/
H A DSpdifStreamOut.cpp51 const char *address)
98 address);
47 open( audio_io_handle_t handle, audio_devices_t devices, struct audio_config *config, const char *address) argument
H A DAudioHwDevice.h65 * The "address" parameter qualifies the "devices" audio device type if needed.
67 * - Bluetooth devices use the MAC address of the device in the form "00:11:22:AA:BB:CC"
77 const char *address);
H A DAudioStreamOut.h52 const char *address);
H A DSpdifStreamOut.h50 const char *address);
/frameworks/base/core/java/android/net/
H A DLinkProperties.java200 * Returns all the addresses on this link. We often think of a link having a single address,
203 * prefix lengths for each address. This is a simplified utility alternative to
232 private int findLinkAddressIndex(LinkAddress address) { argument
234 if (mLinkAddresses.get(i).isSameAddressAs(address)) {
243 * same address/prefix does not already exist. If it does exist it is replaced.
244 * @param address The {@code LinkAddress} to add.
245 * @return true if {@code address} was added or updated, false otherwise.
248 public boolean addLinkAddress(LinkAddress address) { argument
249 if (address == null) {
252 int i = findLinkAddressIndex(address);
[all...]
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DHwModule.cpp176 ALOGV("loadDevice() adding device tag %s type %08x address %s",
185 audio_devices_t device, String8 address)
194 devDesc->mAddress = address;
216 audio_devices_t device, String8 address)
225 devDesc->mAddress = address;
331 String8 address = (device_address == NULL) ? String8("") : String8(device_address); local
332 // handle legacy remote submix case where the address was not always specified
333 if (device_distinguishes_on_address(device) && (address.length() == 0)) {
334 address = String8("0");
343 hwModule->mDeclaredDevices.getDevicesFromTypeAddr(device, address);
184 addOutputProfile(String8 name, const audio_config_t *config, audio_devices_t device, String8 address) argument
215 addInputProfile(String8 name, const audio_config_t *config, audio_devices_t device, String8 address) argument
[all...]
H A DIOProfile.cpp39 String8 address,
59 } else if (mSupportedDevices.getDevice(device, address) == 0) {
38 isCompatibleProfile(audio_devices_t device, String8 address, uint32_t samplingRate, uint32_t *updatedSamplingRate, audio_format_t format, audio_format_t *updatedFormat, audio_channel_mask_t channelMask, audio_channel_mask_t *updatedChannelMask, uint32_t flags) const argument
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecController.java54 * Interface to report allocated logical address.
58 * Called when a new logical address is allocated.
60 * @param deviceType requested device type to allocate logical address
61 * @param logicalAddress allocated logical address. If it is
63 * it failed to allocate logical address for the given device type
72 // Predicate for whether the given logical address is remote device's one or not.
75 public boolean apply(Integer address) {
76 return !isAllocatedLocalDeviceAddress(address);
80 // Predicate whether the given logical address is system audio's one or not
83 public boolean apply(Integer address) {
424 isAllocatedLocalDeviceAddress(int address) argument
519 isAcceptableAddress(int address) argument
[all...]
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEntry.java53 /** Destination for this contact entry. Would be an email address or a phone number. */
115 * Construct a RecipientEntry from just an address that has been entered.
116 * This address has not been resolved to a contact and therefore does not
119 public static RecipientEntry constructFakeEntry(final String address, final boolean isValid) { argument
120 final Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(address);
121 final String tokenizedAddress = tokens.length > 0 ? tokens[0].getAddress() : address;
141 * i.e. the display name came from an email address or a phone number, we don't use it
150 * Construct a RecipientEntry from just an address that has been entered
151 * with both an associated display name. This address has not been resolved
154 public static RecipientEntry constructGeneratedEntry(String display, String address, argument
[all...]
/frameworks/base/cmds/telecom/src/com/android/commands/telecom/
H A DTelecom.java146 final String address = nextArgRequired();
149 .setAddress(Uri.parse(address))
150 .setSubscriptionAddress(Uri.parse(address))
/frameworks/compile/mclinker/include/mcld/Support/
H A DAllocators.h110 pointer address(reference X) const { return &X; } function in class:mcld::LinearAllocatorBase
112 const_pointer address(const_reference X) const { return &X; } function in class:mcld::LinearAllocatorBase
117 // @param pPtr the address where the object to be constructed
127 // @param pPtr the address where the object to be constructed
130 /// standard destroy - destroy data on arbitrary address
131 // @para pPtr the address where the data to be destruected.
138 // @return the start address of the allocated memory
327 pointer address(reference X) const { return &X; } function in class:mcld::MallocAllocator
329 const_pointer address(const_reference X) const { return &X; } function in class:mcld::MallocAllocator
374 pointer address(referenc function in class:mcld::MallocAllocator
376 const_pointer address(const_reference X) const { return X; } function in class:mcld::MallocAllocator
[all...]
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DDeviceDescriptor.h78 sp<DeviceDescriptor> getDevice(audio_devices_t type, String8 address) const;
82 DeviceVector getDevicesFromTypeAddr(audio_devices_t type, String8 address) const;
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DLocalBluetoothAdapter.java221 public BluetoothDevice getRemoteDevice(String address) { argument
222 return mAdapter.getRemoteDevice(address);
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DVpn.java366 for (LinkAddress address : mConfig.addresses) {
367 lp.addLinkAddress(address);
368 allowIPv4 |= address.getAddress() instanceof Inet4Address;
369 allowIPv6 |= address.getAddress() instanceof Inet6Address;
376 InetAddress address = route.getDestination().getAddress();
377 allowIPv4 |= address instanceof Inet4Address;
378 allowIPv6 |= address instanceof Inet6Address;
384 InetAddress address = InetAddress.parseNumericAddress(dnsServer);
385 lp.addDnsServer(address);
386 allowIPv4 |= address instanceo
792 addAddress(String address, int prefixLength) argument
801 removeAddress(String address, int prefixLength) argument
868 jniAddAddress(String interfaze, String address, int prefixLen) argument
869 jniDelAddress(String interfaze, String address, int prefixLen) argument
[all...]
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV7/
H A DSyn_filt_32_neon.s42 LDR r4, [r13, #40] @ get sig_hi[] address
43 LDR r5, [r13, #44] @ get sig_lo[] address
49 SUB r10, r4, #32 @ sig_hi[-16] address
50 SUB r11, r5, #32 @ sig_lo[-16] address
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyClientImpl.cpp43 const String8& address,
52 return af->openOutput(module, output, config, devices, address, latencyMs, flags);
103 const String8& address,
113 return af->openInput(module, input, config, device, address, source, flags);
39 openOutput(audio_module_handle_t module, audio_io_handle_t *output, audio_config_t *config, audio_devices_t *devices, const String8& address, uint32_t *latencyMs, audio_output_flags_t flags) argument
99 openInput(audio_module_handle_t module, audio_io_handle_t *input, audio_config_t *config, audio_devices_t *device, const String8& address, audio_source_t source, audio_input_flags_t flags) argument
/frameworks/base/core/java/com/android/internal/net/
H A DVpnConfig.java106 public void updateAllowedFamilies(InetAddress address) { argument
107 if (address instanceof Inet4Address) {
132 for (String address : addresses) {
133 //each address is ip/prefix
134 LinkAddress addr = new LinkAddress(address);
/frameworks/base/telecomm/java/android/telecom/
H A DParcelableConnection.java58 Uri address,
74 mAddress = address;
177 Uri address = source.readParcelable(classLoader);
197 address,
54 ParcelableConnection( PhoneAccountHandle phoneAccount, int state, int capabilities, Uri address, int addressPresentation, String callerDisplayName, int callerDisplayNamePresentation, IVideoProvider videoProvider, int videoState, boolean ringbackRequested, boolean isVoipAudioMode, long connectTimeMillis, StatusHints statusHints, DisconnectCause disconnectCause, List<String> conferenceableConnectionIds, Bundle extras) argument
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pGroup.java136 // set source address into the client list.
193 public void addClient(String address) { argument
194 addClient(new WifiP2pDevice(address));
206 public boolean removeClient(String address) { argument
207 return mClients.remove(new WifiP2pDevice(address));
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipProfile.java30 import javax.sip.address.Address;
31 import javax.sip.address.AddressFactory;
32 import javax.sip.address.SipURI;
33 import javax.sip.address.URI;
136 * @param serverDomain the SIP server domain; if the network address
138 * set server address
230 * @param outboundProxy the network address of the outbound proxy
363 // the outbound proxy address exists.
371 * Gets the SIP address of this profile.
373 * @return the SIP address o
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothAdapter.java60 * instantiate a {@link BluetoothDevice} using a known MAC address, and create
99 * Default MAC address reported to a client that does not have the
530 * address.
533 * available to validate a Bluetooth address.
535 * hardware address, even if this adapter has never seen that device.
537 * @param address valid Bluetooth MAC address
538 * @throws IllegalArgumentException if address is invalid
540 public BluetoothDevice getRemoteDevice(String address) { argument
541 return new BluetoothDevice(address);
555 getRemoteDevice(byte[] address) argument
2064 checkBluetoothAddress(String address) argument
[all...]
/frameworks/base/core/java/android/view/
H A DDisplayInfo.java51 * Display address, or null if none.
54 public String address; field in class:DisplayInfo
265 && Objects.equal(address, other.address)
301 address = other.address;
334 address = source.readString();
372 dest.writeString(address);
581 if (address != null) {
582 sb.append(", address ")
[all...]
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduComposer.java56 * The postfix strings of address.
455 private EncodedStringValue appendAddressType(EncodedStringValue address) { argument
459 int addressType = checkAddressType(address.getString());
460 temp = EncodedStringValue.copy(address);
465 // Ipv4 address.
468 // Ipv6 address.
528 // Value-length (Address-present-token Encoded-string-value | Insert-address-token)
538 // Insert-address-token = <Octet 129>
1136 * Check address type.
1138 * @param address addres
1146 checkAddressType(String address) argument
[all...]
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/
H A DFilt_6k_7k_opt.s38 MOV r8, r0 @ copy signal[] address
39 MOV r4, r1 @ copy lg address
40 MOV r5, r2 @ copy mem[] address
47 ADR r3, Lable1 @ get fir_7k address
53 ADD r6, r13, #60 @ get x[L_FIR - 1] address
174 LDR r1, [sp, #-4] @mem address

Completed in 728 milliseconds

123456789