Home
last modified time | relevance | path

Searched refs:marker (Results 1 – 25 of 33) sorted by relevance

12

/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
DJpegHeader.java35 public static final boolean isSofMarker(short marker) { in isSofMarker() argument
36 return marker >= SOF0 && marker <= SOF15 && marker != DHT && marker != JPG in isSofMarker()
37 && marker != DAC; in isSofMarker()
DExifParser.java759 short marker = dataStream.readShort(); in seekTiffData() local
760 while (marker != JpegHeader.EOI in seekTiffData()
761 && !JpegHeader.isSofMarker(marker)) { in seekTiffData()
765 if (marker == JpegHeader.APP1) { in seekTiffData()
784 marker = dataStream.readShort(); in seekTiffData()
DExifOutputStream.java172 short marker = mBuffer.getShort(); in write() local
173 if (marker == JpegHeader.APP1) { in write()
176 } else if (!JpegHeader.isSofMarker(marker)) { in write()
/frameworks/base/core/java/android/speech/tts/
DSynthesisPlaybackQueueItem.java204 ProgressMarker marker = markerList.peek(); in updateMarker() local
205 if (marker != null) { in updateMarker()
208 int markerInFrames = marker.frames == 0 ? 1 : marker.frames; in updateMarker()
221 ProgressMarker marker = markerList.poll(); in onMarkerReached() local
222 if (marker == null) { in onMarkerReached()
227 getDispatcher().dispatchOnRangeStart(marker.start, marker.end, marker.frames); in onMarkerReached()
/frameworks/opt/bitmap/src/com/android/bitmap/util/
DExif.java87 final int marker = jpeg.get(offset) & 0xFF; in getOrientation() local
90 if (marker == 0xFF) { in getOrientation()
96 if (marker == 0xD8 || marker == 0x01) { in getOrientation()
100 if (marker == 0xD9 || marker == 0xDA) { in getOrientation()
114 if (marker == 0xE1 && length >= 8 && in getOrientation()
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
DExif.java82 final int marker = jpeg.get(offset) & 0xFF; in getOrientation() local
85 if (marker == 0xFF) { in getOrientation()
91 if (marker == 0xD8 || marker == 0x01) { in getOrientation()
95 if (marker == 0xD9 || marker == 0xDA) { in getOrientation()
109 if (marker == 0xE1 && length >= 8 && in getOrientation()
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
DXmpDepthDecode.java128 public int marker; field in XmpDepthDecode.Section
218 int marker = c; in parse() local
219 if (marker == M_SOS) { in parse()
224 section.marker = marker; in parse()
238 if (!readMetaOnly || marker == M_APP1) { in parse()
239 sections.add(readSection(is, length, marker, skipExtendedContent)); in parse()
285 int marker, boolean skipExtendedContent) throws IOException { in readSection() argument
288 section.marker = marker; in readSection()
300 section.marker = marker; in readSection()
308 section.marker = marker; in readSection()
/frameworks/av/media/libstagefright/
DJPEGSource.cpp159 uint8_t marker; in parseJPEG() local
160 if (mSource->readAt(i++, &marker, 1) != 1) { in parseJPEG()
164 CHECK_EQ(marker, 0xff); in parseJPEG()
166 if (mSource->readAt(i++, &marker, 1) != 1) { in parseJPEG()
170 CHECK(marker != 0xff); in parseJPEG()
183 switch (marker) { in parseJPEG()
/frameworks/base/libs/hwui/
DCaches.h184 static void eventMarkNull(GLsizei length, const GLchar* marker) { } in eventMarkNull() argument
185 static void startMarkNull(GLsizei length, const GLchar* marker) { } in startMarkNull() argument
/frameworks/av/include/media/
DAudioRecord.h290 status_t setMarkerPosition(uint32_t marker);
291 status_t getMarkerPosition(uint32_t *marker) const;
DAudioTrack.h497 status_t setMarkerPosition(uint32_t marker);
498 status_t getMarkerPosition(uint32_t *marker) const;
/frameworks/av/media/libaudioclient/include/media/
DAudioRecord.h290 status_t setMarkerPosition(uint32_t marker);
291 status_t getMarkerPosition(uint32_t *marker) const;
DAudioTrack.h497 status_t setMarkerPosition(uint32_t marker);
498 status_t getMarkerPosition(uint32_t *marker) const;
/frameworks/base/media/java/android/media/
DExifInterface.java2297 byte marker; in getJpegAttributes()
2298 if ((marker = in.readByte()) != MARKER) { in getJpegAttributes()
2299 throw new IOException("Invalid marker: " + Integer.toHexString(marker & 0xff)); in getJpegAttributes()
2303 throw new IOException("Invalid marker: " + Integer.toHexString(marker & 0xff)); in getJpegAttributes()
2307 marker = in.readByte(); in getJpegAttributes()
2308 if (marker != MARKER) { in getJpegAttributes()
2309 throw new IOException("Invalid marker:" + Integer.toHexString(marker & 0xff)); in getJpegAttributes()
2312 marker = in.readByte(); in getJpegAttributes()
2314 Log.d(TAG, "Found JPEG segment indicator: " + Integer.toHexString(marker & 0xff)); in getJpegAttributes()
2320 if (marker == MARKER_EOI || marker == MARKER_SOS) { in getJpegAttributes()
[all …]
DAudioRecord.java1767 private native final int native_set_marker_pos(int marker); in native_set_marker_pos() argument
/frameworks/support/exifinterface/src/android/support/media/
DExifInterface.java4781 byte marker;
4782 if ((marker = in.readByte()) != MARKER) {
4783 throw new IOException("Invalid marker: " + Integer.toHexString(marker & 0xff));
4787 throw new IOException("Invalid marker: " + Integer.toHexString(marker & 0xff));
4791 marker = in.readByte();
4792 if (marker != MARKER) {
4793 throw new IOException("Invalid marker:" + Integer.toHexString(marker & 0xff));
4796 marker = in.readByte();
4798 Log.d(TAG, "Found JPEG segment indicator: " + Integer.toHexString(marker & 0xff));
4804 if (marker == MARKER_EOI || marker == MARKER_SOS) {
[all …]
/frameworks/av/services/camera/libcameraservice/api1/client2/
DJpegProcessor.cpp343 uint8_t marker[MARKER_LENGTH]; member
401 uint8_t type = checkJpegMarker(segment->marker); in findJpegSize()
/frameworks/native/libs/binder/
DValue.cpp65 static const T *marker; in internal_type_ptr() local
66 return (void*)&marker; in internal_type_ptr()
/frameworks/av/media/libaudioclient/
DAudioRecord.cpp381 status_t AudioRecord::setMarkerPosition(uint32_t marker) in setMarkerPosition() argument
389 mMarkerPosition = marker; in setMarkerPosition()
399 status_t AudioRecord::getMarkerPosition(uint32_t *marker) const in getMarkerPosition()
401 if (marker == NULL) { in getMarkerPosition()
406 mMarkerPosition.getValue(marker); in getMarkerPosition()
DAudioTrack.cpp1033 status_t AudioTrack::setMarkerPosition(uint32_t marker) in setMarkerPosition() argument
1041 mMarkerPosition = marker; in setMarkerPosition()
1051 status_t AudioTrack::getMarkerPosition(uint32_t *marker) const in getMarkerPosition()
1056 if (marker == NULL) { in getMarkerPosition()
1061 mMarkerPosition.getValue(marker); in getMarkerPosition()
/frameworks/base/core/java/android/content/pm/
DRegisteredServicesCache.java671 File marker = new File(syncDir, mInterfaceName + ".xml.migrated"); in migrateIfNecessaryLocked() local
673 if (!marker.exists()) { in migrateIfNecessaryLocked()
675 Slog.i(TAG, "Marker file " + marker + " does not exist - running migration"); in migrateIfNecessaryLocked()
698 marker.createNewFile(); in migrateIfNecessaryLocked()
/frameworks/av/media/libmedia/docs/
Dpaused.dot25 ATsetMarkerPosition [label="AudioTrack::setMarkerPosition()\n[sets marker variables]"];
/frameworks/base/libs/hwui/debug/
DNullGlesDriver.h151 virtual void glInsertEventMarkerEXT_(GLsizei length, const GLchar *marker) override {} in glInsertEventMarkerEXT_() argument
152 virtual void glPushGroupMarkerEXT_(GLsizei length, const GLchar *marker) override {} in glPushGroupMarkerEXT_() argument
/frameworks/native/opengl/libs/GLES2/
Dgl2ext_api.in304 void API_ENTRY(glInsertEventMarkerEXT)(GLsizei length, const GLchar *marker) {
305 CALL_GL_API(glInsertEventMarkerEXT, length, marker);
307 void API_ENTRY(glPushGroupMarkerEXT)(GLsizei length, const GLchar *marker) {
308 CALL_GL_API(glPushGroupMarkerEXT, length, marker);
/frameworks/compile/mclinker/tools/mcld/
DOptions.td325 HelpText<"Surround the result strings with the marker">;

12