Searched refs:pMaster (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dmain.c109 sqlite3_mutex *pMaster; /* The main static mutex */ local
143 pMaster = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER);
144 sqlite3_mutex_enter(pMaster);
162 sqlite3_mutex_leave(pMaster);
209 sqlite3_mutex_enter(pMaster);
216 sqlite3_mutex_leave(pMaster);
H A Dvdbeaux.c1789 sqlite3_file *pMaster = 0; local
1806 rc = sqlite3OsOpenMalloc(pVfs, zMaster, &pMaster,
1833 rc = sqlite3OsWrite(pMaster, zFile, sqlite3Strlen30(zFile)+1, offset);
1836 sqlite3OsCloseFree(pMaster);
1848 && 0==(sqlite3OsDeviceCharacteristics(pMaster)&SQLITE_IOCAP_SEQUENTIAL)
1849 && SQLITE_OK!=(rc = sqlite3OsSync(pMaster, SQLITE_SYNC_NORMAL))
1851 sqlite3OsCloseFree(pMaster);
1873 sqlite3OsCloseFree(pMaster);
H A Dpager.c2374 sqlite3_file *pMaster; /* Malloc'd master-journal file descriptor */ local
2382 /* Allocate space for both the pJournal and pMaster file descriptors.
2385 pMaster = (sqlite3_file *)sqlite3MallocZero(pVfs->szOsFile * 2);
2386 pJournal = (sqlite3_file *)(((u8 *)pMaster) + pVfs->szOsFile);
2387 if( !pMaster ){
2391 rc = sqlite3OsOpen(pVfs, zMaster, pMaster, flags, 0);
2400 rc = sqlite3OsFileSize(pMaster, &nMasterJournal);
2409 rc = sqlite3OsRead(pMaster, zMasterJournal, (int)nMasterJournal, 0);
2447 sqlite3OsClose(pMaster);
2452 if( pMaster ){
[all...]
H A Dbtree.c1958 sqlite3_mutex *pMaster; local
1963 pMaster = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER);
1964 sqlite3_mutex_enter(pMaster);
1983 sqlite3_mutex_leave(pMaster);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c38817 sqlite3_file *pMaster; /* Malloc'd master-journal file descriptor */ local
49256 sqlite3_mutex *pMaster; local
59093 sqlite3_file *pMaster = 0; local
107561 sqlite3_mutex *pMaster; /* The main static mutex */ local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c40790 sqlite3_file *pMaster; /* Malloc'd master-journal file descriptor */ local
61343 sqlite3_file *pMaster = 0; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c40818 sqlite3_file *pMaster; /* Malloc'd master-journal file descriptor */ local
61371 sqlite3_file *pMaster = 0; local
[all...]

Completed in 579 milliseconds