Searched refs:bufp (Results 1 – 4 of 4) sorted by relevance
| /xen/tools/debugger/gdbsx/gx/ |
| A D | gx_main.c | 248 process_v_cont_request(char *bufp) in process_v_cont_request() argument 250 char *savbufp = bufp; in process_v_cont_request() 252 bufp = bufp + 5; /* address of semicolon */ in process_v_cont_request() 254 if (*bufp == '\0' || *bufp != ';') in process_v_cont_request() 256 bufp++; in process_v_cont_request() 257 if (*bufp == 'S' || *bufp == 'C') /* we don't support signalling */ in process_v_cont_request() 260 if (*bufp == 'c') { in process_v_cont_request() 261 if (*(bufp+1) != '\0') in process_v_cont_request() 265 } else if (*bufp == 's') { in process_v_cont_request() 269 bufp++; in process_v_cont_request() [all …]
|
| A D | gx_comm.c | 162 static char *bufp; in readchar() local 166 return *bufp++ & 0x7f; in readchar() 177 bufp = buf; in readchar() 179 return *bufp++ & 0x7f; in readchar()
|
| /xen/xen/include/xen/ |
| A D | lib.h | 163 extern int asprintf(char ** bufp, const char * fmt, ...) 165 extern int vasprintf(char ** bufp, const char * fmt, va_list args)
|
| /xen/xen/common/ |
| A D | vsprintf.c | 855 int vasprintf(char **bufp, const char *fmt, va_list args) in vasprintf() argument 871 *bufp = buf; in vasprintf() 886 int asprintf(char **bufp, const char *fmt, ...) in asprintf() argument 892 i=vasprintf(bufp,fmt,args); in asprintf()
|
Completed in 15 milliseconds