Searched refs:eos (Results 26 - 34 of 34) sorted by relevance

12

/frameworks/base/media/java/android/media/
H A DWebVttRenderer.java666 public void eos() { method in class:WebVttParser
1006 public void onData(byte[] data, boolean eos, long runID) { argument
1019 if (eos) {
1021 mParser.eos();
H A DClosedCaptionRenderer.java93 public void onData(byte[] data, boolean eos, long runID) { argument
H A DCea708CaptionRenderer.java102 public void onData(byte[] data, boolean eos, long runID) { argument
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerRenderer.cpp933 int32_t eos; local
936 || (entry->mNotifyConsumed->findInt32("eos", &eos) && eos != 0)) {
980 // If we have pending EOS (or "eos" marker for discontinuities), we need
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifInterface.java965 ExifOutputStream eos = new ExifOutputStream(outStream, this);
966 eos.setExifData(mData);
967 return eos;
/frameworks/native/libs/binder/
H A DParcel.cpp1938 const char* eos = reinterpret_cast<const char*>(memchr(str, 0, avail)); local
1939 if (eos) {
1940 const size_t len = eos - str;
/frameworks/av/media/libstagefright/rtsp/
H A DMyHandler.h111 kWhatEOS = 'eos!',
1027 int32_t eos; local
1028 if (msg->findInt32("eos", &eos)) {
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java6988 int eos = offset;
6990 while (eos < end && data[eos] != 0) eos++;
6991 return new String(data, offset, eos-offset, "US-ASCII");
8380 int eos = offset;
8382 while (eos < end && data[eos] != 0) eos++;
8383 return new String(data, offset, eos
[all...]
/frameworks/av/media/libstagefright/
H A DACodec.cpp5683 bool eos = false; local
5696 if (buffer != NULL && buffer->meta()->findInt32("eos", &tmp) && tmp) {
5697 eos = true;
5716 if (eos) {
5729 if (buffer->size() == 0 && !eos) {
5750 if (eos) {
5861 if (!eos && err == OK) {

Completed in 1466 milliseconds

12