HomeSort by relevance Sort by last modified time
    Searched refs:nText (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/sqlite/src/test/
threadtest3.c 413 int nText; /* Size of array at aText[] */
538 for(i=0; i<pDb->nText; i++){
656 if( iSlot>=pDb->nText ){
659 memset(&pDb->aText[pDb->nText], 0, sizeof(char*)*(iSlot+1-pDb->nText));
660 pDb->nText = iSlot+1;
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
test1.c 880 int nText;
885 nText = sqlite3_value_bytes(argv[0]);
893 char *zCopy = (char *)sqlite3_malloc(nText);
894 memcpy(zCopy, zText1, nText);
895 sqlite3_result_text(context, zCopy, nText, sqlite3_free);
    [all...]

Completed in 739 milliseconds