HomeSort by: relevance | last modified time | path
    Searched defs:resultbuf (Results 1 - 3 of 3) sorted by relevancy

  /src/external/gpl3/gdb/dist/gnulib/import/
localcharset.c 856 static char resultbuf[2 + 10 + 1]; local
880 if (modifier - dot < sizeof (resultbuf))
882 /* This way of filling resultbuf is multithread-safe. */
883 memcpy (resultbuf, dot, modifier - dot);
884 resultbuf [modifier - dot] = '\0';
885 return resultbuf;
905 strcpy (resultbuf, buf);
906 codeset = resultbuf;
918 static char resultbuf[2 + 10 + 1]; local
947 strcpy (resultbuf, buf)
954 static char resultbuf[2 + 10 + 1]; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gnulib/import/
localcharset.c 856 static char resultbuf[2 + 10 + 1]; local
880 if (modifier - dot < sizeof (resultbuf))
882 /* This way of filling resultbuf is multithread-safe. */
883 memcpy (resultbuf, dot, modifier - dot);
884 resultbuf [modifier - dot] = '\0';
885 return resultbuf;
905 strcpy (resultbuf, buf);
906 codeset = resultbuf;
918 static char resultbuf[2 + 10 + 1]; local
947 strcpy (resultbuf, buf)
954 static char resultbuf[2 + 10 + 1]; local
    [all...]
  /src/external/bsd/ntp/dist/ntpq/
libntpq.c 45 * resultbuf character buffer. E.g. \" will be translated into "
49 * resultbuf char* The resulting string without quoted
53 * maxlen int Max. number of bytes for resultbuf
57 * resultbuf
60 int ntpq_stripquotes ( char *resultbuf, char *srcbuf, int datalen, int maxlen )
62 char* dst = resultbuf;
63 char* dep = resultbuf + maxlen - 1;
99 return (int)(dst - resultbuf);
116 * resultbuf char* The resulting string without quoted
119 * resultbuf
713 char resultbuf[NTPQ_BUFLEN]; local
    [all...]

Completed in 49 milliseconds