Lines Matching refs:pSValuePointer
133 char *pETagPointer, char *pSValuePointer, char *pNewValueString)
155 sz_newReadBuff = (int)sz_file - (int)(pETagPointer - pSValuePointer) + strlen(pNewValueString);
168 memcpy( pNewReadBuff, pReadBuff, (int)(pSValuePointer-pReadBuff) );
169 pCurReadBuff += (int)(pSValuePointer-pReadBuff);
269 char *pSValuePointer = NULL, *pETagPointer = NULL;
296 pSValuePointer = pReadBuff + positionStart;
301 pETagPointer = pSValuePointer + lengthToRead;
306 if( buffLength >= (int)(pETagPointer-pSValuePointer) ) {
308 memcpy( pValueBuff, pSValuePointer, (int)(pETagPointer-pSValuePointer) );
309 result = (int)(pETagPointer-pSValuePointer);
311 wfc_util_log_error("wfc_util_fget_buffer : not enough string value buffer(%d)", (int)(pETagPointer-pSValuePointer));
349 char *pSPointer = NULL, *pETagPointer = NULL, *pSValuePointer = NULL;
393 pSValuePointer = pSPointer+strlen(pSTagString);
394 if(strlen(pNewValueString) == (unsigned int)(pETagPointer-pSValuePointer)) {
395 lseek( fd, (int)(pSValuePointer-pReadBuff), SEEK_SET );
401 wfc_util_fupdate_string(fd, &pReadBuff, pETagPointer, pSValuePointer, pNewValueString);
473 char *pSPointer = NULL, *pETagPointer = NULL, *pSValuePointer = NULL;
520 pSValuePointer = pSPointer+strlen(pSTagString);
521 if( stringBuffLength >= (int)(pETagPointer-pSValuePointer) ) {
523 memcpy( pValueStringBuff, pSValuePointer, (int)(pETagPointer-pSValuePointer) );
524 result = (int)(pETagPointer-pSValuePointer);
526 wfc_util_log_error("wfc_util_fget_string : not enough string value buffer(%d)", (int)(pETagPointer-pSValuePointer));