Lines Matching refs:pCollate
196 SqlCollate *pCollate; /* List of SQL collation functions */ member
571 while( pDb->pCollate ){ in delDatabaseRef()
572 SqlCollate *pCollate = pDb->pCollate; in delDatabaseRef() local
573 pDb->pCollate = pCollate->pNext; in delDatabaseRef()
574 Tcl_Free((char*)pCollate); in delDatabaseRef()
2279 SqlCollate *pCollate; in DbObjCmd() local
2289 pCollate = (SqlCollate*)Tcl_Alloc( sizeof(*pCollate) + nScript + 1 ); in DbObjCmd()
2290 if( pCollate==0 ) return TCL_ERROR; in DbObjCmd()
2291 pCollate->interp = interp; in DbObjCmd()
2292 pCollate->pNext = pDb->pCollate; in DbObjCmd()
2293 pCollate->zScript = (char*)&pCollate[1]; in DbObjCmd()
2294 pDb->pCollate = pCollate; in DbObjCmd()
2295 memcpy(pCollate->zScript, zScript, nScript+1); in DbObjCmd()
2297 pCollate, tclSqlCollate) ){ in DbObjCmd()