Home
last modified time | relevance | path

Searched refs:pId (Results 1 – 2 of 2) sorted by relevance

/freebsd-12-stable/crypto/heimdal/lib/sqlite/
Dsqlite3.c14389 SQLITE_PRIVATE int sqlite3OsClose(sqlite3_file *pId){ in sqlite3OsClose() argument
14391 if( pId->pMethods ){ in sqlite3OsClose()
14392 rc = pId->pMethods->xClose(pId); in sqlite3OsClose()
14393 pId->pMethods = 0; in sqlite3OsClose()
24599 struct vxworksFileId *pId; /* Unique file ID */
25407 static void vxworksReleaseFileId(struct vxworksFileId *pId){
25409 assert( pId->nRef>0 );
25410 pId->nRef--;
25411 if( pId->nRef==0 ){
25413 for(pp=&vxworksFileList; *pp && *pp!=pId; pp = &((*pp)->pNext)){}
[all …]
/freebsd-12-stable/contrib/sqlite3/
Dsqlite3.c25672 SQLITE_PRIVATE void sqlite3OsClose(sqlite3_file *pId){ in sqlite3OsClose() argument
25673 if( pId->pMethods ){ in sqlite3OsClose()
25674 pId->pMethods->xClose(pId); in sqlite3OsClose()
25675 pId->pMethods = 0; in sqlite3OsClose()
38083 struct vxworksFileId *pId; /* Unique file ID */
38849 static void vxworksReleaseFileId(struct vxworksFileId *pId){
38851 assert( pId->nRef>0 );
38852 pId->nRef--;
38853 if( pId->nRef==0 ){
38855 for(pp=&vxworksFileList; *pp && *pp!=pId; pp = &((*pp)->pNext)){}
[all …]