Searched defs:decode (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/voip/jni/rtp/
H A DGsmCodec.cpp47 int decode(int16_t *samples, void *payload, int length);
60 int GsmCodec::decode(int16_t *samples, void *payload, int length) function in class:__anon767::GsmCodec
H A DAmrCodec.cpp55 int decode(int16_t *samples, void *payload, int length);
131 int AmrCodec::decode(int16_t *samples, void *payload, int length) function in class:__anon762::AmrCodec
216 int decode(int16_t *samples, void *payload, int length);
242 int GsmEfrCodec::decode(int16_t *samples, void *payload, int length) function in class:__anon762::GsmEfrCodec
H A DG711Codec.cpp42 int decode(int16_t *samples, void *payload, int length);
67 int UlawCodec::decode(int16_t *samples, void *payload, int length) function in class:__anon766::UlawCodec
90 int decode(int16_t *samples, void *payload, int length);
114 int AlawCodec::decode(int16_t *samples, void *payload, int length) function in class:__anon766::AlawCodec
H A DAudioGroup.cpp100 void decode(int tick);
202 // the first time we successfully decode an incoming packet.
358 void AudioStream::decode(int tick) function in class:__anon763::AudioStream
402 // Receive the packet and decode it.
433 length = mCodec->decode(samples, &buffer[offset], length);
754 ((AudioStream *)events[i].data.ptr)->decode(tick);
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
H A DBerTlv.java63 * @param data A byte array to decode from
67 public static BerTlv decode(byte[] data) throws ResultException { method in class:BerTlv
H A DComprehensionTlv.java40 * {@link #decode(byte[], int) decode} method.
90 ComprehensionTlv ctlv = ComprehensionTlv.decode(data, startIndex);
106 public static ComprehensionTlv decode(byte[] data, int startIndex) method in class:ComprehensionTlv
/frameworks/base/tools/preload/
H A DRecord.java102 processName = decode(parts[3]).intern();
105 className = vmTypeToLanguage(decode(parts[5])).intern();
118 String decode(String rawField) { method in class:Record
/frameworks/base/core/java/android/webkit/
H A DURLUtil.java108 public static byte[] decode(byte[] url) throws IllegalArgumentException { method in class:URLUtil
318 String decodedUrl = Uri.decode(url);
/frameworks/base/core/java/android/util/
H A DBase64.java76 * Encode/decode another block of input data. this.output is
109 * @param str the input String to decode, which is converted to
112 * Pass {@code DEFAULT} to decode standard Base64.
117 public static byte[] decode(String str, int flags) { method in class:Base64
118 return decode(str.getBytes(), flags);
128 * @param input the input array to decode
130 * Pass {@code DEFAULT} to decode standard Base64.
135 public static byte[] decode(byte[] input, int flags) { method in class:Base64
136 return decode(input, 0, input.length, flags);
146 * @param input the data to decode
155 public static byte[] decode(byte[] input, int offset, int len, int flags) { method in class:Base64
[all...]
/frameworks/base/media/libmedia/
H A DIMediaPlayerService.cpp110 virtual sp<IMemory> decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, int* pFormat) function in class:android::BpMediaPlayerService
122 virtual sp<IMemory> decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, int* pFormat) function in class:android::BpMediaPlayerService
193 sp<IMemory> player = decode(url, &sampleRate, &numChannels, &format);
208 sp<IMemory> player = decode(fd, offset, length, &sampleRate, &numChannels, &format);
H A Dmediaplayer.cpp658 /*static*/ sp<IMemory> MediaPlayer::decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, int* pFormat) function in class:android::MediaPlayer
660 LOGV("decode(%s)", url);
664 p = service->decode(url, pSampleRate, pNumChannels, pFormat);
678 /*static*/ sp<IMemory> MediaPlayer::decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, int* pFormat) function in class:android::MediaPlayer
680 LOGV("decode(%d, %lld, %lld)", fd, offset, length);
684 p = service->decode(fd, offset, length, pSampleRate, pNumChannels, pFormat);
/frameworks/base/core/java/android/net/
H A DUri.java1044 return decode(encodedHost);
1070 String portString = decode(authority.substring(portSeparator + 1));
1549 values.add(decode(value));
1603 return decode(query.substring(equalsIndex + 1, end));
1783 * @param s encoded string to decode
1787 public static String decode(String s) { method in class:Uri
1789 Compared to java.net.URLEncoderDecoder.decode(), this method decodes a
1792 there's nothing to decode, this method won't do much.
1817 // We didn't actually decode anything.
1848 // Switch to "decoding" mode where we decode
[all...]
/frameworks/base/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1199 sp<IMemory> MediaPlayerService::decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, int* pFormat) function in class:android::MediaPlayerService
1201 LOGV("decode(%s)", url);
1207 // If the application wants to decode those, it should open a
1210 LOGD("Can't decode %s by path, use filedescriptor instead", url);
1251 sp<IMemory> MediaPlayerService::decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, int* pFormat) function in class:android::MediaPlayerService
1253 LOGV("decode(%d, %lld, %lld)", fd, offset, length);
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/sms/
H A DBearerData.java42 * An object to encode and decode CDMA SMS bearer data.
502 * access to the main bitwise stream from encode/decode.
886 Log.d(LOG_TAG, "MESSAGE_IDENTIFIER decode " +
921 throw new CodingException("UTF-8 decode failed: " + ex);
934 throw new CodingException("UTF-16 decode failed: " + ex);
967 throw new CodingException("7bit ASCII decode failed: " + ex);
993 throw new CodingException("ISO-8859-1 decode failed: " + ex);
1185 Log.d(LOG_TAG, "REPLY_OPTION decode " +
1205 Log.d(LOG_TAG, "NUMBER_OF_MESSAGES decode " +
1225 Log.d(LOG_TAG, "MESSAGE_DEPOSIT_INDEX decode "
1558 public static BearerData decode(byte[] smsData) { method in class:BearerData
[all...]

Completed in 205 milliseconds