Searched refs:decoding_buf (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10.1/emacs-93/emacs/src/
H A Dprocess.h85 Lisp_Object decoding_buf; member in struct:Lisp_Process
H A Dcallproc.c813 char *decoding_buf;
817 decoding_buf = (char *) xmalloc (size);
835 decode_coding (&process_coding, buf, decoding_buf,
846 xfree (decoding_buf);
857 insert_1_both (decoding_buf, process_coding.produced_char,
859 xfree (decoding_buf);
812 char *decoding_buf; variable
845 xfree (decoding_buf); variable
858 xfree (decoding_buf); variable
H A Dprocess.c1782 XPROCESS (proc)->decoding_buf = make_uninit_string (0);
3559 p->decoding_buf = make_uninit_string (0);
4179 p->decoding_buf = make_uninit_string (0);
5042 bcopy (SDATA (p->decoding_buf), buf, carryover);
5050 bcopy (SDATA (p->decoding_buf), chars, carryover);
5195 if (SCHARS (p->decoding_buf) < carryover)
5196 p->decoding_buf = make_uninit_string (carryover);
5197 bcopy (chars + coding->consumed, SDATA (p->decoding_buf),
5308 if (SCHARS (p->decoding_buf) < carryover)
5309 p->decoding_buf
[all...]

Completed in 129 milliseconds