Searched refs:boundary (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/media/libdrm/mobile1/include/objmng/
H A Ddrm_inner.h44 uint8_t boundary[256]; member in struct:_T_DRM_DM_Binary_Node
48 uint8_t boundary[256]; member in struct:_T_DRM_DM_Base64_Node
/frameworks/base/media/libdrm/mobile1/include/parser/
H A Dparser_dm.h61 uint8_t boundary[MAX_CONTENT_BOUNDARY_LEN]; /**< DRM message's boundary */ member in struct:_T_DRM_DM_Info
/frameworks/base/media/libdrm/mobile1/src/parser/
H A Dparser_dm.c82 /* Find out the boundary */
85 return FALSE; /* No boundary error */
88 /* Record the boundary */
93 strncpy((char *)pDmInfo->boundary, (char *)pStart, pEnd - pStart);
94 boundaryLen = strlen((char *)pDmInfo->boundary) + 2; /* 2 means: '\r' and '\n' */
194 break; /* no boundary found */
200 break; /* here means may be the boundary has been split */
203 if (('\n' == *(pEnd + 1)) && (0 == memcmp(pEnd + 2, pDmInfo->boundary, strlen((char *)pDmInfo->boundary))))
204 break; /* find the boundary her
[all...]
/frameworks/base/media/libdrm/mobile1/src/objmng/
H A Ddrm_api.c155 /* check if it is DRM Message, only check the first two bytes, it must be the start flag of boundary: "--" */
188 static int32_t drm_scanEndBoundary(const uint8_t* pBuf, int32_t len, uint8_t* const boundary) argument
194 if (NULL == pBuf || len <=0 || NULL == boundary)
198 boundaryLen = strlen((char *)boundary) + 2; /* 2 means: '\r' and '\n' */
206 return -2; /* here means may be the boundary has been split */
208 if (('\n' == *(p + 1)) && (0 == memcmp(p + 2, boundary, strlen((char *)boundary))))
209 return p - pBuf; /* find the boundary here */
215 return len; /* no boundary found */
873 strcpy((char *)((T_DRM_DM_Base64_Node *)(s->infoStruct))->boundary, (cha
[all...]
/frameworks/base/libs/utils/
H A DResourceTypes.cpp111 LOGW("%s size 0x%x or headerSize 0x%x is not on an integer boundary.",
1743 LOGW("Bad resource table: header size 0x%x or total size 0x%x is not on an integer boundary\n",
2534 LOGW("ResTable_entry at %d (pkg=%d type=%d ent=%d) is not on an integer boundary when looking for %s:%s/%s",
3741 LOGW("ResTable_entry at 0x%x is not on an integer boundary",
3779 LOGW("ResTable_package type strings at %p is not on an integer boundary.",
3789 LOGW("ResTable_package key strings at %p is not on an integer boundary.",

Completed in 79 milliseconds