Home | History | Annotate | Download | only in readlink

Lines Matching defs:buffer

28  *  readlink() should return the contents of symbolic link path in the buffer
95 char buffer[MAX_SIZE]; /* temporary buffer to hold symlink contents */
108 * symlink into a buffer.
110 TEST(readlink(SYMFILE, buffer, sizeof(buffer)));
125 /* Check for the contents of buffer */
126 if (memcmp(buffer, TESTFILE, exp_val) != 0) {
127 tst_resm(TFAIL, "Pathname %s and buffer"
129 TESTFILE, buffer);