Searched refs:value (Results 1 - 25 of 1198) sorted by path

1234567891011>>

/frameworks/av/camera/
H A DCameraParameters.cpp221 // Find the value.
238 void CameraParameters::set(const char *key, const char *value) argument
246 if (strchr(value, '=') || strchr(value, ';')) {
247 //XXX ALOGE("Value \"%s\"contains invalid character (= or ;)", value);
251 mMap.replaceValueFor(String8(key), String8(value));
254 void CameraParameters::set(const char *key, int value) argument
257 sprintf(str, "%d", value);
261 void CameraParameters::setFloat(const char *key, float value) argument
264 snprintf(str, sizeof(str), "%g", value);
[all...]
H A DCameraParameters2.cpp75 // Find the value.
92 void CameraParameters2::set(const char *key, const char *value) argument
100 if (strchr(value, '=') || strchr(value, ';')) {
101 //XXX ALOGE("Value \"%s\"contains invalid character (= or ;)", value);
105 // Replacing a value updates the key's order to be the new largest order
106 ssize_t res = mMap.replaceValueFor(String8(key), String8(value));
107 LOG_ALWAYS_FATAL_IF(res < 0, "replaceValueFor(%s,%s) failed", key, value);
110 void CameraParameters2::set(const char *key, int value)
113 sprintf(str, "%d", value);
[all...]
/frameworks/av/cmds/screenrecord/
H A DFrameOutput.cpp32 inline void FrameOutput::setValueLE(uint8_t* buf, uint32_t value) { argument
37 buf[0] = (uint8_t) value;
38 buf[1] = (uint8_t) (value >> 8);
39 buf[2] = (uint8_t) (value >> 16);
40 buf[3] = (uint8_t) (value >> 24);
H A DFrameOutput.h70 // Put a 32-bit value into a buffer, in little-endian byte order.
71 static void setValueLE(uint8_t* buf, uint32_t value);
H A Dscreenrecord.cpp244 // supply a rotation value to the display projection.
818 long value; local
821 value = strtol(str, &endptr, 10);
824 *pValue = value;
827 *pValue = value * 1000000; // check for overflow?
830 fprintf(stderr, "Unrecognized value: %s\n", str);
965 fprintf(stderr, "getopt_long returned unexpected value 0x%x\n", ic);
/frameworks/av/drm/common/
H A DDrmConstraints.cpp32 status_t DrmConstraints::put(const String8* key, const char* value) { argument
33 int length = strlen(value);
36 strncpy(charValue, value, length);
109 String8 value = String8(mDrmConstraints->mConstraintMap.editValueAt(mIndex)); local
111 return value;
H A DDrmInfo.cpp44 status_t DrmInfo::put(const String8& key, const String8& value) { argument
45 mAttributes.add(key, value);
107 String8& value = mDrmInfo->mAttributes.editValueAt(mIndex); local
109 return value;
H A DDrmInfoRequest.cpp41 status_t DrmInfoRequest::put(const String8& key, const String8& value) { argument
42 mRequestInformationMap.add(key, value);
102 String8& value = mDrmInfoRequest->mRequestInformationMap.editValueAt(mIndex); local
104 return value;
H A DDrmMetadata.cpp26 const char* value) {
27 if((value != NULL) && (key != NULL)) {
28 int length = strlen(value);
31 memcpy(charValue, value, length);
114 String8 value = String8(mDrmMetadata->mMetadataMap.editValueAt(mIndex)); local
116 return value;
25 put(const String8* key, const char* value) argument
H A DDrmSupportInfo.cpp132 String8& value = mDrmSupportInfo->mFileSuffixVector.editItemAt(mIndex); local
134 return value;
156 String8& value = mDrmSupportInfo->mMimeTypeVector.editItemAt(mIndex); local
158 return value;
H A DIDrmManagerService.cpp82 int value = data.readInt32(); local
83 handle->copyControlVector.add(key, value);
89 String8 value = data.readString8(); local
90 handle->extendedData.add(key, value);
257 const String8 value = drmInfo->get(key); local
258 data.writeString8((value == String8("")) ? String8("NULL") : value);
302 const String8 value = drmInforequest->get(key); local
305 sscanf(value.string(), "FileDescriptor[%d]", &fd);
308 data.writeString8((value
865 const char* value = drmConstraints->getAsByteArray(&key); local
897 const char* value = drmMetadata->getAsByteArray(&key); local
1020 const String8 value = drmInfo->get(key); local
[all...]
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClientImpl.cpp55 char value[PROPERTY_VALUE_MAX]; local
56 if (property_get("drm.service.enabled", value, NULL) == 0) {
/frameworks/av/drm/libdrmframework/plugins/common/util/include/
H A DSessionMap.h42 * Adds a new value in the session map table. It expects memory to be allocated already
46 * @param value - session object to add
48 * @return boolean result of adding value. returns false if key is already exist.
50 bool addValue(int key, TValue value) { argument
53 map.add(key, value);
84 * @param index - index of the value required
89 TValue value = NULL; local
93 value = map.valueAt(index);
95 return value;
101 * @param key - key of the value t
142 deleteValue(TValue value) argument
179 TValue value = NULL; local
[all...]
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
H A DFwdLockConv.c215 * @return A Boolean value indicating whether the session ID is in range and currently in use.
246 unsigned char value[KEY_SIZE]; member in struct:FwdLockConv_DeriveKeys_Data
258 // Encrypt the 16-byte value {0, 0, ..., 0} to produce the encryption key.
259 memset(pData->value, 0, KEY_SIZE);
260 AES_encrypt(pData->value, pData->key, &pData->sessionRoundKeys);
265 // Encrypt the 16-byte value {1, 0, ..., 0} to produce the signing key.
266 ++pData->value[0];
267 AES_encrypt(pData->value, pData->key, &pData->sessionRoundKeys);
286 * @return A Boolean value indicating whether the given character is valid in a boundary.
300 * @return A Boolean value indicatin
[all...]
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/
H A DFwdLockFile.c169 * @return A Boolean value indicating whether key derivation was successful.
175 unsigned char value[KEY_SIZE]; member in struct:FwdLockFile_DeriveKeys_Data
190 // Encrypt the 16-byte value {0, 0, ..., 0} to produce the encryption key.
191 memset(pData->value, 0, KEY_SIZE);
192 AES_encrypt(pData->value, pData->key, &pData->sessionRoundKeys);
197 // Encrypt the 16-byte value {1, 0, ..., 0} to produce the signing key.
198 ++pData->value[0];
199 AES_encrypt(pData->value, pData->key, &pData->sessionRoundKeys);
345 // The return value should be the file position that lseek64() would have returned
/frameworks/av/drm/libdrmframework/plugins/passthru/src/
H A DDrmPassthruPlugIn.cpp64 String8 value("dummy_available_time");
66 charValue = new char[value.length() + 1];
67 strncpy(charValue, value.string(), value.length());
68 charValue[value.length()] = '\0';
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DDrmPlugin.cpp75 const String8& name, String8& value) const {
77 value = "Google";
79 value = "1.0";
81 value = "ClearKey CDM";
83 value = "";
H A DDrmPlugin.h132 const String8& name, String8& value) const;
135 const String8& name, Vector<uint8_t>& value) const {
137 UNUSED(value);
142 const String8& name, const String8& value) {
144 UNUSED(value);
149 const String8& name, const Vector<uint8_t>& value) {
151 UNUSED(value);
141 setPropertyString( const String8& name, const String8& value) argument
148 setPropertyByteArray( const String8& name, const Vector<uint8_t>& value) argument
H A DJsonWebKey.cpp135 String8 key, value; local
139 findValue(kKeyTypeTag, &value);
140 if (0 != value.compare(kSymmetricKeyValue))
154 void JsonWebKey::findValue(const String8 &key, String8* value) { argument
155 value->clear();
163 value->setTo(valueToken);
H A DJsonWebKey.h52 void findValue(const String8 &key, String8* value);
/frameworks/av/drm/mediadrm/plugins/mock/
H A DMockDrmCryptoPlugin.cpp377 status_t MockDrmPlugin::getPropertyString(String8 const &name, String8 &value) const
385 value = mStringProperties.valueAt(index);
390 Vector<uint8_t> &value) const
398 value = mByteArrayProperties.valueAt(index);
403 String8 const &value)
406 ALOGD("MockDrmPlugin::setPropertyString(name=%s, value=%s)",
407 name.string(), value.string());
411 sscanf(value.string(), "%d %d", &code, &extra);
431 mStringProperties.add(name, value);
437 Vector<uint8_t> const &value)
402 setPropertyString(String8 const &name, String8 const &value) argument
436 setPropertyByteArray(String8 const &name, Vector<uint8_t> const &value) argument
[all...]
H A DMockDrmCryptoPlugin.h95 status_t getPropertyString(String8 const &name, String8 &value ) const;
97 Vector<uint8_t> &value ) const;
100 String8 const &value );
102 Vector<uint8_t> const &value );
/frameworks/av/include/camera/
H A DCameraParameters.h50 void set(const char *key, const char *value);
51 void set(const char *key, int value);
52 void setFloat(const char *key, float value);
116 // Example value: "480x320". Read/Write.
119 // Example value: "800x600,480x320". Read only.
125 // Example value: "10500,26623"
133 // Example value: "(10500,26623),(15000,26623),(30000,30000)"
137 // PIXEL_FORMAT_YUV420SP. Example value: "yuv420sp" or PIXEL_FORMAT_XXX
141 // Example value: "yuv420sp,yuv422i-yuyv". Read only.
145 // Example value
[all...]
H A DCameraParameters2.h41 void set(const char *key, const char *value);
42 void set(const char *key, int value);
43 void setFloat(const char *key, float value);
44 // Look up string value by key.
119 ssize_t add(const KeyT& key, const ValueT& value) { argument
120 return mList.add(Pair(key, value));
168 ssize_t replaceValueFor(const KeyT& key, const ValueT& value) {
170 return add(key, value);
177 Pair(const KeyT& key, const ValueT& value) :
179 mValue(value) {}
[all...]
/frameworks/av/include/drm/
H A DDrmConstraints.h120 const char* value = this->getAsByteArray(&key); local
121 if (NULL != value) {
122 delete[] value;
123 value = NULL;
137 * Adds constraint information as <key, value> pair to this instance
140 * @param[in] value Value to add
143 status_t put(const String8* key, const char* value);
146 * Retrieves the value of given key
148 * @param key Key whose value to be retrieved
149 * @return The value
[all...]

Completed in 4052 milliseconds

1234567891011>>