Home
last modified time | relevance | path

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

/dports/databases/unixODBC/unixODBC-2.3.9/DriverManager/
H A DSQLError.c202 if ( head -> sql_error_head.error_count < 1 ) in local_extract_sql_error()
207 err = head -> sql_error_head.error_list_head; in local_extract_sql_error()
208 head -> sql_error_head.error_list_head = err -> next; in local_extract_sql_error()
214 if ( head -> sql_error_head.error_list_tail == err ) in local_extract_sql_error()
215 head -> sql_error_head.error_list_tail = NULL; in local_extract_sql_error()
220 if ( head -> sql_error_head.error_list_head ) in local_extract_sql_error()
222 head -> sql_error_head.error_list_head -> prev = NULL; in local_extract_sql_error()
225 head -> sql_error_head.error_count --; in local_extract_sql_error()
H A DSQLErrorW.c195 if ( head -> sql_error_head.error_count < 1 ) in local_extract_sql_error_w()
200 err = head -> sql_error_head.error_list_head; in local_extract_sql_error_w()
201 head -> sql_error_head.error_list_head = err -> next; in local_extract_sql_error_w()
206 if ( head -> sql_error_head.error_list_tail == err ) in local_extract_sql_error_w()
207 head -> sql_error_head.error_list_tail = NULL; in local_extract_sql_error_w()
212 if ( head -> sql_error_head.error_list_head ) in local_extract_sql_error_w()
214 head -> sql_error_head.error_list_head -> prev = NULL; in local_extract_sql_error_w()
217 head -> sql_error_head.error_count --; in local_extract_sql_error_w()
H A D__info.c3750 error_header -> sql_error_head.error_count ++; in insert_into_error_list()
3752 if ( error_header -> sql_error_head.error_list_head ) in insert_into_error_list()
3761 curr = error_header -> sql_error_head.error_list_head; in insert_into_error_list()
3806 error_header -> sql_error_head.error_list_tail = e1; in insert_into_error_list()
3807 error_header -> sql_error_head.error_list_head = e1; in insert_into_error_list()
4137 cur = error_header -> sql_error_head.error_list_head; in clear_error_head()
4148 error_header -> sql_error_head.error_list_head = NULL; in clear_error_head()
4149 error_header -> sql_error_head.error_list_tail = NULL; in clear_error_head()
5187 cur = error_header -> sql_error_head.error_list_head; in function_entry()
5198 error_header -> sql_error_head.error_list_head = NULL; in function_entry()
[all …]
H A Ddrivermanager.h195 EHEADER sql_error_head; member