Home
last modified time | relevance | path

Searched refs:marker (Results 1 – 25 of 28) 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/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/java/tests/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/volley/src/main/java/com/android/volley/
DVolleyLog.java153 for (Marker marker : mMarkers) { in finish()
154 long thisTime = marker.time; in finish()
155 d("(+%-4d) [%2d] %s", (thisTime - prevTime), marker.thread, marker.name); in finish()
/frameworks/base/libs/hwui/
DCaches.h185 static void eventMarkNull(GLsizei length, const GLchar* marker) { } in eventMarkNull() argument
186 static void startMarkNull(GLsizei length, const GLchar* marker) { } in startMarkNull() argument
/frameworks/base/media/java/android/media/
DExifInterface.java1827 byte marker; in getJpegAttributes()
1829 if ((marker = dataInputStream.readByte()) != MARKER) { in getJpegAttributes()
1830 throw new IOException("Invalid marker: " + Integer.toHexString(marker & 0xff)); in getJpegAttributes()
1834 throw new IOException("Invalid marker: " + Integer.toHexString(marker & 0xff)); in getJpegAttributes()
1838 marker = dataInputStream.readByte(); in getJpegAttributes()
1839 if (marker != MARKER) { in getJpegAttributes()
1840 throw new IOException("Invalid marker:" + Integer.toHexString(marker & 0xff)); in getJpegAttributes()
1843 marker = dataInputStream.readByte(); in getJpegAttributes()
1845 Log.d(TAG, "Found JPEG segment indicator: " + Integer.toHexString(marker & 0xff)); in getJpegAttributes()
1851 if (marker == MARKER_EOI || marker == MARKER_SOS) { in getJpegAttributes()
[all …]
DAudioRecord.java1766 private native final int native_set_marker_pos(int marker); in native_set_marker_pos() argument
DAudioTrack.java2814 private native final int native_set_marker_pos(int marker); in native_set_marker_pos() argument
/frameworks/av/include/media/
DAudioRecord.h283 status_t setMarkerPosition(uint32_t marker);
284 status_t getMarkerPosition(uint32_t *marker) const;
DAudioTrack.h492 status_t setMarkerPosition(uint32_t marker);
493 status_t getMarkerPosition(uint32_t *marker) const;
/frameworks/av/services/camera/libcameraservice/api1/client2/
DJpegProcessor.cpp339 uint8_t marker[MARKER_LENGTH]; member
397 uint8_t type = checkJpegMarker(segment->marker); in findJpegSize()
/frameworks/base/core/java/android/content/pm/
DRegisteredServicesCache.java625 File marker = new File(syncDir, mInterfaceName + ".xml.migrated"); in migrateIfNecessaryLocked() local
627 if (!marker.exists()) { in migrateIfNecessaryLocked()
629 Slog.i(TAG, "Marker file " + marker + " does not exist - running migration"); in migrateIfNecessaryLocked()
652 marker.createNewFile(); in migrateIfNecessaryLocked()
/frameworks/av/media/libmedia/
DAudioRecord.cpp378 status_t AudioRecord::setMarkerPosition(uint32_t marker) in setMarkerPosition() argument
386 mMarkerPosition = marker; in setMarkerPosition()
396 status_t AudioRecord::getMarkerPosition(uint32_t *marker) const in getMarkerPosition()
398 if (marker == NULL) { in getMarkerPosition()
403 mMarkerPosition.getValue(marker); in getMarkerPosition()
DAudioTrack.cpp993 status_t AudioTrack::setMarkerPosition(uint32_t marker) in setMarkerPosition() argument
1001 mMarkerPosition = marker; in setMarkerPosition()
1011 status_t AudioTrack::getMarkerPosition(uint32_t *marker) const in getMarkerPosition()
1016 if (marker == NULL) { in getMarkerPosition()
1021 mMarkerPosition.getValue(marker); in getMarkerPosition()
/frameworks/av/media/libmedia/docs/
Dpaused.dot25 ATsetMarkerPosition [label="AudioTrack::setMarkerPosition()\n[sets marker variables]"];
/frameworks/base/libs/hwui/debug/
Dnullgles.cpp271 void glInsertEventMarkerEXT(GLsizei length, const GLchar *marker) {} in glInsertEventMarkerEXT() argument
272 void glPushGroupMarkerEXT(GLsizei length, const GLchar *marker) {} in glPushGroupMarkerEXT() argument
/frameworks/base/docs/html/training/maps/
Dindex.jd43 "https://developers.google.com/maps/documentation/android/marker">Draw markers</a>.
/frameworks/base/docs/html/guide/topics/media/jet/
Djetcreator_manual.jd1013 102 JET event marker</p>
1016 103 JET clip marker</p>
1080 authoring tools make it difficult to place the end-of-track marker accurately,
1086 a JET end-of-segment marker (controller=102, value=0) at the point where the
1087 segment is to be looped. When the end-of-segment marker is encountered, the
1093 <p>The end-of-segment marker can also be used
1098 marker at the end of the 4<sup>th</sup> bar, the next segment will be
/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">;
/frameworks/native/opengl/include/GLES2/
Dgl2ext.h1130 typedef void (GL_APIENTRYP PFNGLINSERTEVENTMARKEREXTPROC) (GLsizei length, const GLchar *marker);
1131 typedef void (GL_APIENTRYP PFNGLPUSHGROUPMARKEREXTPROC) (GLsizei length, const GLchar *marker);
1134 GL_APICALL void GL_APIENTRY glInsertEventMarkerEXT (GLsizei length, const GLchar *marker);
1135 GL_APICALL void GL_APIENTRY glPushGroupMarkerEXT (GLsizei length, const GLchar *marker);

12