Home
last modified time | relevance | path

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

/reactos/dll/win32/msi/
H A Dselect.c58 if ((r = sv->table->ops->get_dimensions( sv->table, NULL, &col_count ))) in translate_record()
135 r = sv->table->ops->get_dimensions( sv->table, NULL, &col_count ); in SELECT_set_row()
173 r = sv->table->ops->get_dimensions( sv->table, NULL, &table_cols ); in SELECT_insert_row()
222 return sv->table->ops->get_dimensions( sv->table, rows, NULL ); in SELECT_get_dimensions()
392 if( !table->ops->get_dimensions ) in SELECT_AddColumn()
H A Dinsert.c134 r = iv->table->ops->get_dimensions(iv->table, NULL, &col_count); in arrange_record()
183 r = iv->table->ops->get_dimensions( iv->table, NULL, &col_count ); in row_has_null_primary_keys()
222 r = sv->ops->get_dimensions( sv, NULL, &col_count ); in INSERT_execute()
277 return sv->ops->get_dimensions( sv, rows, cols ); in INSERT_get_dimensions()
H A Ddistinct.c125 r = dv->table->ops->get_dimensions( dv->table, &r_count, &c_count ); in DISTINCT_execute()
204 return dv->table->ops->get_dimensions( dv->table, NULL, cols ); in DISTINCT_get_dimensions()
280 r = table->ops->get_dimensions( table, NULL, &count ); in DISTINCT_CreateView()
H A Ddelete.c90 r = dv->table->ops->get_dimensions( dv->table, &rows, &cols ); in DELETE_execute()
126 return dv->table->ops->get_dimensions( dv->table, NULL, cols ); in DELETE_get_dimensions()
H A Dupdate.c103 r = wv->ops->get_dimensions( wv, &row_count, &col_count ); in UPDATE_execute()
154 return wv->ops->get_dimensions( wv, rows, cols ); in UPDATE_get_dimensions()
H A Dmsiquery.c64 r = table->ops->get_dimensions( table, NULL, &count ); in VIEW_find_column()
293 ret = view->ops->get_dimensions(view, &row_count, &col_count); in msi_view_refresh_row()
360 if ((r = view->ops->get_dimensions(view, &row_count, &col_count))) in msi_view_get_row()
613 if( !view->ops->get_dimensions ) in MSI_ViewGetColumnInfo()
616 r = view->ops->get_dimensions( view, NULL, &count ); in MSI_ViewGetColumnInfo()
H A Dwhere.c835 r = table->view->ops->get_dimensions(table->view, &table->row_count, NULL); in WHERE_execute()
1268 r = table->view->ops->get_dimensions(table->view, NULL, in WHERE_CreateView()
H A Dmsipriv.h306 UINT (*get_dimensions)( struct tagMSIVIEW *view, UINT *rows, UINT *cols ); member
H A Dtable.c2833 r = q->view->ops->get_dimensions( q->view, &add_col, NULL ); in TransformView_Create()