Lines Matching defs:buffer
477 /* buffer was not large enough, reallocate to correct size */
626 * Skips a specified number of lines in the buffer passed in.
627 * Walks the buffer pointed to by p and attempts to skip n lines.
650 * The buf is a pointer to the buffer containing the event occurrence data
662 /* Clean the filename buffer*/
674 /* Since we are using the default buffer size (4K), and have specified
677 * higher, and have a buffer size of <= 4K
976 int uv_get_process_title(char* buffer, size_t size) {
978 if (buffer == NULL || size == 0)
994 memcpy(buffer, process_argv[0], len);
995 buffer[len] = '\0';