Lines Matching defs:buffer
461 /* buffer was not large enough, reallocate to correct size */
610 * Skips a specified number of lines in the buffer passed in.
611 * Walks the buffer pointed to by p and attempts to skip n lines.
634 * The buf is a pointer to the buffer containing the event occurrence data
646 /* Clean the filename buffer*/
658 /* Since we are using the default buffer size (4K), and have specified
661 * higher, and have a buffer size of <= 4K
960 int uv_get_process_title(char* buffer, size_t size) {
962 if (buffer == NULL || size == 0)
978 memcpy(buffer, process_argv[0], len);
979 buffer[len] = '\0';