| 37 | VALUE rb_thrift_memory_buffer_read_into_buffer(VALUE self, VALUE buffer_value, VALUE size_value); |
| 38 | |
| 39 | VALUE rb_thrift_memory_buffer_write(VALUE self, VALUE str) { |
| 40 | VALUE buf = GET_BUF(self); |
| 41 | str = force_binary_encoding(str); |
| 42 | rb_str_buf_cat(buf, StringValuePtr(str), RSTRING_LEN(str)); |
| 43 | return Qnil; |
| 44 | } |
| 45 | |
| 46 | VALUE rb_thrift_memory_buffer_read(VALUE self, VALUE length_value) { |
| 47 | int length = FIX2INT(length_value); |
nothing calls this directly
no test coverage detected