HomeSort by relevance Sort by last modified time
    Searched refs:Mtu (Results 1 - 25 of 37) sorted by null

1 2

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Output.c 208 total data length is greater than MTU (or greater
236 UINT32 Mtu;
336 Mtu = IpSb->MaxPacketSize + sizeof (IP4_HEAD);
338 if (Packet->TotalSize + HeadLen > Mtu) {
352 Mtu = (Mtu - HeadLen) & (~0x07);
353 Num = (Packet->TotalSize + Mtu - 1) / Mtu;
357 // fragment, the packet length equals to MTU. The offset is always
358 // aligned to MTU.
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Output.c 499 UINT32 Mtu;
815 Mtu = IpSb->MaxPacketSize + sizeof (EFI_IP6_HEADER);
818 if (Packet->TotalSize + HeadLen > Mtu) {
872 // Mtu now is the length of the fragment part in a full-length fragment.
874 Mtu = (Mtu - UnFragmentLen) & (~0x07);
875 Num = (Packet->TotalSize + Mtu - 1) / Mtu;
877 for (Index = 0, Offset = 0, PacketLen = Mtu; Index < Num; Index++) {
930 if (PacketLen > Mtu) {
    [all...]
Ip6Icmp.c 209 it cannot forward because the packet is larger than the MTU of outgoing link.
210 Since this driver already uses IPv6 minimum link MTU as the maximum packet size,
233 UINT32 Mtu;
238 Mtu = NTOHL (Icmp.Fourth);
241 if (Mtu < IP6_MIN_LINK_MTU) {
244 // in route table. Here it is added into the table since the MTU information
Ip6Nd.h 75 UINT32 Mtu;
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
BluetoothIo.h 328 @param Mtu Bluetooth MTU. See Bluetooth specification for detail.
345 IN UINT16 Mtu,
374 @param Mtu Bluetooth MTU. See Bluetooth specification for detail.
390 IN UINT16 Mtu,
PxeBaseCode.h 51 UINT32 Mtu;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/MnpDxe/
MnpDriver.h 120 UINT32 Mtu;
MnpConfig.c 463 // Get MTU from Snp.
773 // Reduce MTU for VLAN device
775 MnpServiceData->Mtu = SnpMode->MaxPacketSize - NET_VLAN_TAG_LEN;
781 MnpServiceData->Mtu = SnpMode->MaxPacketSize;
    [all...]
MnpIo.c 94 if (TxData->DataLength > MnpServiceData->Mtu) {
96 // The total length is larger than the MTU.
98 DEBUG ((EFI_D_WARN, "MnpIsValidTxData: TxData->DataLength exceeds Mtu.\n"));
    [all...]
  /external/syzkaller/vendor/golang.org/x/sys/unix/
ztypes_freebsd_386.go 252 Mtu uint32
337 Mtu uint32
366 Mtu uint32
433 Mtu uint32
ztypes_freebsd_amd64.go 254 Mtu uint32
339 Mtu uint32
368 Mtu uint64
435 Mtu uint64
ztypes_freebsd_arm.go 254 Mtu uint32
339 Mtu uint32
368 Mtu uint32
436 Mtu uint32
ztypes_darwin_386.go 244 Mtu uint32
317 Mtu uint32
390 Mtu uint32
ztypes_darwin_amd64.go 252 Mtu uint32
325 Mtu uint32
398 Mtu uint32
ztypes_darwin_arm.go 245 Mtu uint32
318 Mtu uint32
391 Mtu uint32
ztypes_darwin_arm64.go 252 Mtu uint32
325 Mtu uint32
398 Mtu uint32
ztypes_dragonfly_amd64.go 244 Mtu uint32
315 Mtu uint64
383 Mtu uint64
ztypes_netbsd_386.go 205 Mtu uint32
274 Mtu uint64
330 Mtu uint64
ztypes_netbsd_amd64.go 211 Mtu uint32
280 Mtu uint64
336 Mtu uint64
ztypes_netbsd_arm.go 210 Mtu uint32
279 Mtu uint64
335 Mtu uint64
ztypes_openbsd_386.go 237 Mtu uint32
308 Mtu uint32
375 Mtu uint32
ztypes_openbsd_amd64.go 241 Mtu uint32
312 Mtu uint32
380 Mtu uint32
ztypes_openbsd_arm.go 237 Mtu uint32
308 Mtu uint32
374 Mtu uint32
ztypes_solaris_amd64.go 238 Mtu uint32
313 Mtu uint32
359 Mtu uint32
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/PxeBaseCode/
PxeBaseCode.h 49 UINT32 Mtu;

Completed in 1779 milliseconds

1 2