Lines Matching refs:pCollate
172 SqlCollate *pCollate; /* List of SQL collation functions */ member
547 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()
2266 if( pCollate==0 ) return TCL_ERROR; 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()
2271 memcpy(pCollate->zScript, zScript, nScript+1); in DbObjCmd()
2273 pCollate, tclSqlCollate) ){ in DbObjCmd()