Lines Matching defs:pInput
179135 const char *pInput, int nBytes, /* Input buffer */
179165 /* TODO(shess) current implementation requires pInput to be
179166 ** nul-terminated. This should either be fixed, or pInput/nBytes
189231 const char *pInput; /* input we are tokenizing */
189233 int iOffset; /* current position in pInput */
189298 ** string to be tokenized is pInput[0..nBytes-1]. A cursor
189304 const char *pInput, int nBytes, /* String to be tokenized */
189314 c->pInput = pInput;
189315 if( pInput==0 ){
189318 c->nBytes = (int)strlen(pInput);
189356 unsigned char *p = (unsigned char *)c->pInput;
197725 ** string to be tokenized is pInput[0..nBytes-1]. A cursor
207946 int nChar; /* Number of UChar elements in pInput */
207997 ** string to be tokenized is pInput[0..nBytes-1]. A cursor
219080 SessionInput *pInput, /* Input changeset */
219106 if( (rc = sessionInputBuffer(pInput, 2)) ) goto finished_invert;
219107 if( pInput->iNext>=pInput->nData ) break;
219108 eType = pInput->aData[pInput->iNext];
219121 pInput->iNext++;
219122 if( (rc = sessionChangesetBufferTblhdr(pInput, &nByte)) ){
219125 nVar = sessionVarintGet(&pInput->aData[pInput->iNext], &nCol);
219127 sessionAppendBlob(&sPK, &pInput->aData[pInput->iNext+nVar], nCol, &rc);
219129 sessionAppendBlob(&sOut, &pInput->aData[pInput->iNext], nByte, &rc);
219132 pInput->iNext += nByte;
219142 int bIndirect = pInput->aData[pInput->iNext+1];
219144 pInput->iNext += 2;
219146 rc = sessionChangesetBufferRecord(pInput, nCol, &nByte);
219149 sessionAppendBlob(&sOut, &pInput->aData[pInput->iNext], nByte, &rc);
219150 pInput->iNext += nByte;
219169 sessionAppendByte(&sOut, pInput->aData[pInput->iNext+1], &rc);
219172 pInput->iNext += 2;
219173 rc = sessionReadRecord(pInput, nCol, 0, &apVal[0], 0);
219175 rc = sessionReadRecord(pInput, nCol, 0, &apVal[nCol], 0);