Lines Matching refs:InfoLength

763     ULONG InfoLength;  in NvNetGetTcpTaskOffload()  local
773 InfoLength = sizeof(NDIS_TASK_OFFLOAD_HEADER); in NvNetGetTcpTaskOffload()
776 InfoLength += FIELD_OFFSET(NDIS_TASK_OFFLOAD, TaskBuffer) + in NvNetGetTcpTaskOffload()
781 InfoLength += FIELD_OFFSET(NDIS_TASK_OFFLOAD, TaskBuffer) + in NvNetGetTcpTaskOffload()
785 if (InformationBufferLength < InfoLength) in NvNetGetTcpTaskOffload()
788 *BytesNeeded = InfoLength; in NvNetGetTcpTaskOffload()
856 *BytesWritten = InfoLength; in NvNetGetTcpTaskOffload()
983 ULONG InfoLength; in MiniportQueryInformation() local
995 InfoLength = sizeof(ULONG); in MiniportQueryInformation()
1002 InfoLength = sizeof(NvpSupportedOidList); in MiniportQueryInformation()
1006 InfoLength = sizeof(NDIS_HARDWARE_STATUS); in MiniportQueryInformation()
1013 InfoLength = sizeof(NDIS_MEDIUM); in MiniportQueryInformation()
1068 InfoLength = sizeof(USHORT); in MiniportQueryInformation()
1077 InfoLength = sizeof(VendorDesc); in MiniportQueryInformation()
1178 InfoLength = ETH_LENGTH_OF_ADDRESS; in MiniportQueryInformation()
1185 InfoLength = ETH_LENGTH_OF_ADDRESS; in MiniportQueryInformation()
1192 InfoLength = Adapter->MulticastListSize * ETH_LENGTH_OF_ADDRESS; in MiniportQueryInformation()
1219 InfoLength = sizeof(NDIS_PNP_CAPABILITIES); in MiniportQueryInformation()
1221 if (InformationBufferLength < InfoLength) in MiniportQueryInformation()
1224 *BytesNeeded = InfoLength; in MiniportQueryInformation()
1228 *BytesWritten = InfoLength; in MiniportQueryInformation()
1258 if (InfoLength > InformationBufferLength) in MiniportQueryInformation()
1261 *BytesNeeded = InfoLength; in MiniportQueryInformation()
1266 NdisMoveMemory(InformationBuffer, InfoPtr, InfoLength); in MiniportQueryInformation()
1267 *BytesWritten = InfoLength; in MiniportQueryInformation()