Home | History | Annotate | Download | only in driver

Lines Matching refs:buffer

60         // cleared the buffer.  In that case the cursor will be pointing at the newline.  That's
65 return line_info->cursor != line_info->buffer;
76 el_deletestr(m_edit_line, line_info->cursor - line_info->buffer);
108 int num_completions = m_driver->GetDebugger().GetCommandInterpreter().HandleCompletion (line_info->buffer,
122 el_deletestr (m_edit_line, line_info->cursor - line_info->buffer);
550 IOChannel::OutWrite (const char *buffer, size_t len, bool asynchronous)
552 if (len == 0 || buffer == NULL)
568 ::fwrite (buffer, 1, len, m_out_file);
574 IOChannel::ErrWrite (const char *buffer, size_t len, bool asynchronous)
576 if (len == 0 || buffer == NULL)
583 ::fwrite (buffer, 1, len, m_err_file);