Home
last modified time | relevance | path

Searched refs:redisReply (Results 1 – 18 of 18) sorted by relevance

/f-stack/app/redis-5.0.5/deps/hiredis/
H A Dtest.c55 redisReply *reply; in select_database()
77 redisReply *reply; in disconnect()
247 redisReply *reply; in test_append_formatted_commands()
341 ((redisReply*)reply)->elements == 0); in test_reply_reader()
388 redisReply *reply; in test_blocking_connection()
466 redisReply *reply; in test_blocking_connection_timeouts()
512 redisReply *reply; in test_blocking_io_errors()
587 redisReply **replies; in test_throughput()
596 replies = malloc(sizeof(redisReply*)*num); in test_throughput()
607 replies = malloc(sizeof(redisReply*)*num); in test_throughput()
[all …]
H A Dhiredis.h112 typedef struct redisReply { struct
118 struct redisReply **element; /* elements vector for REDIS_REPLY_ARRAY */ argument
119 } redisReply; typedef
H A Dhiredis.c46 static redisReply *createReplyObject(int type);
63 static redisReply *createReplyObject(int type) { in createReplyObject()
64 redisReply *r = calloc(1,sizeof(*r)); in createReplyObject()
75 redisReply *r = reply; in freeReplyObject()
103 redisReply *r, *parent; in createStringObject()
135 redisReply *r, *parent; in createArrayObject()
142 r->element = calloc(elements,sizeof(redisReply*)); in createArrayObject()
160 redisReply *r, *parent; in createIntegerObject()
177 redisReply *r, *parent; in createNilObject()
H A Dasync.c265 static void __redisRunCallback(redisAsyncContext *ac, redisCallback *cb, redisReply *reply) { in __redisRunCallback()
364 static int __redisGetSubscribeCallback(redisAsyncContext *ac, redisReply *reply, redisCallback *dst… in __redisGetSubscribeCallback()
455 if (((redisReply*)reply)->type == REDIS_REPLY_ERROR) { in redisProcessCallbacks()
457 snprintf(c->errstr,sizeof(c->errstr),"%s",((redisReply*)reply)->str); in redisProcessCallbacks()
H A DREADME.md109 The standard replies that `redisCommand` are of the type `redisReply`. The
110 `type` field in the `redisReply` should be used to test what kind of reply
133 `reply->elements`. Every element in the multi bulk reply is a `redisReply` object as well
205 redisReply *reply;
372 The function `redisReaderGetReply` creates `redisReply` and makes the function
373 argument `reply` point to the created `redisReply` variable. For instance, if
374 the response of type `REDIS_REPLY_STATUS` then the `str` field of `redisReply`
376 responsible for creating instances of the `redisReply` can be customized by
H A DCHANGELOG.md12 * Change `redisReply.len` to `size_t`, as it denotes the the size of a string
/f-stack/app/redis-5.0.5/deps/hiredis/examples/
H A Dexample-qt.cpp11 redisReply * reply = static_cast<redisReply *>(r); in getCallback()
H A Dexample-ivykis.c11 redisReply *reply = r; in getCallback()
H A Dexample-libev.c11 redisReply *reply = r; in getCallback()
H A Dexample-libevent.c11 redisReply *reply = r; in getCallback()
H A Dexample-libuv.c11 redisReply *reply = r; in getCallback()
H A Dexample-macosx.c13 redisReply *reply = r; in getCallback()
H A Dexample-ae.c14 redisReply *reply = r; in getCallback()
H A Dexample-glib.c38 redisReply *reply = r; in command_cb()
H A Dexample.c10 redisReply *reply; in main()
/f-stack/app/redis-5.0.5/src/
H A Dredis-cli.c726 redisReply *reply; in cliAuth()
739 redisReply *reply; in cliSelect()
1003 redisReply *reply; in cliReadReply()
5721 redisReply *reply; in latencyMode()
5845 redisReply *reply; in latencyDistMode()
6050 redisReply *reply; in pipeMode()
6232 redisReply *reply; in getDbSize()
6294 redisReply *reply; in getKeyTypes()
6336 redisReply *reply; in getKeySizes()
6521 redisReply *reply; in getKeyFreqs()
[all …]
H A Dsentinel.c2337 redisReply *r; in sentinelInfoReplyCallback()
2360 redisReply *r; in sentinelPingReplyCallback()
2402 redisReply *r; in sentinelPublishReplyCallback()
2525 redisReply *r; in sentinelReceiveHelloMessages()
3686 redisReply *r; in sentinelReceiveIsMasterDownReply()
H A Dredis-benchmark.c219 redisReply *r = reply; in readHandler()