Lines Matching refs:src
42 static inline int cmd_loop(unsigned char c, unsigned char *src, int numbytes, in cmd_loop() argument
75 c = *src++; in cmd_loop()
94 static inline int lock_loop(unsigned char *src, int numbytes, in lock_loop() argument
100 numbytes, src); in lock_loop()
101 gigaset_if_receive(cs, src, numbytes); in lock_loop()
114 static inline int hdlc_loop(unsigned char c, unsigned char *src, int numbytes, in hdlc_loop() argument
137 c = *src++; in hdlc_loop()
256 c = *src++; in hdlc_loop()
278 static inline int iraw_loop(unsigned char c, unsigned char *src, int numbytes, in iraw_loop() argument
305 c = *src++; in iraw_loop()
344 unsigned char *src, c; in gigaset_m10x_input() local
353 src = inbuf->data + head; in gigaset_m10x_input()
359 procbytes = lock_loop(src, numbytes, inbuf); in gigaset_m10x_input()
360 src += procbytes; in gigaset_m10x_input()
363 c = *src++; in gigaset_m10x_input()
379 procbytes = cmd_loop(c, src, numbytes, inbuf); in gigaset_m10x_input()
381 procbytes = hdlc_loop(c, src, numbytes, inbuf); in gigaset_m10x_input()
383 procbytes = iraw_loop(c, src, numbytes, inbuf); in gigaset_m10x_input()
385 src += procbytes; in gigaset_m10x_input()
419 src = inbuf->data; in gigaset_m10x_input()