Lines Matching refs:Info
558 AX_TABLE_INFO *Info; in AxGetNextInstance() local
561 Info = Gbl_TableListHead; in AxGetNextInstance()
562 while (Info) in AxGetNextInstance()
564 if (*(UINT32 *) Signature == Info->Signature) in AxGetNextInstance()
569 Info = Info->Next; in AxGetNextInstance()
572 if (!Info) in AxGetNextInstance()
576 Info = malloc (sizeof (AX_TABLE_INFO)); in AxGetNextInstance()
577 if (!Info) in AxGetNextInstance()
584 Info->Signature = *(UINT32 *) Signature; in AxGetNextInstance()
585 Info->Instances = AxCountTableInstances (InputPathname, Signature); in AxGetNextInstance()
586 Info->NextInstance = 1; in AxGetNextInstance()
587 Info->Next = Gbl_TableListHead; in AxGetNextInstance()
588 Gbl_TableListHead = Info; in AxGetNextInstance()
591 if (Info->Instances > 1) in AxGetNextInstance()
593 return (Info->NextInstance++); in AxGetNextInstance()