Lines Matching refs:buffer

25 			    int offset, char *buffer, int maxBytes));
27 int offset, char *buffer, int maxBytes));
29 ClientData clientData, int offset, char *buffer,
41 * data from the buffer chain for a given selection target.
45 * actually stored at buffer.
54 ClipboardHandler(clientData, offset, buffer, maxBytes)
58 char *buffer; /* Place to store converted selection. */
59 int maxBytes; /* Maximum # of bytes to store at buffer. */
69 * Skip to buffer containing offset byte
87 srcPtr = cbPtr->buffer + (offset - scanned);
88 destPtr = buffer;
104 srcPtr = cbPtr->buffer;
125 * actually stored at buffer.
134 ClipboardAppHandler(clientData, offset, buffer, maxBytes)
138 char *buffer; /* Place to store converted selection. */
139 int maxBytes; /* Maximum # of bytes to store at buffer. */
154 strncpy(buffer, p, length);
172 * at buffer.
181 ClipboardWindowHandler(clientData, offset, buffer, maxBytes)
185 char *buffer; /* Place to store converted selection. */
186 int maxBytes; /* Maximum # of bytes to store at buffer. */
188 buffer[0] = '.';
189 buffer[1] = 0;
279 ckfree(cbPtr->buffer);
309 * Append a buffer of data to the clipboard. The first buffer of
322 * The specified buffer will be copied onto the end of the clipboard.
332 Tk_ClipboardAppend(interp, tkwin, type, format, buffer)
340 char* buffer; /* NULL terminated string containing the data
364 * we just append the new buffer to the clipboard list.
390 * Append a new buffer to the buffer chain.
402 cbPtr->length = strlen(buffer);
403 cbPtr->buffer = (char *) ckalloc((unsigned) (cbPtr->length + 1));
404 strcpy(cbPtr->buffer, buffer);