HomeSort by relevance Sort by last modified time
    Searched defs:Metadata (Results 1 - 7 of 7) sorted by null

  /frameworks/base/media/libmedia/
Metadata.cpp 18 #define LOG_TAG "Metadata"
22 #include <media/Metadata.h>
27 // This file contains code to serialize Metadata triples (key, type,
29 // Metadata.java class.
32 // All these constants below must be kept in sync with Metadata.java.
59 Metadata::Metadata(Parcel *p)
63 Metadata::~Metadata() { }
65 void Metadata::resetParcel(
    [all...]
  /system/extras/tests/sdcard/
plot_sdcard.py 33 >>> (metadata, data) = p.Parse('/tmp/data.txt')
34 >>> p.PlotIterations(metadata, data)
35 >>> p.PlotTimes(metadata, data)
86 class Metadata(object):
133 metadata = Metadata()
142 if not metadata.complete:
143 metadata.Parse(line)
152 metadata.UpdateWith(dataset)
176 if not metadata.complete
    [all...]
  /frameworks/base/include/media/
Metadata.h 30 // Metadata is a class to build/serialize a set of metadata in a Parcel.
32 // This class should be kept in sync with android/media/Metadata.java.
33 // It provides all the metadata ids available and methods to build the
39 // media::Metadata data(&p);
42 // data.appendBool(Metadata::kPauseAvailable, true);
47 class Metadata {
54 // Keep in sync with android/media/Metadata.java
95 // @param p[inout] The parcel to append the metadata records
96 // to. The global metadata header should have been set already
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaPlayerMetadataParserTest.java 18 import android.media.Metadata;
28 * Check the Java layer that parses serialized metadata in Parcel
38 private Metadata mMetadata = null;
44 mMetadata = new Metadata();
131 // misses metadata id and metadata type.
139 mParcel.writeInt(Metadata.TITLE);
140 // misses metadata type
156 mParcel.writeInt(Metadata.TITLE);
157 mParcel.writeInt(Metadata.STRING_VAL)
    [all...]
  /frameworks/base/services/java/com/android/server/
PackageManagerBackupAgent.java 57 // key under which we store global metadata (individual app metadata
64 private HashMap<String, Metadata> mRestoredSignatures;
66 private HashMap<String, Metadata> mStateVersions = new HashMap<String, Metadata>();
73 public class Metadata {
77 Metadata(int version, Signature[] sigs) {
96 public Metadata getRestoredMetadata(String packageName) {
98 Slog.w(TAG, "getRestoredMetadata() before metadata read!");
107 Slog.w(TAG, "getRestoredPackages() before metadata read!")
    [all...]
  /frameworks/base/media/java/android/media/
Metadata.java 32 Class to hold the media's metadata. Metadata are used
38 Metadata is like a Bundle. It is sparse and each key can occur at
39 most once. The key is an integer and the value is the actual metadata.
41 The caller is expected to know the type of the metadata and call
47 public class Metadata
49 // The metadata are keyed using integers rather than more heavy
50 // weight strings. We considered using Bundle to ship the metadata
62 public static final int ANY = 0; // Never used for metadata returned, only for filtering.
65 // TODO: Should we use numbers compatible with the metadata retriever
    [all...]
  /external/opencore/nodes/pvdownloadmanagernode/src/
pvmf_downloadmanager_node.h 233 //need to overload the base Destroy routine to cleanup metadata key.
252 //need to overlaod the base Copy routine to copy metadata key.
501 PVMFMetadataExtensionInterface *Metadata()
583 * (The Metadata is available now)
    [all...]

Completed in 66 milliseconds