Searched refs:value (Results 101 - 125 of 2087) sorted by path

1234567891011>>

/frameworks/av/media/libmedia/
H A DMediaProfiles.cpp596 char value[PROPERTY_VALUE_MAX]; local
597 if (property_get("media.settings.xml", value, NULL) <= 0) {
613 sInstance = createInstanceFromXmlFile(value);
H A DMediaResource.cpp29 MediaResource::MediaResource(Type type, uint64_t value) argument
32 mValue(value) {}
34 MediaResource::MediaResource(Type type, SubType subType, uint64_t value) argument
37 mValue(value) {}
H A DMediaResourcePolicy.cpp29 MediaResourcePolicy::MediaResourcePolicy(String8 type, String8 value) argument
31 mValue(value) {}
H A DMediaScannerClient.cpp42 status_t MediaScannerClient::addStringTag(const char* name, const char* value) argument
44 handleStringTag(name, value);
H A DMidiDeviceInfo.cpp41 String16 value; local
42 if (mProperties.getString(String16(propertyName), &value)) {
43 return value;
/frameworks/av/media/libmedia/include/media/
H A DCharacterEncodingDetector.h36 void addTag(const char *name, const char *value);
40 status_t getTag(int index, const char **name, const char**value);
50 // cached name and value strings, for native encoding support.
H A DDrm.h86 virtual status_t getPropertyString(String8 const &name, String8 &value ) const;
88 Vector<uint8_t> &value ) const;
89 virtual status_t setPropertyString(String8 const &name, String8 const &value ) const;
91 Vector<uint8_t> const &value ) const;
H A DDrmHal.h96 virtual status_t getPropertyString(String8 const &name, String8 &value ) const;
98 Vector<uint8_t> &value ) const;
99 virtual status_t setPropertyString(String8 const &name, String8 const &value ) const;
101 Vector<uint8_t> const &value ) const;
H A DIDrm.h81 virtual status_t getPropertyString(String8 const &name, String8 &value) const = 0;
83 Vector<uint8_t> &value) const = 0;
85 String8 const &value ) const = 0;
87 Vector<uint8_t> const &value) const = 0;
H A DMediaCodecInfo.h131 void addDetail(const AString &key, const AString &value);
132 void addFeature(const AString &key, int32_t value);
133 void addFeature(const AString &key, const char *value);
H A DMediaResource.h42 MediaResource(Type type, uint64_t value);
43 MediaResource(Type type, SubType subType, uint64_t value);
H A DMediaResourcePolicy.h32 MediaResourcePolicy(String8 type, String8 value);
H A DModulo.h33 // type is converted to its base non-Modulo type through the value() function.
46 // (2) If the destination type is unsigned, the resulting value is the least unsigned
51 // (3) If the destination type is signed, the value is unchanged if it can be represented
52 // in the destination type (and bit-field width); otherwise, the value is
77 // 2^n where n is the number of bits in the value representation of that particular
93 Modulo(const T &value) { mValue = value; } argument
94 const T & value() const { return mValue; } // not assignable function in class:android::Modulo
97 void getValue(T *value) const { *value
[all...]
H A DSingleStateQueue.h64 // push new value onto state queue, overwriting previous value;
66 int32_t push(const T& value) argument
72 shared->mValue = value;
80 // returns the status of the last state push. This may be a stale value.
116 // return true if value has changed
117 bool poll(T& value) argument
136 value = temp;
H A DTypeConverter.h106 typename Traits::Type value; local
107 if (utilities::convertTo<std::string, typename Traits::Type >(cstr, value)) {
108 collection.add(value);
118 static bool toString(const typename Traits::Type &value, std::string &str);
135 typename Traits::Type value; member in struct:android::TypeConverter::Table
142 inline bool TypeConverter<Traits>::toString(const typename Traits::Type &value, std::string &str) argument
145 if (mTable[i].value == value) {
151 snprintf(result, sizeof(result), "Unknown enum value %d", value);
177 typename Traits::Type value; local
189 uint32_t value = 0; local
[all...]
H A Dconvert.h35 * String conversion to T reads the value of the type T in the given string.
36 * The function does not allow to have white spaces around the value to parse
42 * Numeric conversion to string formats the source value to decimal space.
46 * @tparam srcType source type, default value is string type
49 * @param[out] result Converted value if success, undefined on failure.
146 static inline bool toString(const T &value, std::string &str) argument
155 oss << value; local
254 * based on it but makes furthers checks on the returned value.
284 * based on it but makes furthers checks on the returned value.
318 * requirements. Indeed, parsing "true" will correctly parse the value, bu
[all...]
H A Dmediascanner.h114 status_t addStringTag(const char* name, const char* value);
119 virtual status_t handleStringTag(const char* name, const char* value) = 0;
/frameworks/av/media/libmediametrics/
H A DMediaAnalyticsItem.cpp139 MediaAnalyticsItem &MediaAnalyticsItem::setFinalized(bool value) { argument
140 mFinalized = value;
272 void MediaAnalyticsItem::setInt32(MediaAnalyticsItem::Attr name, int32_t value) { argument
275 prop->u.int32Value = value;
278 void MediaAnalyticsItem::setInt64(MediaAnalyticsItem::Attr name, int64_t value) { argument
281 prop->u.int64Value = value;
284 void MediaAnalyticsItem::setDouble(MediaAnalyticsItem::Attr name, double value) { argument
287 prop->u.doubleValue = value;
290 void MediaAnalyticsItem::setCString(MediaAnalyticsItem::Attr name, const char *value) { argument
293 // any old value wil
307 addInt32(MediaAnalyticsItem::Attr name, int32_t value) argument
321 addInt64(MediaAnalyticsItem::Attr name, int64_t value) argument
351 addDouble(MediaAnalyticsItem::Attr name, double value) argument
366 getInt32(MediaAnalyticsItem::Attr name, int32_t *value) argument
377 getInt64(MediaAnalyticsItem::Attr name, int64_t *value) argument
409 getDouble(MediaAnalyticsItem::Attr name, double *value) argument
421 getCString(MediaAnalyticsItem::Attr name, char **value) argument
[all...]
/frameworks/av/media/libmediametrics/include/
H A DMediaAnalyticsItem.h112 void setInt32(Attr, int32_t value);
113 void setInt64(Attr, int64_t value);
114 void setDouble(Attr, double value);
116 void setCString(Attr, const char *value);
120 void addInt32(Attr, int32_t value);
121 void addInt64(Attr, int64_t value);
122 void addDouble(Attr, double value);
126 // return indicates whether attr exists (and thus value filled in)
127 // NULL parameter value suppresses storage of value
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1580 char value[PROPERTY_VALUE_MAX]; local
1581 if (property_get("ro.kernel.qemu", value, 0)) {
H A DStagefrightRecorder.cpp448 // Return true if the value is in [0, 0x007FFFFFFF]
741 const String8 &key, const String8 &value) {
742 ALOGV("setParameter: key (%s) => value (%s)", key.string(), value.string());
745 if (safe_strtoi64(value.string(), &max_duration_ms)) {
750 if (safe_strtoi64(value.string(), &max_filesize_bytes)) {
755 if (safe_strtoi32(value.string(), &durationUs)) {
760 if (safe_strtoi32(value.string(), &timeScale)) {
765 if (safe_strtoi32(value.string(), &use64BitOffset)) {
770 if (safe_strtoi64(value
740 setParameter( const String8 &key, const String8 &value) argument
872 String8 value; local
[all...]
H A DStagefrightRecorder.h169 status_t setParameter(const String8 &key, const String8 &value);
/frameworks/av/media/libstagefright/
H A DACodec.cpp1743 // average bitrate. We've been setting both bitrate and max-bitrate to this same value.
1824 // only allow 32-bit value, since we pass it as U32 to OMX.
1828 ALOGW("Unsupported value for max pts gap %lld", (long long) mMaxPtsGapUs);
2125 // value is unknown
2129 // value is unknown
2133 // value is unknown
2137 // value is unknown
2141 // value is unknown
2145 // value is unknown
3977 // PFramesSpacing (the value t
7523 int32_t value; local
7533 int64_t value; local
7543 AString value; local
[all...]
H A DAudioSource.cpp415 int16_t value = *data++; local
416 if (value < 0) {
417 value = -value;
419 if (mMaxAmplitude < value) {
420 mMaxAmplitude = value;
430 int16_t value = mMaxAmplitude; local
432 ALOGV("max amplitude since last call: %d", value);
433 return value;
H A DMP3Extractor.cpp387 const char * value = commentvalue.string(); local
393 if (sscanf(value, " %*x %x %x %*x", &delay, &padding) == 2) {

Completed in 247 milliseconds

1234567891011>>