Home | History | Annotate | Download | only in grpc

Lines Matching defs:write_flag

69 /* id_write_flag is name of the attribute used to access the write_flag
341 write_flag = call.write_flag
343 Gets the write_flag value saved the call. */
350 call.write_flag = write_flag
352 Saves the write_flag on the call. */
353 static VALUE grpc_rb_call_set_write_flag(VALUE self, VALUE write_flag) {
354 if (!NIL_P(write_flag) && TYPE(write_flag) != T_FIXNUM) {
355 rb_raise(rb_eTypeError, "bad write_flag: got:<%s> want: <Fixnum>",
356 rb_obj_classname(write_flag));
360 return rb_ivar_set(self, id_write_flag, write_flag);
623 unsigned write_flag;
630 unsigned write_flag) {
637 st->write_flag = write_flag;
709 st->ops[st->op_num].flags = st->write_flag;
819 unsigned write_flag = 0;
835 write_flag = NUM2UINT(rb_write_flag);
838 grpc_run_batch_stack_init(st, write_flag);
990 rb_define_method(grpc_rb_cCall, "write_flag", grpc_rb_call_get_write_flag, 0);
991 rb_define_method(grpc_rb_cCall, "write_flag=", grpc_rb_call_set_write_flag,
1000 id_write_flag = rb_intern("write_flag");