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

  /external/chromium_org/third_party/sqlite/src/src/
test_devsym.c 134 static int devsymClose(sqlite3_file *pFile){
135 devsym_file *p = (devsym_file *)pFile;
143 sqlite3_file *pFile,
148 devsym_file *p = (devsym_file *)pFile;
156 sqlite3_file *pFile,
161 devsym_file *p = (devsym_file *)pFile;
168 static int devsymTruncate(sqlite3_file *pFile, sqlite_int64 size){
169 devsym_file *p = (devsym_file *)pFile;
176 static int devsymSync(sqlite3_file *pFile, int flags){
177 devsym_file *p = (devsym_file *)pFile;
    [all...]
os_win.c 357 ** descriptor pFile
359 static BOOL winceCreateLock(const char *zFilename, winFile *pFile){
365 ZeroMemory(&pFile->local, sizeof(pFile->local));
375 pFile->hMutex = CreateMutexW(NULL, FALSE, zName);
376 if (!pFile->hMutex){
377 pFile->lastErrno = GetLastError();
383 winceMutexAcquire(pFile->hMutex);
390 pFile->hShared = CreateFileMappingW(INVALID_HANDLE_VALUE, NULL,
403 if (pFile->hShared)
    [all...]
os_unix.c     [all...]
os_os2.c 97 os2File *pFile = (os2File*)id;
100 OSTRACE(( "CLOSE %d (%s)\n", pFile->h, pFile->zFullPathCp ));
102 rc = DosClose( pFile->h );
104 if( pFile->flags & SQLITE_OPEN_DELETEONCLOSE )
105 DosForceDelete( (PSZ)pFile->zFullPathCp );
107 free( pFile->zFullPathCp );
108 pFile->zFullPathCp = NULL;
109 pFile->locktype = NO_LOCK;
110 pFile->h = (HFILE)-1
    [all...]
test6.c 121 CrashFile *pFile; /* File this write() applies to */
187 ** pFile. If isCrash is true, simulate a crash.
189 static int writeListSync(CrashFile *pFile, int isCrash){
198 ** pFile.
206 if( pWrite->pFile==pFile ){
221 printf("Sync %s (is %s crash)\n", pFile->zName, (isCrash?"a":"not a"));
226 sqlite3_file *pRealFile = pWrite->pFile->pRealFile;
235 if( (pWrite->pFile==pFile || iDc&SQLITE_IOCAP_SEQUENTIAL) )
    [all...]
test_onefile.c 99 sqlite3_file *pFile;
257 static int tmpClose(sqlite3_file *pFile){
258 tmp_file *pTmp = (tmp_file *)pFile;
267 sqlite3_file *pFile,
272 tmp_file *pTmp = (tmp_file *)pFile;
284 sqlite3_file *pFile,
289 tmp_file *pTmp = (tmp_file *)pFile;
307 static int tmpTruncate(sqlite3_file *pFile, sqlite_int64 size){
308 tmp_file *pTmp = (tmp_file *)pFile;
316 static int tmpSync(sqlite3_file *pFile, int flags)
    [all...]
test_demovfs.c 201 static int demoClose(sqlite3_file *pFile){
203 DemoFile *p = (DemoFile*)pFile;
214 sqlite3_file *pFile,
219 DemoFile *p = (DemoFile*)pFile;
254 sqlite3_file *pFile,
259 DemoFile *p = (DemoFile*)pFile;
305 static int demoTruncate(sqlite3_file *pFile, sqlite_int64 size){
307 if( ftruncate(((DemoFile *)pFile)->fd, size) ) return SQLITE_IOERR_TRUNCATE;
315 static int demoSync(sqlite3_file *pFile, int flags){
316 DemoFile *p = (DemoFile*)pFile;
    [all...]
test_quota.c 109 quotaFile *pFile; /* The underlying file */
296 quotaFile *pFile; /* Corresponding quotaFile obj */
322 for(pFile=pGroup->pFiles; pFile && strcmp(pFile->zFilename, zName);
323 pFile=pFile->pNext){}
324 if( pFile==0 ){
326 pFile = sqlite3_malloc( sizeof(*pFile) + nName + 1 )
    [all...]
test_journal.c 250 static int jtClose(sqlite3_file *pFile){
252 jt_file *p = (jt_file *)pFile;
268 sqlite3_file *pFile,
273 jt_file *p = (jt_file *)pFile;
509 sqlite3_file *pFile,
515 jt_file *p = (jt_file *)pFile;
572 static int jtTruncate(sqlite3_file *pFile, sqlite_int64 size){
573 jt_file *p = (jt_file *)pFile;
592 static int jtSync(sqlite3_file *pFile, int flags){
593 jt_file *p = (jt_file *)pFile;
    [all...]
os.c 129 sqlite3_file *pFile,
139 rc = pVfs->xOpen(pVfs, zPath, pFile, flags & 0x87f3f, pFlagsOut);
140 assert( rc==SQLITE_OK || pFile->pMethods==0 );
210 sqlite3_file *pFile;
211 pFile = (sqlite3_file *)sqlite3Malloc(pVfs->szOsFile);
212 if( pFile ){
213 rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags);
215 sqlite3_free(pFile);
217 *ppFile = pFile;
222 int sqlite3OsCloseFree(sqlite3_file *pFile){
    [all...]
test_osinst.c 151 static int vfslogShmLock(sqlite3_file *pFile, int ofst, int n, int flags);
152 static int vfslogShmMap(sqlite3_file *pFile,int,int,int,volatile void **);
154 static int vfslogShmUnmap(sqlite3_file *pFile, int deleteFlag);
251 static int vfslogClose(sqlite3_file *pFile){
254 VfslogFile *p = (VfslogFile *)pFile;
269 sqlite3_file *pFile,
276 VfslogFile *p = (VfslogFile *)pFile;
288 sqlite3_file *pFile,
295 VfslogFile *p = (VfslogFile *)pFile;
306 static int vfslogTruncate(sqlite3_file *pFile, sqlite_int64 size)
    [all...]
test_vfs.c 48 #define tvfsGetFd(pFile) (((TestvfsFile *)pFile)->pFd)
144 TestvfsFd *pFile; /* List of open handles */
320 static int tvfsClose(sqlite3_file *pFile){
322 TestvfsFile *pTestfile = (TestvfsFile *)pFile;
336 if( pFile->pMethods ){
337 ckfree((char *)pFile->pMethods);
349 sqlite3_file *pFile,
354 TestvfsFd *p = tvfsGetFd(pFile);
362 sqlite3_file *pFile,
    [all...]
test_vfstrace.c 192 static int vfstraceClose(sqlite3_file *pFile){
193 vfstrace_file *p = (vfstrace_file *)pFile;
210 sqlite3_file *pFile,
215 vfstrace_file *p = (vfstrace_file *)pFile;
229 sqlite3_file *pFile,
234 vfstrace_file *p = (vfstrace_file *)pFile;
247 static int vfstraceTruncate(sqlite3_file *pFile, sqlite_int64 size){
248 vfstrace_file *p = (vfstrace_file *)pFile;
261 static int vfstraceSync(sqlite3_file *pFile, int flags){
262 vfstrace_file *p = (vfstrace_file *)pFile;
    [all...]
backup.c 294 ** If pFile is currently larger than iSize bytes, then truncate it to
295 ** exactly iSize bytes. If pFile is not larger than iSize bytes, then
301 static int backupTruncateFile(sqlite3_file *pFile, i64 iSize){
303 int rc = sqlite3OsFileSize(pFile, &iCurrent);
305 rc = sqlite3OsTruncate(pFile, iSize);
458 sqlite3_file * const pFile = sqlite3PagerFile(pDestPager);
462 assert( pFile );
488 rc = sqlite3OsWrite(pFile, zData, pgszSrc, iOff);
493 rc = backupTruncateFile(pFile, iSize);
pragma.c 789 sqlite3_file *pFile = sqlite3PagerFile(pPager);
790 sqlite3OsFileControl(pFile, SQLITE_GET_LOCKPROXYFILE,
802 sqlite3_file *pFile = sqlite3PagerFile(pPager);
805 res=sqlite3OsFileControl(pFile, SQLITE_SET_LOCKPROXYFILE,
808 res=sqlite3OsFileControl(pFile, SQLITE_SET_LOCKPROXYFILE,
    [all...]
pager.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/async/
sqlite3async.c 475 ** false, variables AsyncLock.pFile and AsyncLock.eLock are never used.
476 ** Otherwise, pFile is a file handle opened on the file in question and
486 sqlite3_file *pFile;
627 static int asyncClose(sqlite3_file *pFile){
628 AsyncFileData *p = ((AsyncFile *)pFile)->pData;
646 sqlite3_file *pFile,
651 AsyncFileData *p = ((AsyncFile *)pFile)->pData;
663 sqlite3_file *pFile,
668 AsyncFileData *p = ((AsyncFile *)pFile)->pData;
743 static int asyncTruncate(sqlite3_file *pFile, sqlite3_int64 nByte)
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /external/chromium_org/third_party/zlib/contrib/minizip/
minizip.c 214 FILE* pFile = fopen64(filename, "rb");
216 if(pFile != NULL)
218 int n = fseeko64(pFile, 0, SEEK_END);
220 pos = ftello64(pFile);
227 fclose(pFile);
  /external/chromium_org/chrome/app/
signature_validator_win.cc 154 trust_data.pFile = &file_info; // check this file
  /external/chromium_org/chrome/browser/safe_browsing/
binary_feature_extractor_win.cc 43 wintrust_data.pFile = &file_info;
  /external/chromium_org/v8/src/base/platform/
platform-win32.cc 68 int fopen_s(FILE** pFile, const char* filename, const char* mode) {
69 *pFile = fopen(filename, mode);
70 return *pFile != NULL ? 0 : 1;
    [all...]
  /dalvik/libdex/
DexFile.h 594 const DexClassDef* dexFindClass(const DexFile* pFile, const char* descriptor);
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 1518 milliseconds