Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dparse.y1764 %destructor windowdefn {sqlite3WindowDelete(pParse->db, $$);}
1773 %destructor window {sqlite3WindowDelete(pParse->db, $$);}
1776 %destructor frame_opt {sqlite3WindowDelete(pParse->db, $$);}
1785 %destructor over_clause {sqlite3WindowDelete(pParse->db, $$);}
1788 %destructor filter_over {sqlite3WindowDelete(pParse->db, $$);}
H A Dwindow.c1132 void sqlite3WindowDelete(sqlite3 *db, Window *p){ in sqlite3WindowDelete() function
1152 sqlite3WindowDelete(db, p); in sqlite3WindowListDelete()
1322 sqlite3WindowDelete(pParse->db, pWin); in sqlite3WindowAttach()
H A DsqliteInt.h4271 void sqlite3WindowDelete(sqlite3*, Window*);
4288 # define sqlite3WindowDelete(a,b) macro
H A Dexpr.c1246 sqlite3WindowDelete(db, p->y.pWin); in sqlite3ExprDeleteNN()