Lines Matching defs:buffer
524 p = "No buffer space";
699 * The glibc-style strerror_r() only *might* use the buffer we pass to
704 char buffer[256];
705 char *msg = strerror_r(err, buffer, sizeof(buffer));
713 * The vxworks-style strerror_r() does use the buffer we pass to the function.
714 * The buffer size should be at least NAME_MAX (256)
717 char buffer[256];
718 if(OK == strerror_r(err, buffer))
719 strncpy(buf, buffer, max);