Searched refs:DupSuppressInfoSize (Results 1 - 2 of 2) sorted by relevance

/external/mdnsresponder/mDNSCore/
H A DmDNSEmbeddedAPI.h1422 #define DupSuppressInfoSize 8 macro
1525 DupSuppressInfo DupSuppress[DupSuppressInfoSize];
H A DmDNS.c2704 mDNSlocal void ExpireDupSuppressInfo(DupSuppressInfo ds[DupSuppressInfoSize], mDNSs32 time)
2707 for (i=0; i<DupSuppressInfoSize; i++) if (ds[i].Time - time < 0) ds[i].InterfaceID = mDNSNULL;
2710 mDNSlocal void ExpireDupSuppressInfoOnInterface(DupSuppressInfo ds[DupSuppressInfoSize], mDNSs32 time, mDNSInterfaceID InterfaceID)
2713 for (i=0; i<DupSuppressInfoSize; i++) if (ds[i].InterfaceID == InterfaceID && ds[i].Time - time < 0) ds[i].InterfaceID = mDNSNULL;
2716 mDNSlocal mDNSBool SuppressOnThisInterface(const DupSuppressInfo ds[DupSuppressInfoSize], const NetworkInterfaceInfo * const intf)
2721 for (i=0; i<DupSuppressInfoSize; i++)
2731 mDNSlocal int RecordDupSuppressInfo(DupSuppressInfo ds[DupSuppressInfoSize], mDNSs32 Time, mDNSInterfaceID InterfaceID, mDNSs32 Type)
2736 for (i=0; i<DupSuppressInfoSize; i++) if (ds[i].InterfaceID == InterfaceID && ds[i].Type == Type) break;
2739 if (i >= DupSuppressInfoSize)
2742 for (j=1; j<DupSuppressInfoSize
[all...]

Completed in 86 milliseconds