Searched refs:decode (Results 26 - 50 of 63) sorted by relevance

123

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
H A DMediaDecoder.java210 decode();
318 private void decode() { method in class:MediaDecoder
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DImageUtils.java219 * may load EXIF orientation, and the second pass may do the actual Bitmap decode.
269 return Base64.decode(base64, Base64.URL_SAFE);
273 return Base64.decode(base64, Base64.DEFAULT);
/frameworks/base/core/java/android/net/
H A DUri.java1091 return decode(encodedHost);
1117 String portString = decode(authority.substring(portSeparator + 1));
1579 names.add(decode(name));
1634 values.add(decode(query.substring(separator + 1, end)));
1691 return UriCodec.decode(encodedValue, true, StandardCharsets.UTF_8, false);
1922 * @param s encoded string to decode
1926 public static String decode(String s) { method in class:Uri
1930 return UriCodec.decode(s, false, StandardCharsets.UTF_8, false);
1960 return hasDecoded ? decoded : (decoded = decode(encoded));
2146 = decode(pat
[all...]
/frameworks/av/media/libmedia/
H A Dmediaplayer.cpp779 /*static*/ status_t MediaPlayer::decode(const char* url, uint32_t *pSampleRate, function in class:android::MediaPlayer
783 ALOGV("decode(%s)", url);
787 status = service->decode(url, pSampleRate, pNumChannels, pFormat, heap, pSize);
802 /*static*/ status_t MediaPlayer::decode(int fd, int64_t offset, int64_t length, function in class:android::MediaPlayer
807 ALOGV("decode(%d, %lld, %lld)", fd, offset, length);
811 status = service->decode(fd, offset, length, pSampleRate,
H A DSoundPool.cpp70 // start decode thread
497 ALOGV("Start decode");
499 status = MediaPlayer::decode(mUrl, &sampleRate, &numChannels, &format, mHeap, &mSize);
501 status = MediaPlayer::decode(mFd, mOffset, mLength, &sampleRate, &numChannels, &format,
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiSsid.java178 CoderResult result = decoder.decode(ByteBuffer.wrap(ssidBytes), out, true);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DRilMessageDecoder.java161 mCmdParamsFactory.make(BerTlv.decode(rawData));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaLteServiceStateTracker.java160 // Use Integer#decode to be generous in what we receive and allow
163 tac = Integer.decode(states[6]);
170 pci = Integer.decode(states[7]);
177 eci = Integer.decode(states[8]);
184 csgid = Integer.decode(states[9]);
H A DSmsMessage.java718 mBearerData = BearerData.decode(mEnvelope.bearerData);
777 BearerData bData = BearerData.decode(mEnvelope.bearerData, mEnvelope.serviceCategory);
779 Rlog.w(LOG_TAG, "BearerData.decode() returned null");
/frameworks/base/core/java/com/android/internal/os/
H A DZygoteConnection.java440 effectiveCapabilities = Long.decode(capStrings[0]);
443 permittedCapabilities = Long.decode(capStrings[0]);
444 effectiveCapabilities = Long.decode(capStrings[1]);
H A DLoggingPrintStream.java140 // decode bytes from the byte buffer into the char buffer
141 coderResult = decoder.decode(encodedBytes, decodedChars, false);
/frameworks/av/cmds/stagefright/
H A Dcodec.cpp67 static int decode( function
423 decode(looper, argv[0], useAudio, useVideo, surface);
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.h250 virtual status_t decode(const char* url, uint32_t *pSampleRate, int* pNumChannels,
253 virtual status_t decode(int fd, int64_t offset, int64_t length,
/frameworks/support/v4/java/android/support/v4/content/
H A DFileProvider.java701 final String tag = Uri.decode(path.substring(1, splitIndex));
702 path = Uri.decode(path.substring(splitIndex + 1));
/frameworks/base/core/java/com/android/internal/backup/
H A DLocalTransport.java246 String key = new String(Base64.decode(f.getName()));
/frameworks/base/core/java/com/android/internal/net/
H A DVpnProfile.java114 public static VpnProfile decode(String key, byte[] value) { method in class:VpnProfile
/frameworks/base/services/java/com/android/server/updates/
H A DSELinuxPolicyInstallReceiver.java92 writeUpdate(updateDir, destination, Base64.decode(chunk, Base64.DEFAULT));
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp106 void decode(int tick);
208 // the first time we successfully decode an incoming packet.
360 void AudioStream::decode(int tick) function in class:__anon1580::AudioStream
402 // Receive the packet and decode it.
432 length = mCodec->decode(samples, count, &buffer[offset], length);
755 ((AudioStream *)events[i].data.ptr)->decode(tick);
/frameworks/base/core/java/android/os/
H A DRecoverySystem.java199 ContentInfo info = (ContentInfo)ContentInfo.ASN1.decode(bis);
/frameworks/base/core/java/com/android/internal/util/
H A DTypedProperties.java253 /* Parse the string. Long.decode() handles C-style integer constants
259 value = Long.decode(st.sval);
/frameworks/base/services/java/com/android/server/usb/
H A DUsbDebuggingManager.java235 byte[] digest = digester.digest(Base64.decode(base64_data, Base64.DEFAULT));
/frameworks/opt/mailcommon/java/com/android/mailcommon/
H A DWebViewContextMenu.java196 decodedPhoneExtra = URLDecoder.decode(extra, Charset.defaultCharset().name());
/frameworks/base/core/tests/coretests/src/android/net/
H A DUriTest.java254 assertEquals(s, Uri.decode(Uri.encode(s, null)));
554 assertEquals(nestedUrl, Uri.decode(uri.getQueryParameter("nested")));
556 Uri.decode(uri.getQueryParameters("nested").get(0)));
/frameworks/base/core/java/android/content/
H A DIntent.java3994 String value = eq < semi ? Uri.decode(uri.substring(eq + 1, semi)) : "";
4013 intent.mFlags = Integer.decode(value).intValue();
4043 String key = Uri.decode(uri.substring(i + 2, eq));
4142 intent.mFlags = Integer.decode(uri.substring(i, j)).intValue();
4192 intent.mExtras.putString(key, Uri.decode(value));
4201 intent.mExtras.putChar(key, Uri.decode(value).charAt(0));
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageRenderer.java499 boolean decodeComplete = tile.decode();
682 boolean decode() { method in class:TiledImageRenderer.Tile
692 Log.w(TAG, "fail to decode tile", t);

Completed in 685 milliseconds

123