Lines Matching refs:pCollate
207 SqlCollate *pCollate; /* List of SQL collation functions */ member
615 while( pDb->pCollate ){ in delDatabaseRef()
616 SqlCollate *pCollate = pDb->pCollate; in delDatabaseRef() local
617 pDb->pCollate = pCollate->pNext; in delDatabaseRef()
618 Tcl_Free((char*)pCollate); in delDatabaseRef()
2327 SqlCollate *pCollate; in DbObjCmd() local
2337 pCollate = (SqlCollate*)Tcl_Alloc( sizeof(*pCollate) + nScript + 1 ); in DbObjCmd()
2338 if( pCollate==0 ) return TCL_ERROR; in DbObjCmd()
2339 pCollate->interp = interp; in DbObjCmd()
2340 pCollate->pNext = pDb->pCollate; in DbObjCmd()
2341 pCollate->zScript = (char*)&pCollate[1]; in DbObjCmd()
2342 pDb->pCollate = pCollate; in DbObjCmd()
2343 memcpy(pCollate->zScript, zScript, nScript+1); in DbObjCmd()
2345 pCollate, tclSqlCollate) ){ in DbObjCmd()