open_handle
struct open_handle *open_handle_ptr, *open_handle_prev_ptr;
open_handle = hba_ptr->open_handles;
while (open_handle != NULL) {
last_open_handle = open_handle;
open_handle = open_handle->next;
struct open_handle *open_handle = NULL;
struct open_handle *last_open_handle = NULL;
struct open_handle *oHandle;
struct open_handle *open_handle_ptr;
struct open_handle *
struct open_handle *open_handle_ptr = NULL;
struct open_handle *new_open_handle;
if ((new_open_handle = (struct open_handle *)calloc(1,
sizeof (struct open_handle))) == NULL) {
(void) memset(new_open_handle, 0, sizeof (struct open_handle));
struct open_handle *next;
struct open_handle *open_handles;
extern struct open_handle *RetrieveOpenHandle(HBA_HANDLE);