HomeSort by relevance Sort by last modified time
    Searched refs:contentTypeLength (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/network/
ParsedContentType.cpp 134 unsigned contentTypeLength = contentType.length();
136 if (index >= contentTypeLength) {
144 receiver.setContentType(SubstringRange(index, contentTypeLength - index));
153 if (!keyRange.second || index >= contentTypeLength) {
159 if (contentType[index++] != '=' || index >= contentTypeLength) {
173 if (index < contentTypeLength && contentType[index++] != ';') {
180 if (index >= contentTypeLength)
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/
FwdLockFile.c 62 size_t contentTypeLength;
265 pSession->contentTypeLength = pSession->topHeader[CONTENT_TYPE_LENGTH_POS];
266 assert(pSession->contentTypeLength <= UCHAR_MAX); // Untaint scalar for code checkers.
267 pSession->pContentType = malloc(pSession->contentTypeLength + 1);
269 read(fileDesc, pSession->pContentType, pSession->contentTypeLength) ==
270 (ssize_t)pSession->contentTypeLength) {
271 pSession->pContentType[pSession->contentTypeLength] = '\0';
287 pSession->dataOffset = pSession->contentTypeLength +
421 pSession->contentTypeLength);
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduComposer.java 954 int contentTypeLength = contentTypeBegin.getLength();
956 appendValueLength(contentTypeLength);
    [all...]

Completed in 1222 milliseconds