Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dtclsqlite.c547 while( pDb->pCollate ){ in delDatabaseRef()
548 SqlCollate *pCollate = pDb->pCollate; in delDatabaseRef() local
549 pDb->pCollate = pCollate->pNext; in delDatabaseRef()
550 Tcl_Free((char*)pCollate); in delDatabaseRef()
2255 SqlCollate *pCollate; in DbObjCmd() local
2265 pCollate = (SqlCollate*)Tcl_Alloc( sizeof(*pCollate) + nScript + 1 ); in DbObjCmd()
2267 pCollate->interp = interp; in DbObjCmd()
2268 pCollate->pNext = pDb->pCollate; in DbObjCmd()
2269 pCollate->zScript = (char*)&pCollate[1]; in DbObjCmd()
2270 pDb->pCollate = pCollate; in DbObjCmd()
[all …]