Home
last modified time | relevance | path

Searched defs:string (Results 1 – 25 of 83) sorted by relevance

1234

/thrift-3.4.0/lib/erl/src/
Dthrift_json_parser.erl166 string(<<?doublequote, Rest/binary>>, Handler, Acc, Stack, Config) -> function
168 string(<<?solidus, Rest/binary>>, Handler, Acc, Stack, Config) -> function
170 string(<<?rsolidus/utf8, Rest/binary>>, Handler, Acc, Stack, Config) -> function
172 string(<<X/utf8, Rest/binary>>, Handler, Acc, Stack, Config) when X >= 16#20, X < 16#2028 -> function
174 string(<<X/utf8, Rest/binary>>, Handler, Acc, Stack, Config) when X == 16#2028; X == 16#2029 -> function
176 string(<<X/utf8, Rest/binary>>, Handler, Acc, Stack, Config) when X > 16#2029, X < 16#d800 -> function
178 string(<<X/utf8, Rest/binary>>, Handler, Acc, Stack, Config) when X > 16#dfff, X < 16#fdd0 -> function
180 string(<<X/utf8, Rest/binary>>, Handler, Acc, Stack, Config) when X > 16#fdef, X < 16#fffe -> function
182 string(<<X/utf8, Rest/binary>>, Handler, Acc, Stack, Config) when X >= 16#10000, X < 16#1fffe -> function
184 string(<<X/utf8, Rest/binary>>, Handler, Acc, Stack, Config) when X >= 16#20000, X < 16#2fffe -> function
[all …]
/thrift-3.4.0/test/go/src/common/
Dserver.go41 host string,
43 domain_socket string,
44 transport string,
45 protocol string,
47 certPath string,
Dclient.go40 host string,
42 domain_socket string,
43 transport string,
44 protocol string,
/thrift-3.4.0/lib/rb/lib/thrift/
Dbytes.rb57 def self.get_string_byte(string, index) argument
68 def self.set_string_byte(string, index, byte) argument
78 def self.convert_to_utf8_byte_buffer(string) argument
111 def self.get_string_byte(string, index) argument
115 def self.set_string_byte(string, index, byte) argument
119 def self.convert_to_utf8_byte_buffer(string) argument
/thrift-3.4.0/lib/go/thrift/
Dheader_context.go39 func SetHeader(ctx context.Context, key, value string) context.Context {
48 func UnsetHeader(ctx context.Context, key string) context.Context {
57 func GetHeader(ctx context.Context, key string) (value string, ok bool) {
65 func SetReadHeaderList(ctx context.Context, keys []string) context.Context {
84 func SetWriteHeaderList(ctx context.Context, keys []string) context.Context {
Dhttp_client.go65 func NewTHttpClientTransportFactory(url string) *THttpClientTransportFactory {
69 func NewTHttpClientTransportFactoryWithOptions(url string, options THttpClientOptions) *THttpClient…
73 func NewTHttpClientWithOptions(urlstr string, options THttpClientOptions) (TTransport, error) {
87 func NewTHttpClient(urlstr string) (TTransport, error) {
238 func NewTHttpPostClientTransportFactory(url string) *THttpClientTransportFactory {
243 func NewTHttpPostClientTransportFactoryWithOptions(url string, options THttpClientOptions) *THttpCl…
248 func NewTHttpPostClientWithOptions(urlstr string, options THttpClientOptions) (TTransport, error) {
253 func NewTHttpPostClient(urlstr string) (TTransport, error) {
Dapplication_exception.go117 func NewTApplicationException(type_ int32, message string) TApplicationException {
121 func NewValidationException(type_ int32, check string, field string, message string) TApplicationEx…
Dexample_processor_middleware_test.go27 func SimpleProcessorLoggingMiddleware(name string, next TProcessorFunction) TProcessorFunction {
Dserver_socket_test.go54 func CreateServerSocket(t *testing.T, addr string) *TServerSocket {
Dssl_server_socket.go36 func NewTSSLServerSocket(listenAddr string, cfg *tls.Config) (*TSSLServerSocket, error) {
40 func NewTSSLServerSocketTimeout(listenAddr string, cfg *tls.Config, clientTimeout time.Duration) (*…
Dserver_socket.go38 func NewTServerSocket(listenAddr string) (*TServerSocket, error) {
42 func NewTServerSocketTimeout(listenAddr string, clientTimeout time.Duration) (*TServerSocket, error…
Dsocket.go48 func NewTSocket(hostPort string) (*TSocket, error) {
62 func NewTSocketConf(hostPort string, conf *TConfiguration) *TSocket {
67 func NewTSocketTimeout(hostPort string, connTimeout time.Duration, soTimeout time.Duration) (*TSock…
Dssl_socket.go53 func NewTSSLSocketConf(hostPort string, conf *TConfiguration) *TSSLSocket {
64 func NewTSSLSocket(hostPort string, cfg *tls.Config) (*TSSLSocket, error) {
73 func NewTSSLSocketTimeout(hostPort string, cfg *tls.Config, connectTimeout, socketTimeout time.Dura…
Dlogger.go41 func NopLogger(msg string) {}
Duuid.go97 func ParseTuuid(s string) (u Tuuid, err error) {
Dtransport_exception.go78 func NewTTransportException(t int, e string) TTransportException {
114 func prependTTransportException(prepend string, e TTransportException) TTransportException {
Dsocket_conn_test.go53 func writeFully(tb testing.TB, w io.Writer, s string) bool {
Dmultiplexed_protocol.go64 func NewTMultiplexedProtocol(protocol TProtocol, serviceName string) *TMultiplexedProtocol {
231 func NewStoredMessageProtocol(protocol TProtocol, name string, typeId TMessageType, seqid int32) *s…
/thrift-3.4.0/compiler/cpp/src/thrift/generate/
Dvalidator_parser.cc50 std::map<std::string, std::vector<std::string>>& annotations) { in parse_field()
94 std::map<std::string, std::vector<std::string>>& annotations) { in parse_bool_field()
103 std::map<std::string, std::vector<std::string>>& annotations) { in parse_enum_field()
113 std::map<std::string, std::vector<std::string>>& annotations) { in parse_double_field()
127 std::map<std::string, std::vector<std::string>>& annotations) { in parse_integer_field()
141 std::map<std::string, std::vector<std::string>>& annotations) { in parse_string_field()
157 std::map<std::string, std::vector<std::string>>& annotations) { in parse_set_field()
164 std::map<std::string, std::vector<std::string>>& annotations) { in parse_list_field()
192 std::map<std::string, std::vector<std::string>>& annotations) { in parse_map_field()
230 std::map<std::string, std::vector<std::string>>& annotations) { in parse_struct_field()
[all …]
/thrift-3.4.0/tutorial/go/src/
Dserver.go30 …ory thrift.TTransportFactory, protocolFactory thrift.TProtocolFactory, addr string, secure bool) e…
Dclient.go81 …ory thrift.TTransportFactory, protocolFactory thrift.TProtocolFactory, addr string, secure bool, c…
/thrift-3.4.0/lib/rb/ext/
Dbytes.c30 VALUE convert_to_utf8_byte_buffer(VALUE string) { in convert_to_utf8_byte_buffer()
/thrift-3.4.0/lib/netstd/Thrift/Transport/Client/
DTHttpTransport.cs43 …public THttpTransport(Uri uri, TConfiguration config, IDictionary<string, string> customRequestHea… in THttpTransport()
49 IDictionary<string, string> customRequestHeaders, string userAgent = null) in THttpTransport()
201 private HttpClient CreateClient(IDictionary<string, string> customRequestHeaders) in CreateClient()
/thrift-3.4.0/contrib/fb303/cpp/
DFacebookBase.cpp44 void FacebookBase::getOptions(std::map<std::string, std::string> & _return) { in getOptions()
92 void FacebookBase::getCounters(std::map<std::string, int64_t>& _return) { in getCounters()
/thrift-3.4.0/lib/rb/lib/thrift/transport/
Dbase_transport.rb39 def self.get_string_byte(string, index) argument
44 def self.set_string_byte(string, index, byte) argument

1234