HomeSort by relevance Sort by last modified time
    Searched refs:buffEnd (Results 1 - 4 of 4) sorted by null

  /bootable/recovery/minadbd/
utils.h 43 * this will only write a terminating zero and return buffEnd.
45 char* buff_addc (char* buff, char* buffEnd, int c);
48 char* buff_adds (char* buff, char* buffEnd, const char* s);
53 char* buff_addb (char* buff, char* buffEnd, const void* data, int len);
56 char* buff_add (char* buff, char* buffEnd, const char* format, ... );
utils.c 22 buff_addc (char* buff, char* buffEnd, int c)
24 int avail = buffEnd - buff;
40 buff_adds (char* buff, char* buffEnd, const char* s)
44 return buff_addb(buff, buffEnd, s, slen);
48 buff_addb (char* buff, char* buffEnd, const void* data, int len)
50 int avail = (buffEnd - buff);
63 if (buff >= buffEnd) { /* overflow */
72 buff_add (char* buff, char* buffEnd, const char* format, ... )
76 avail = (buffEnd - buff);
100 if (buff >= buffEnd)
    [all...]
  /external/qemu/android/
hw-pipe-net.c 256 const GoldfishPipeBuffer* buffEnd = buff + numBuffers;
262 for (; buff < buffEnd; buff++)
314 GoldfishPipeBuffer* buffEnd = buff + numBuffers;
316 for (; buff < buffEnd; buff++)
  /external/qemu/hw/android/goldfish/
pipe.c 641 const GoldfishPipeBuffer* buffEnd = buff + numBuffers;
644 for ( ; buff < buffEnd; buff++ )
664 for ( buff = buffers; buff < buffEnd; buff++ ) {
    [all...]

Completed in 74 milliseconds