Home | History | Annotate | Download | only in gdb.base

Lines Matching defs:STRING

3 #include <string.h>
34 1) Pathname is a null string - ENOENT
57 system (const char * string);
61 4) Invalid string/command. - returns 127. */
74 #define STRING "Hello World"
78 /* A NULL string. We pass this to stat below instead of a NULL
153 ret = write (fd, STRING, strlen (STRING));
155 ret == strlen (STRING) ? "OK" : "");
163 ret = write (999, STRING, strlen (STRING));
173 ret = write (fd, STRING, strlen (STRING));
198 if (ret == strlen (STRING))
199 printf ("read 1: %s %s\n", buf, !strcmp (buf, STRING) ? "OK" : "");