Searched refs:redisReply (Results 1 – 18 of 18) sorted by relevance
| /f-stack/app/redis-5.0.5/deps/hiredis/ |
| H A D | test.c | 55 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 D | hiredis.h | 112 typedef struct redisReply { struct 118 struct redisReply **element; /* elements vector for REDIS_REPLY_ARRAY */ argument 119 } redisReply; typedef
|
| H A D | hiredis.c | 46 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 D | async.c | 265 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 D | README.md | 109 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 D | CHANGELOG.md | 12 * 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 D | example-qt.cpp | 11 redisReply * reply = static_cast<redisReply *>(r); in getCallback()
|
| H A D | example-ivykis.c | 11 redisReply *reply = r; in getCallback()
|
| H A D | example-libev.c | 11 redisReply *reply = r; in getCallback()
|
| H A D | example-libevent.c | 11 redisReply *reply = r; in getCallback()
|
| H A D | example-libuv.c | 11 redisReply *reply = r; in getCallback()
|
| H A D | example-macosx.c | 13 redisReply *reply = r; in getCallback()
|
| H A D | example-ae.c | 14 redisReply *reply = r; in getCallback()
|
| H A D | example-glib.c | 38 redisReply *reply = r; in command_cb()
|
| H A D | example.c | 10 redisReply *reply; in main()
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | redis-cli.c | 726 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 D | sentinel.c | 2337 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 D | redis-benchmark.c | 219 redisReply *r = reply; in readHandler()
|