HomeSort by relevance Sort by last modified time
    Searched refs:zBuf (Results 26 - 50 of 60) sorted by null

12 3

  /external/chromium_org/third_party/sqlite/src/src/
test_devsym.c 144 void *zBuf,
149 return sqlite3OsRead(p->pReal, zBuf, iAmt, iOfst);
157 const void *zBuf,
162 return sqlite3OsWrite(p->pReal, zBuf, iAmt, iOfst);
test_onefile.c 268 void *zBuf,
276 memcpy(zBuf, &pTmp->zAlloc[iOfst], iAmt);
285 const void *zBuf,
299 memcpy(&pTmp->zAlloc[iOfst], zBuf, iAmt);
402 void *zBuf,
416 rc = pF->pMethods->xRead(pF, zBuf, iAmt, iOfst+BLOCKSIZE);
426 rc = pF->pMethods->xRead(pF, &((char *)zBuf)[iBuf], iRealAmt, iRealOff);
441 const void *zBuf,
454 rc = pF->pMethods->xWrite(pF, zBuf, iAmt, iOfst+BLOCKSIZE);
471 rc = pF->pMethods->xWrite(pF, &((char *)zBuf)[iBuf], iRealAmt,iRealOff)
    [all...]
test4.c 257 char zBuf[100];
271 sprintf(zBuf, "%d", threadset[i].argc);
272 Tcl_AppendResult(interp, zBuf, 0);
631 char zBuf[100];
645 sqlite3TestMakePointerStr(interp, zBuf, threadset[i].db);
647 Tcl_AppendResult(interp, zBuf, (char*)0);
694 char zBuf[100];
708 sqlite3TestMakePointerStr(interp, zBuf, threadset[i].pStmt);
710 Tcl_AppendResult(interp, zBuf, (char*)0);
test_mutex.c 305 char zBuf[100];
307 sqlite3_snprintf(sizeof(zBuf), zBuf, "%p", p);
308 Tcl_AppendResult(interp, zBuf, (char*)0);
wal.h 94 u8 *zBuf, /* Temporary buffer to use */
os_os2.c     [all...]
os_win.c     [all...]
func.c 264 char *zBuf;
283 zBuf = sqlite3_mprintf("%.*f",n,r);
284 if( zBuf==0 ){
288 sqlite3AtoF(zBuf, &r, sqlite3Strlen30(zBuf), SQLITE_UTF8);
289 sqlite3_free(zBuf);
    [all...]
shell.c     [all...]
test_malloc.c 1108 static char *zBuf; /* Use this memory */
1109 static int szBuf; /* Bytes allocated for zBuf */
1125 free( zBuf );
1126 zBuf = 0;
1130 zBuf = realloc(zBuf, nByte);
1132 rc = sqlite3_config(SQLITE_CONFIG_HEAP, zBuf, nByte, nMinAlloc);
    [all...]
tclsqlite.c 627 char zBuf[64];
628 sprintf(zBuf, "%d", iArg);
629 Tcl_SetVar(interp, "sqlite_unlock_notify_arg", zBuf, TCL_GLOBAL_ONLY);
630 sprintf(zBuf, "%d", nArg);
631 Tcl_SetVar(interp, "sqlite_unlock_notify_argcount", zBuf, TCL_GLOBAL_ONLY);
    [all...]
vdbe.c 339 ** into buffer zBuf, length nBuf.
341 void sqlite3VdbeMemPrettyPrint(Mem *pMem, char *zBuf){
342 char *zCsr = zBuf;
386 zBuf[0] = ' ';
388 zBuf[1] = 'z';
391 zBuf[1] = 't';
394 zBuf[1] = 'e';
397 zBuf[1] = 's';
400 sqlite3_snprintf(100, &zBuf[k], "%d", pMem->n);
401 k += sqlite3Strlen30(&zBuf[k])
    [all...]
test7.c 288 char zBuf[100];
302 sprintf(zBuf, "%d", threadset[i].argc);
303 Tcl_AppendResult(interp, zBuf, 0);
vdbeInt.h 412 void sqlite3VdbeMemPrettyPrint(Mem *pMem, char *zBuf);
wal.c     [all...]
os_unix.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/async/
sqlite3async.c 425 ** nByte -> Number of bytes of data to write (pointed to by zBuf).
440 ** nByte -> Number of bytes of zBuf points to (file name).
444 ** nByte -> Number of bytes of zBuf points to (file name).
450 ** For an ASYNC_WRITE operation, zBuf points to the data to write to the file.
460 char *zBuf; /* Data to write to file (or NULL if op!=ASYNC_WRITE) */
614 p->zBuf = (char *)&p[1];
615 memcpy(p->zBuf, zByte, nByte);
617 p->zBuf = 0;
710 /* Set variable iBeginIn to the offset in buffer pWrite->zBuf[] from
724 memcpy(&((char *)zOut)[iBeginOut], &pWrite->zBuf[iBeginIn], (size_t)nCopy)
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
threadtest3.c 343 static void MD5DigestToBase16(unsigned char *digest, char *zBuf){
349 zBuf[j++] = zEncode[(a>>4)&0xf];
350 zBuf[j++] = zEncode[a & 0xf];
352 zBuf[j] = 0;
378 char zBuf[33];
381 MD5DigestToBase16(digest, zBuf);
382 sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT);
    [all...]
  /external/sqlite/dist/orig/
shell.c     [all...]
  /external/sqlite/dist/
shell.c     [all...]
  /external/chromium_org/third_party/lzma_sdk/
lzma_sdk.target.darwin-arm.mk 26 third_party/lzma_sdk/7zBuf.c \
lzma_sdk.target.darwin-mips.mk 26 third_party/lzma_sdk/7zBuf.c \
lzma_sdk.target.darwin-x86.mk 26 third_party/lzma_sdk/7zBuf.c \
lzma_sdk.target.linux-arm.mk 26 third_party/lzma_sdk/7zBuf.c \
lzma_sdk.target.linux-mips.mk 26 third_party/lzma_sdk/7zBuf.c \

Completed in 1987 milliseconds

12 3