Lines Matching refs:c
8 * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
35 * This file is built upon the file: src/arch/rtxc/netif/sioslip.c
120 u8_t c;
137 c = ((u8_t *)q->payload)[i];
138 switch (c) {
151 sio_send(c, priv->sd);
165 * @param c received character (multiple calls to this function will
170 slipif_rxbyte(struct netif *netif, u8_t c)
182 switch (c) {
201 } /* end switch (c) */
206 switch (c) {
208 c = SLIP_END;
211 c = SLIP_ESC;
242 ((u8_t *)priv->p->payload)[priv->i] = c;
267 slipif_rxbyte_input(struct netif *netif, u8_t c)
270 p = slipif_rxbyte(netif, c);
289 u8_t c;
294 if (sio_read(priv->sd, &c, 1) > 0) {
295 slipif_rxbyte_input(netif, c);
382 u8_t c;
390 while (sio_tryread(priv->sd, &c, 1) > 0) {
391 slipif_rxbyte_input(netif, c);