Home
last modified time | relevance | path

Searched refs:strict_write (Results 1 – 9 of 9) sorted by relevance

/thrift-3.4.0/lib/cpp/src/thrift/protocol/
DTBinaryProtocol.h56 bool strict_write) in TBinaryProtocolT() argument
62 strict_write_(strict_write) {} in TBinaryProtocolT()
68 void setStrict(bool strict_read, bool strict_write) { in setStrict() argument
70 strict_write_ = strict_write; in setStrict()
216 bool strict_write) in TBinaryProtocolFactoryT() argument
220 strict_write_(strict_write) {} in TBinaryProtocolFactoryT()
228 void setStrict(bool strict_read, bool strict_write) { in setStrict() argument
230 strict_write_ = strict_write; in setStrict()
/thrift-3.4.0/lib/erl/src/
Dthrift_binary_protocol.erl38 strict_write=true
59 parse_options([{strict_write, Bool} | Rest], State) when is_boolean(Bool) ->
60 parse_options(Rest, State#binary_protocol{strict_write=Bool}).
79 case This0#binary_protocol.strict_write of
322 strict_write = true}).
328 parse_factory_options([{strict_write, Bool} | Rest], Opts) when is_boolean(Bool) ->
329 parse_factory_options(Rest, Opts#tbp_opts{strict_write=Bool}).
341 {strict_write, ParsedOpts#tbp_opts.strict_write}]);
Dthrift_client_util.erl42 OptKey =:= strict_write;
/thrift-3.4.0/lib/rb/lib/thrift/protocol/
Dbinary_protocol.rb28 def initialize(trans, strict_read=true, strict_write=true) argument
31 @strict_write = strict_write
41 if strict_write
/thrift-3.4.0/lib/php/src/ext/thrift_protocol/
Dphp_thrift_protocol.stub.php6 …string $method_name, int $msgtype, object $request_struct, int $seqID, bool $strict_write): void {} argument
Dphp_thrift_protocol_arginfo.h10 ZEND_ARG_TYPE_INFO(0, strict_write, _IS_BOOL, 0)
Dphp_thrift_protocol.cpp1026 zend_bool strict_write; in PHP_FUNCTION() local
1030 &request_struct, &seqID, &strict_write) == FAILURE) { in PHP_FUNCTION()
/thrift-3.4.0/lib/rb/ext/
Dbinary_protocol_accelerated.c123 VALUE strict_write = GET_STRICT_WRITE(self); in rb_thrift_binary_proto_write_message_begin() local
125 if (strict_write == Qtrue) { in rb_thrift_binary_proto_write_message_begin()
/thrift-3.4.0/lib/rb/spec/
Dbinary_protocol_spec_shared.rb40 expect(@prot.strict_write).to eql(true)