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