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

12345678910

/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/opt/telephony/src/java/com/android/internal/telephony/
H A DTelephonyComponentFactory.java95 boolean is3gpp2, boolean is3gpp2WapPdu, String address, String messageBody) {
96 return new InboundSmsTracker(pdu, timestamp, destPort, is3gpp2, is3gpp2WapPdu, address,
104 boolean is3gpp2, String address, int referenceNumber, int sequenceNumber,
106 return new InboundSmsTracker(pdu, timestamp, destPort, is3gpp2, address, referenceNumber,
94 makeInboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2, boolean is3gpp2WapPdu, String address, String messageBody) argument
103 makeInboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2, String address, int referenceNumber, int sequenceNumber, int messageCount, boolean is3gpp2WapPdu, String messageBody) argument
/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 DAudioStreamOut.cpp116 const char *address)
131 address);
154 address);
112 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/telephony/java/com/android/ims/
H A DImsExternalCallState.java55 public ImsExternalCallState(int callId, Uri address, boolean isPullable, int callState, argument
58 mAddress = address;
/frameworks/support/v4/ics/android/support/v4/net/
H A DDatagramSocketWrapper.java57 protected void bind(InetAddress address, int port) throws IOException { argument
72 protected void connect(InetAddress address, int port) throws IOException { argument
/frameworks/base/core/java/android/net/
H A DLinkProperties.java204 * Returns all the addresses on this link. We often think of a link having a single address,
207 * prefix lengths for each address. This is a simplified utility alternative to
236 private int findLinkAddressIndex(LinkAddress address) { argument
238 if (mLinkAddresses.get(i).isSameAddressAs(address)) {
247 * same address/prefix does not already exist. If it does exist it is replaced.
248 * @param address The {@code LinkAddress} to add.
249 * @return true if {@code address} was added or updated, false otherwise.
252 public boolean addLinkAddress(LinkAddress address) { argument
253 if (address == null) {
256 int i = findLinkAddressIndex(address);
[all...]
H A DSntpClient.java87 InetAddress address = null;
89 address = InetAddress.getByName(host);
94 return requestTime(address, NTP_PORT, timeout);
97 public boolean requestTime(InetAddress address, int port, int timeout) { argument
103 DatagramPacket request = new DatagramPacket(buffer, buffer.length, address, port);
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DHwModule.cpp46 audio_devices_t device, String8 address)
54 devDesc->mAddress = address;
109 audio_devices_t device, String8 address)
116 devDesc->mAddress = address;
298 String8 address = (device_address == NULL) ? String8("") : String8(device_address); local
299 // handle legacy remote submix case where the address was not always specified
300 if (device_distinguishes_on_address(device) && (address.length() == 0)) {
301 address = String8("0");
310 DeviceVector deviceList = declaredDevices.getDevicesFromTypeAddr(device, address);
324 devDesc->mAddress = address;
45 addOutputProfile(String8 name, const audio_config_t *config, audio_devices_t device, String8 address) argument
108 addInputProfile(String8 name, const audio_config_t *config, audio_devices_t device, String8 address) argument
[all...]
/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.java62 /** Destination for this contact entry. Would be an email address or a phone number. */
140 * Construct a RecipientEntry from just an address that has been entered.
141 * This address has not been resolved to a contact and therefore does not
144 public static RecipientEntry constructFakeEntry(final String address, final boolean isValid) { argument
145 final Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(address);
146 final String tokenizedAddress = tokens.length > 0 ? tokens[0].getAddress() : address;
164 * Construct a RecipientEntry from just an address that has been entered
165 * with both an associated display name. This address has not been resolved
168 public static RecipientEntry constructGeneratedEntry(String display, String address, argument
170 return new RecipientEntry(ENTRY_TYPE_PERSON, display, address, INVALID_DESTINATION_TYP
[all...]
/frameworks/base/cmds/telecom/src/com/android/commands/telecom/
H A DTelecom.java155 final String address = nextArgRequired();
158 .setAddress(Uri.parse(address))
159 .setSubscriptionAddress(Uri.parse(address))
/frameworks/base/services/net/java/android/net/util/
H A DIpUtils.java142 public static String addressAndPortToString(InetAddress address, int port) { argument
144 (address instanceof Inet6Address) ? "[%s]:%d" : "%s:%d",
145 address.getHostAddress(), port);
/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.h79 sp<DeviceDescriptor> getDevice(audio_devices_t type, String8 address) const;
83 DeviceVector getDevicesFromTypeAddr(audio_devices_t type, String8 address) const;
H A DHwModule.h70 audio_devices_t device, String8 address);
73 audio_devices_t device, String8 address);
/frameworks/base/services/core/java/com/android/server/
H A DPinnerService.java98 long address = Os.mmap(0, length, OsConstants.PROT_READ, OsConstants.MAP_PRIVATE, fd, offset);
101 Os.mlock(address, length);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsExternalConnection.java73 protected ImsExternalConnection(Phone phone, int callId, String address, boolean isPullable) { argument
77 mAddress = address;
/frameworks/av/services/audiopolicy/managerdefault/
H A DAudioPolicyManager.cpp69 ALOGV("setDeviceConnectionStateInt() device: 0x%X, state %d, address %s name %s",
299 ALOGW("getDeviceConnectionState() undeclared device, type %08x, address: %s",
1094 const char *address = NULL; local
1097 address = policyMix->mDeviceAddress.string();
1112 status_t status = startSource(outputDesc, stream, newDevice, address, &delayMs);
1124 address,
1138 const char *address,
1195 uint32_t muteWaitMs = setOutputDevice(outputDesc, device, force, 0, NULL, address);
1380 // handle legacy remote submix case where the address was not always specified
1381 String8 address local
1135 startSource(sp<AudioOutputDescriptor> outputDesc, audio_stream_type_t stream, audio_devices_t device, const char *address, uint32_t *delayMs) argument
1451 getInputForDevice(audio_devices_t device, String8 address, audio_session_t session, uid_t uid, audio_source_t inputSource, uint32_t samplingRate, audio_format_t format, audio_channel_mask_t channelMask, audio_input_flags_t flags, AudioMix *policyMix) argument
1664 String8 address = String8(""); local
1722 String8 address = String8(""); local
2078 String8 address = mixes[i].mDeviceAddress; local
2106 String8 address = mixes[i].mDeviceAddress; local
2171 String8 address = mixes[i].mDeviceAddress; local
3234 String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress local
3305 String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress local
3617 checkOutputsForDevice(const sp<DeviceDescriptor> devDesc, audio_policy_dev_state_t state, SortedVector<audio_io_handle_t>& outputs, const String8 address) argument
3863 checkInputsForDevice(const sp<DeviceDescriptor> devDesc, audio_policy_dev_state_t state, SortedVector<audio_io_handle_t>& inputs, const String8 address) argument
4598 setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, audio_devices_t device, bool force, int delayMs, audio_patch_handle_t *patchHandle, const char* address) argument
4834 getInputProfile(audio_devices_t device, String8 address, uint32_t& samplingRate, audio_format_t& format, audio_channel_mask_t& channelMask, audio_input_flags_t flags) 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);

Completed in 6134 milliseconds

12345678910