Searched defs:pLog (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_malloc.c747 MallocLog *pLog; local
762 pLog = (MallocLog *)Tcl_Alloc(sizeof(MallocLog));
763 memset(pLog, 0, sizeof(MallocLog));
764 Tcl_SetHashValue(pEntry, (ClientData)pLog);
766 pLog = (MallocLog *)Tcl_GetHashValue(pEntry);
769 pLog->nCall++;
770 pLog->nByte += nByte;
783 MallocLog *pLog = (MallocLog *)Tcl_GetHashValue(pEntry); local
784 Tcl_Free((char *)pLog);
841 MallocLog *pLog local
[all...]
H A Dshell.c421 FILE *pLog; /* Write log output here */ member in struct:callback_data
469 if( p->pLog==0 ) return;
470 fprintf(p->pLog, "(%d) %s\n", iErrCode, zMsg);
471 fflush(p->pLog);
1853 if( p->pLog && p->pLog!=stdout && p->pLog!=stderr ){
1854 fclose(p->pLog);
1855 p->pLog = 0;
1858 p->pLog
[all...]
H A Dtest_osinst.c118 sqlite3_file *pLog; /* Log file handle */ member in struct:VfslogVfs
482 VfslogVfs *pLog = (VfslogVfs *)pVfs; local
487 p->iFileId = ++pLog->iNextFileId;
624 p->pLog->pMethods->xWrite(p->pLog, p->aBuf, p->nBuf, p->iOffset);
683 if( p->pLog->pMethods ){
685 p->pLog->pMethods->xClose(p->pLog);
725 p->pLog = (sqlite3_file *)&p[1];
727 p->base.zName = &((char *)p->pLog)[pParen
[all...]
/external/sqlite/dist/orig/
H A Dshell.c475 FILE *pLog; /* Write log output here */ member in struct:callback_data
526 if( p->pLog==0 ) return;
527 fprintf(p->pLog, "(%d) %s\n", iErrCode, zMsg);
528 fflush(p->pLog);
2808 output_file_close(p->pLog);
2809 p->pLog = output_file_open(zFile);
/external/sqlite/dist/
H A Dshell.c480 FILE *pLog; /* Write log output here */ member in struct:callback_data
531 if( p->pLog==0 ) return;
532 fprintf(p->pLog, "(%d) %s\n", iErrCode, zMsg);
533 fflush(p->pLog);
2828 output_file_close(p->pLog);
2829 p->pLog = output_file_open(zFile);

Completed in 450 milliseconds