Home
last modified time | relevance | path

Searched refs:tx_bytes (Results 1 – 25 of 2580) sorted by relevance

12345678910>>...104

/dports/www/chromium-legacy/chromium-88.0.4324.182/components/power_metrics/
H A Dandroid_battery_metrics.cc20 void Report30SecondRadioUsage(int64_t tx_bytes, int64_t rx_bytes) { in Report30SecondRadioUsage() argument
36 "Power.ForegroundRadio.SentKiB.Wifi.30Seconds", wifi_level, tx_bytes, in Report30SecondRadioUsage()
55 "Power.ForegroundRadio.SentKiB.Cell.30Seconds", cell_level, tx_bytes, in Report30SecondRadioUsage()
171 int64_t tx_bytes; in UpdateAndReportRadio() local
173 if (!net::android::traffic_stats::GetTotalTxBytes(&tx_bytes)) in UpdateAndReportRadio()
174 tx_bytes = -1; in UpdateAndReportRadio()
178 if (last_tx_bytes_ > 0 && tx_bytes > 0 && last_rx_bytes_ > 0 && in UpdateAndReportRadio()
180 Report30SecondRadioUsage(tx_bytes - last_tx_bytes_, in UpdateAndReportRadio()
183 last_tx_bytes_ = tx_bytes; in UpdateAndReportRadio()
/dports/multimedia/v4l-utils/linux-5.13-rc2/arch/s390/appldata/
H A Dappldata_net_sum.c45 u64 tx_bytes; /* total bytes transmitted */ member
64 unsigned long rx_packets, tx_packets, rx_bytes, tx_bytes, rx_errors, in appldata_get_net_sum_data() local
74 tx_bytes = 0; in appldata_get_net_sum_data()
90 tx_bytes += stats->tx_bytes; in appldata_get_net_sum_data()
104 net_data->tx_bytes = tx_bytes; in appldata_get_net_sum_data()
/dports/multimedia/v4l_compat/linux-5.13-rc2/arch/s390/appldata/
H A Dappldata_net_sum.c45 u64 tx_bytes; /* total bytes transmitted */ member
64 unsigned long rx_packets, tx_packets, rx_bytes, tx_bytes, rx_errors, in appldata_get_net_sum_data() local
74 tx_bytes = 0; in appldata_get_net_sum_data()
90 tx_bytes += stats->tx_bytes; in appldata_get_net_sum_data()
104 net_data->tx_bytes = tx_bytes; in appldata_get_net_sum_data()
/dports/multimedia/libv4l/linux-5.13-rc2/arch/s390/appldata/
H A Dappldata_net_sum.c45 u64 tx_bytes; /* total bytes transmitted */ member
64 unsigned long rx_packets, tx_packets, rx_bytes, tx_bytes, rx_errors, in appldata_get_net_sum_data() local
74 tx_bytes = 0; in appldata_get_net_sum_data()
90 tx_bytes += stats->tx_bytes; in appldata_get_net_sum_data()
104 net_data->tx_bytes = tx_bytes; in appldata_get_net_sum_data()
/dports/devel/libvirt-java/libvirt-java-0.5.2/src/main/java/org/libvirt/
H A DDomainInterfaceStats.java17 public long tx_bytes; field in DomainInterfaceStats
32 tx_bytes = vStats.tx_bytes; in DomainInterfaceStats()
43 tx_bytes, tx_packets, tx_errs, tx_drop); in toString()
/dports/security/py-angr/angr-9.0.5405/angr/procedures/cgc/
H A Dtransmit.py6 def run(self, fd, buf, count, tx_bytes): argument
16 self.state.memory.store(tx_bytes, count, endness='Iend_LE')
21 self.state.memory.store(tx_bytes, count, endness='Iend_LE')
46 self.state.memory.store(tx_bytes, count, endness='Iend_LE', condition=tx_bytes != 0)
/dports/emulators/qemu42/qemu-4.2.1/roms/u-boot/drivers/spi/
H A Dbcm63xx_spi.c110 size_t tx_bytes; member
203 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
225 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) { in bcm63xx_spi_xfer()
231 memcpy_toio(priv->base + regs[SPI_TX] + priv->tx_bytes, in bcm63xx_spi_xfer()
233 priv->tx_bytes += data_bytes; in bcm63xx_spi_xfer()
245 val = priv->tx_bytes; in bcm63xx_spi_xfer()
247 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
254 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
260 if (priv->tx_bytes > SPI_CMD_PREPEND_BYTES) { in bcm63xx_spi_xfer()
278 cmd |= (priv->tx_bytes << SPI_CMD_PREPEND_SHIFT); in bcm63xx_spi_xfer()
/dports/emulators/qemu5/qemu-5.2.0/roms/u-boot/drivers/spi/
H A Dbcm63xx_spi.c110 size_t tx_bytes; member
203 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
225 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) { in bcm63xx_spi_xfer()
231 memcpy_toio(priv->base + regs[SPI_TX] + priv->tx_bytes, in bcm63xx_spi_xfer()
233 priv->tx_bytes += data_bytes; in bcm63xx_spi_xfer()
245 val = priv->tx_bytes; in bcm63xx_spi_xfer()
247 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
254 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
260 if (priv->tx_bytes > SPI_CMD_PREPEND_BYTES) { in bcm63xx_spi_xfer()
278 cmd |= (priv->tx_bytes << SPI_CMD_PREPEND_SHIFT); in bcm63xx_spi_xfer()
/dports/sysutils/u-boot-olinuxino-lime/u-boot-2021.07/drivers/spi/
H A Dbcm63xx_spi.c112 size_t tx_bytes; member
205 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
227 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) { in bcm63xx_spi_xfer()
233 memcpy_toio(priv->base + regs[SPI_TX] + priv->tx_bytes, in bcm63xx_spi_xfer()
235 priv->tx_bytes += data_bytes; in bcm63xx_spi_xfer()
247 val = priv->tx_bytes; in bcm63xx_spi_xfer()
249 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
256 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
262 if (priv->tx_bytes > SPI_CMD_PREPEND_BYTES) { in bcm63xx_spi_xfer()
280 cmd |= (priv->tx_bytes << SPI_CMD_PREPEND_SHIFT); in bcm63xx_spi_xfer()
/dports/sysutils/u-boot-olinuxino-lime2/u-boot-2021.07/drivers/spi/
H A Dbcm63xx_spi.c112 size_t tx_bytes; member
205 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
227 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) { in bcm63xx_spi_xfer()
233 memcpy_toio(priv->base + regs[SPI_TX] + priv->tx_bytes, in bcm63xx_spi_xfer()
235 priv->tx_bytes += data_bytes; in bcm63xx_spi_xfer()
247 val = priv->tx_bytes; in bcm63xx_spi_xfer()
249 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
256 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
262 if (priv->tx_bytes > SPI_CMD_PREPEND_BYTES) { in bcm63xx_spi_xfer()
280 cmd |= (priv->tx_bytes << SPI_CMD_PREPEND_SHIFT); in bcm63xx_spi_xfer()
/dports/sysutils/u-boot-chip/u-boot-2021.07/drivers/spi/
H A Dbcm63xx_spi.c112 size_t tx_bytes; member
205 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
227 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) { in bcm63xx_spi_xfer()
233 memcpy_toio(priv->base + regs[SPI_TX] + priv->tx_bytes, in bcm63xx_spi_xfer()
235 priv->tx_bytes += data_bytes; in bcm63xx_spi_xfer()
247 val = priv->tx_bytes; in bcm63xx_spi_xfer()
249 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
256 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
262 if (priv->tx_bytes > SPI_CMD_PREPEND_BYTES) { in bcm63xx_spi_xfer()
280 cmd |= (priv->tx_bytes << SPI_CMD_PREPEND_SHIFT); in bcm63xx_spi_xfer()
/dports/sysutils/u-boot-cubox-hummingboard/u-boot-2021.07/drivers/spi/
H A Dbcm63xx_spi.c112 size_t tx_bytes; member
205 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
227 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) { in bcm63xx_spi_xfer()
233 memcpy_toio(priv->base + regs[SPI_TX] + priv->tx_bytes, in bcm63xx_spi_xfer()
235 priv->tx_bytes += data_bytes; in bcm63xx_spi_xfer()
247 val = priv->tx_bytes; in bcm63xx_spi_xfer()
249 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
256 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
262 if (priv->tx_bytes > SPI_CMD_PREPEND_BYTES) { in bcm63xx_spi_xfer()
280 cmd |= (priv->tx_bytes << SPI_CMD_PREPEND_SHIFT); in bcm63xx_spi_xfer()
/dports/sysutils/u-boot-cubieboard2/u-boot-2021.07/drivers/spi/
H A Dbcm63xx_spi.c112 size_t tx_bytes; member
205 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
227 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) { in bcm63xx_spi_xfer()
233 memcpy_toio(priv->base + regs[SPI_TX] + priv->tx_bytes, in bcm63xx_spi_xfer()
235 priv->tx_bytes += data_bytes; in bcm63xx_spi_xfer()
247 val = priv->tx_bytes; in bcm63xx_spi_xfer()
249 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
256 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
262 if (priv->tx_bytes > SPI_CMD_PREPEND_BYTES) { in bcm63xx_spi_xfer()
280 cmd |= (priv->tx_bytes << SPI_CMD_PREPEND_SHIFT); in bcm63xx_spi_xfer()
/dports/sysutils/u-boot-cubieboard/u-boot-2021.07/drivers/spi/
H A Dbcm63xx_spi.c112 size_t tx_bytes; member
205 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
227 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) { in bcm63xx_spi_xfer()
233 memcpy_toio(priv->base + regs[SPI_TX] + priv->tx_bytes, in bcm63xx_spi_xfer()
235 priv->tx_bytes += data_bytes; in bcm63xx_spi_xfer()
247 val = priv->tx_bytes; in bcm63xx_spi_xfer()
249 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
256 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
262 if (priv->tx_bytes > SPI_CMD_PREPEND_BYTES) { in bcm63xx_spi_xfer()
280 cmd |= (priv->tx_bytes << SPI_CMD_PREPEND_SHIFT); in bcm63xx_spi_xfer()
/dports/sysutils/u-boot-firefly-rk3399/u-boot-2021.07/drivers/spi/
H A Dbcm63xx_spi.c112 size_t tx_bytes; member
205 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
227 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) { in bcm63xx_spi_xfer()
233 memcpy_toio(priv->base + regs[SPI_TX] + priv->tx_bytes, in bcm63xx_spi_xfer()
235 priv->tx_bytes += data_bytes; in bcm63xx_spi_xfer()
247 val = priv->tx_bytes; in bcm63xx_spi_xfer()
249 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
256 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
262 if (priv->tx_bytes > SPI_CMD_PREPEND_BYTES) { in bcm63xx_spi_xfer()
280 cmd |= (priv->tx_bytes << SPI_CMD_PREPEND_SHIFT); in bcm63xx_spi_xfer()
/dports/sysutils/u-boot-a13-olinuxino/u-boot-2021.07/drivers/spi/
H A Dbcm63xx_spi.c112 size_t tx_bytes; member
205 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
227 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) { in bcm63xx_spi_xfer()
233 memcpy_toio(priv->base + regs[SPI_TX] + priv->tx_bytes, in bcm63xx_spi_xfer()
235 priv->tx_bytes += data_bytes; in bcm63xx_spi_xfer()
247 val = priv->tx_bytes; in bcm63xx_spi_xfer()
249 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
256 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
262 if (priv->tx_bytes > SPI_CMD_PREPEND_BYTES) { in bcm63xx_spi_xfer()
280 cmd |= (priv->tx_bytes << SPI_CMD_PREPEND_SHIFT); in bcm63xx_spi_xfer()
/dports/sysutils/u-boot-sinovoip-bpi-m3/u-boot-2021.07/drivers/spi/
H A Dbcm63xx_spi.c112 size_t tx_bytes; member
205 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
227 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) { in bcm63xx_spi_xfer()
233 memcpy_toio(priv->base + regs[SPI_TX] + priv->tx_bytes, in bcm63xx_spi_xfer()
235 priv->tx_bytes += data_bytes; in bcm63xx_spi_xfer()
247 val = priv->tx_bytes; in bcm63xx_spi_xfer()
249 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
256 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
262 if (priv->tx_bytes > SPI_CMD_PREPEND_BYTES) { in bcm63xx_spi_xfer()
280 cmd |= (priv->tx_bytes << SPI_CMD_PREPEND_SHIFT); in bcm63xx_spi_xfer()
/dports/sysutils/u-boot-sopine/u-boot-2021.07/drivers/spi/
H A Dbcm63xx_spi.c112 size_t tx_bytes; member
205 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
227 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) { in bcm63xx_spi_xfer()
233 memcpy_toio(priv->base + regs[SPI_TX] + priv->tx_bytes, in bcm63xx_spi_xfer()
235 priv->tx_bytes += data_bytes; in bcm63xx_spi_xfer()
247 val = priv->tx_bytes; in bcm63xx_spi_xfer()
249 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
256 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
262 if (priv->tx_bytes > SPI_CMD_PREPEND_BYTES) { in bcm63xx_spi_xfer()
280 cmd |= (priv->tx_bytes << SPI_CMD_PREPEND_SHIFT); in bcm63xx_spi_xfer()
/dports/sysutils/u-boot-a64-olinuxino/u-boot-2021.07/drivers/spi/
H A Dbcm63xx_spi.c112 size_t tx_bytes; member
205 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
227 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) { in bcm63xx_spi_xfer()
233 memcpy_toio(priv->base + regs[SPI_TX] + priv->tx_bytes, in bcm63xx_spi_xfer()
235 priv->tx_bytes += data_bytes; in bcm63xx_spi_xfer()
247 val = priv->tx_bytes; in bcm63xx_spi_xfer()
249 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
256 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
262 if (priv->tx_bytes > SPI_CMD_PREPEND_BYTES) { in bcm63xx_spi_xfer()
280 cmd |= (priv->tx_bytes << SPI_CMD_PREPEND_SHIFT); in bcm63xx_spi_xfer()
/dports/sysutils/u-boot-rpi/u-boot-2021.07/drivers/spi/
H A Dbcm63xx_spi.c112 size_t tx_bytes; member
205 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
227 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) { in bcm63xx_spi_xfer()
233 memcpy_toio(priv->base + regs[SPI_TX] + priv->tx_bytes, in bcm63xx_spi_xfer()
235 priv->tx_bytes += data_bytes; in bcm63xx_spi_xfer()
247 val = priv->tx_bytes; in bcm63xx_spi_xfer()
249 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
256 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
262 if (priv->tx_bytes > SPI_CMD_PREPEND_BYTES) { in bcm63xx_spi_xfer()
280 cmd |= (priv->tx_bytes << SPI_CMD_PREPEND_SHIFT); in bcm63xx_spi_xfer()
/dports/sysutils/u-boot-qemu-arm64/u-boot-2021.07/drivers/spi/
H A Dbcm63xx_spi.c112 size_t tx_bytes; member
205 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
227 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) { in bcm63xx_spi_xfer()
233 memcpy_toio(priv->base + regs[SPI_TX] + priv->tx_bytes, in bcm63xx_spi_xfer()
235 priv->tx_bytes += data_bytes; in bcm63xx_spi_xfer()
247 val = priv->tx_bytes; in bcm63xx_spi_xfer()
249 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
256 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
262 if (priv->tx_bytes > SPI_CMD_PREPEND_BYTES) { in bcm63xx_spi_xfer()
280 cmd |= (priv->tx_bytes << SPI_CMD_PREPEND_SHIFT); in bcm63xx_spi_xfer()
/dports/sysutils/u-boot-pinebookpro/u-boot-2021.07/drivers/spi/
H A Dbcm63xx_spi.c112 size_t tx_bytes; member
205 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
227 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) { in bcm63xx_spi_xfer()
233 memcpy_toio(priv->base + regs[SPI_TX] + priv->tx_bytes, in bcm63xx_spi_xfer()
235 priv->tx_bytes += data_bytes; in bcm63xx_spi_xfer()
247 val = priv->tx_bytes; in bcm63xx_spi_xfer()
249 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
256 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
262 if (priv->tx_bytes > SPI_CMD_PREPEND_BYTES) { in bcm63xx_spi_xfer()
280 cmd |= (priv->tx_bytes << SPI_CMD_PREPEND_SHIFT); in bcm63xx_spi_xfer()
/dports/sysutils/u-boot-nanopi-neo2/u-boot-2021.07/drivers/spi/
H A Dbcm63xx_spi.c112 size_t tx_bytes; member
205 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
227 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) { in bcm63xx_spi_xfer()
233 memcpy_toio(priv->base + regs[SPI_TX] + priv->tx_bytes, in bcm63xx_spi_xfer()
235 priv->tx_bytes += data_bytes; in bcm63xx_spi_xfer()
247 val = priv->tx_bytes; in bcm63xx_spi_xfer()
249 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
256 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
262 if (priv->tx_bytes > SPI_CMD_PREPEND_BYTES) { in bcm63xx_spi_xfer()
280 cmd |= (priv->tx_bytes << SPI_CMD_PREPEND_SHIFT); in bcm63xx_spi_xfer()
/dports/sysutils/u-boot-olimex-a20-som-evb/u-boot-2021.07/drivers/spi/
H A Dbcm63xx_spi.c112 size_t tx_bytes; member
205 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
227 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) { in bcm63xx_spi_xfer()
233 memcpy_toio(priv->base + regs[SPI_TX] + priv->tx_bytes, in bcm63xx_spi_xfer()
235 priv->tx_bytes += data_bytes; in bcm63xx_spi_xfer()
247 val = priv->tx_bytes; in bcm63xx_spi_xfer()
249 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
256 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
262 if (priv->tx_bytes > SPI_CMD_PREPEND_BYTES) { in bcm63xx_spi_xfer()
280 cmd |= (priv->tx_bytes << SPI_CMD_PREPEND_SHIFT); in bcm63xx_spi_xfer()
/dports/sysutils/u-boot-nanopi-m1plus/u-boot-2021.07/drivers/spi/
H A Dbcm63xx_spi.c112 size_t tx_bytes; member
205 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
227 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) { in bcm63xx_spi_xfer()
233 memcpy_toio(priv->base + regs[SPI_TX] + priv->tx_bytes, in bcm63xx_spi_xfer()
235 priv->tx_bytes += data_bytes; in bcm63xx_spi_xfer()
247 val = priv->tx_bytes; in bcm63xx_spi_xfer()
249 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
256 priv->tx_bytes = 0; in bcm63xx_spi_xfer()
262 if (priv->tx_bytes > SPI_CMD_PREPEND_BYTES) { in bcm63xx_spi_xfer()
280 cmd |= (priv->tx_bytes << SPI_CMD_PREPEND_SHIFT); in bcm63xx_spi_xfer()

12345678910>>...104