Home | History | Annotate | Download | only in jhead

Lines Matching refs:attrPtr

217     char* attrPtr = strchr(attributes, ' ') + 1;
219 ALOGE("attribute count %d attrPtr %s\n", attrCnt, attrPtr);
240 char* tagEnd = strchr(attrPtr, '=');
247 if (tagEnd - attrPtr > 99) {
253 memcpy(tag, attrPtr, tagEnd - attrPtr);
254 tag[tagEnd - attrPtr] = 0;
265 attrPtr = tagEnd + 1;
272 int valueLen = atoi(attrPtr);
273 attrPtr = strchr(attrPtr, ' ') + 1;
274 if (attrPtr == 0) {
284 memcpy(exifElementTable[i].Value, attrPtr, valueLen);
288 attrPtr += valueLen;