Lines Matching refs:pId

27343 SQLITE_PRIVATE void sqlite3OsClose(sqlite3_file *pId){  in sqlite3OsClose()  argument
27344 if( pId->pMethods ){ in sqlite3OsClose()
27345 pId->pMethods->xClose(pId); in sqlite3OsClose()
27346 pId->pMethods = 0; in sqlite3OsClose()
40457 struct vxworksFileId *pId; /* Unique file ID */ member
41337 static void vxworksReleaseFileId(struct vxworksFileId *pId){ in vxworksReleaseFileId() argument
41339 assert( pId->nRef>0 ); in vxworksReleaseFileId()
41340 pId->nRef--; in vxworksReleaseFileId()
41341 if( pId->nRef==0 ){ in vxworksReleaseFileId()
41343 for(pp=&vxworksFileList; *pp && *pp!=pId; pp = &((*pp)->pNext)){} in vxworksReleaseFileId()
41344 assert( *pp==pId ); in vxworksReleaseFileId()
41345 *pp = pId->pNext; in vxworksReleaseFileId()
41346 sqlite3_free(pId); in vxworksReleaseFileId()
41452 struct vxworksFileId *pId; /* Unique file ID for vxworks. */ member
41751 fileId.pId = pFile->pId; in findInodeInfo()
41792 return pFile->pInode!=0 && pFile->pId!=pFile->pInode->fileId.pId; in fileHasMoved()
42483 if( pFile->pId ){ in closeUnixFile()
42485 osUnlink(pFile->pId->zCanonicalName); in closeUnixFile()
42487 vxworksReleaseFileId(pFile->pId); in closeUnixFile()
42488 pFile->pId = 0; in closeUnixFile()
46250 sqlite3_file *pId, /* Write to the unixFile structure here */ in fillInUnixFile() argument
46255 unixFile *pNew = (unixFile *)pId; in fillInUnixFile()
46280 pNew->pId = vxworksFindFileId(zFilename); in fillInUnixFile()
46281 if( pNew->pId==0 ){ in fillInUnixFile()
46387 pNew->pId->zCanonicalName); in fillInUnixFile()
46410 if( pNew->pId ){ in fillInUnixFile()
46411 vxworksReleaseFileId(pNew->pId); in fillInUnixFile()
46412 pNew->pId = 0; in fillInUnixFile()
46419 pId->pMethods = pLockingStyle; in fillInUnixFile()
145003 Token *pId; /* Pointer to <id> token */ local
145018 iDb = sqlite3TwoPartName(pParse, pId1, pId2, &pId);
145029 zLeft = sqlite3NameFromToken(db, pId);