Home
last modified time | relevance | path

Searched refs:EPIPE (Results 1 – 15 of 15) sorted by relevance

/openbmc/openbmc/poky/meta/recipes-devtools/rust/files/
H A Doeqa-selftest-Increase-timeout-in-process-sigpipe-ru.patch25 // Just in case `yes` doesn't check for EPIPE...
/openbmc/u-boot/include/linux/
H A Derrno.h35 #define EPIPE 32 /* Broken pipe */ macro
/openbmc/u-boot/lib/
H A Derrno_str.c46 ERRNO_MSG(EPIPE, "Broken pipe"),
/openbmc/u-boot/cmd/
H A Dusb_mass_storage.c223 if (rc == -EPIPE) in do_usb_mass_storage()
/openbmc/openbmc/poky/meta/lib/oeqa/utils/
H A Dcommands.py86 if ex.errno != errno.EPIPE:
/openbmc/u-boot/drivers/usb/musb-new/
H A Dmusb_host.c997 status = -EPIPE; in musb_h_ep0_irq()
1138 status = -EPIPE; in musb_host_tx()
1479 status = -EPIPE; in musb_host_rx()
/openbmc/openbmc/poky/documentation/migration-guides/
H A Drelease-notes-4.1.4.rst94 - oeqa/utils/commands: fix usage of undefined EPIPE
/openbmc/openbmc/poky/bitbake/bin/
H A Dbitbake-worker121 if e.errno != errno.EAGAIN and e.errno != errno.EPIPE:
/openbmc/qemu/hw/usb/
H A Dxen-usb.c349 return -EPIPE; in usbback_xlat_status()
/openbmc/openbmc/poky/bitbake/lib/bb/ui/
H A Dknotty.py996 if e.errno == errno.EPIPE:
/openbmc/qemu/nbd/
H A Dclient.c1346 if (ret < 0 && errno == EPIPE) { in nbd_client()
/openbmc/u-boot/drivers/pci/
H A Dpci-uclass.c618 return -EPIPE; in dm_pci_hose_probe_bus()
/openbmc/u-boot/drivers/usb/gadget/
H A Dpxa25x_udc.c1231 nuke(ep, -EPIPE); in handle_ep0()
H A Df_mass_storage.c666 return -EPIPE; in sleep_thread()
/openbmc/openbmc/meta-raspberrypi/recipes-multimedia/rpidistro-ffmpeg/files/
H A D0001-ffmpeg-5.1.4-rpi_24.patch3798 +// generate a consistant EPIPE.
3800 +// Sets ctx->flag_last if next dq would produce EPIPE (i.e. stream has stopped)
3804 +// AVERROR(EPIPE) Nothing more to read
3837 + return AVERROR(EPIPE);
3859 + if (err == EPIPE)
3899 + return AVERROR(EPIPE);
4101 - if (errno != EPIPE)
4123 + if (ret == AVERROR(EPIPE))