Lines Matching refs:Info
318 AX_TABLE_INFO *Info; in AxGetNextInstance() local
321 Info = Gbl_TableListHead; in AxGetNextInstance()
322 while (Info) in AxGetNextInstance()
324 if (*(UINT32 *) Signature == Info->Signature) in AxGetNextInstance()
329 Info = Info->Next; in AxGetNextInstance()
332 if (!Info) in AxGetNextInstance()
336 Info = malloc (sizeof (AX_TABLE_INFO)); in AxGetNextInstance()
337 if (!Info) in AxGetNextInstance()
344 Info->Signature = *(UINT32 *) Signature; in AxGetNextInstance()
345 Info->Instances = AxCountTableInstances (InputPathname, Signature); in AxGetNextInstance()
346 Info->NextInstance = 1; in AxGetNextInstance()
347 Info->Next = Gbl_TableListHead; in AxGetNextInstance()
348 Gbl_TableListHead = Info; in AxGetNextInstance()
351 if (Info->Instances > 1) in AxGetNextInstance()
353 return (Info->NextInstance++); in AxGetNextInstance()