Lines Matching defs:room
195 int room, ret;
206 room = IPWIRELESS_TX_QUEUE_SIZE - tty->tx_bytes_queued;
207 if (room < 0)
208 room = 0;
209 /* Don't allow caller to write any more than we have room for */
210 if (count > room)
211 count = room;
235 int room;
244 room = IPWIRELESS_TX_QUEUE_SIZE - tty->tx_bytes_queued;
245 if (room < 0)
246 room = 0;
248 return room;