| /f-stack/app/redis-5.0.5/deps/hiredis/ |
| H A D | net.c | 84 return REDIS_OK; in redisSetReuseAddr() 99 return REDIS_OK; in redisCreateSocket() 124 return REDIS_OK; in redisSetBlocking() 166 return REDIS_OK; in redisKeepAlive() 176 return REDIS_OK; in redisSetTcpNoDelay() 201 return REDIS_OK; in redisContextTimeoutMsec() 227 return REDIS_OK; in redisContextWaitReady() 250 return REDIS_OK; in redisCheckSocketError() 262 return REDIS_OK; in redisContextSetTimeout() 401 rv = REDIS_OK; in _redisContextConnectTcp() [all …]
|
| H A D | async.c | 213 return REDIS_OK; in redisAsyncSetConnectCallback() 221 return REDIS_OK; in redisAsyncSetDisconnectCallback() 246 return REDIS_OK; in __redisPushCallback() 260 return REDIS_OK; in __redisShiftCallback() 309 ac->onDisconnect(ac,REDIS_OK); in __redisAsyncFree() 408 return REDIS_OK; in __redisGetSubscribeCallback() 487 if (status != REDIS_OK) in redisProcessCallbacks() 500 return REDIS_OK; in __redisAsyncHandleConnect() 509 if (ac->onConnect) ac->onConnect(ac,REDIS_OK); in __redisAsyncHandleConnect() 510 return REDIS_OK; in __redisAsyncHandleConnect() [all …]
|
| H A D | hiredis.c | 786 return REDIS_OK; in redisEnableKeepAlive() 819 return REDIS_OK; in redisBufferRead() 857 return REDIS_OK; in redisBufferWrite() 867 return REDIS_OK; in redisGetReplyFromReader() 897 return REDIS_OK; in redisGetReply() 917 return REDIS_OK; in __redisAppendCommand() 926 return REDIS_OK; in redisAppendFormattedCommand() 948 return REDIS_OK; in redisvAppendCommand() 977 return REDIS_OK; in redisAppendCommandArgv() 995 if (redisGetReply(c,&reply) != REDIS_OK) in __redisBlockForReply() [all …]
|
| H A D | read.c | 243 return REDIS_OK; in processLineItem() 295 return REDIS_OK; in processBulkItem() 361 return REDIS_OK; in processMultiBulkItem() 474 return REDIS_OK; in redisReaderFeed() 488 return REDIS_OK; in redisReaderGetReply() 503 if (processItem(r) != REDIS_OK) in redisReaderGetReply() 524 return REDIS_OK; in redisReaderGetReply()
|
| H A D | test.c | 257 test_cond(redisAppendFormattedCommand(c, cmd, len) == REDIS_OK); in test_append_formatted_commands() 259 assert(redisGetReply(c, (void*)&reply) == REDIS_OK); in test_append_formatted_commands() 310 test_cond(ret == REDIS_OK && reply == (void*)REDIS_REPLY_STATUS); in test_reply_reader() 318 assert(ret == REDIS_OK && reply == NULL); in test_reply_reader() 321 test_cond(ret == REDIS_OK && reply == (void*)REDIS_REPLY_STATUS); in test_reply_reader() 339 test_cond(ret == REDIS_OK && in test_reply_reader() 555 assert(redisSetTimeout(c,tv) == REDIS_OK); in test_blocking_io_errors() 625 assert(redisGetReply(c, (void*)&replies[i]) == REDIS_OK); in test_throughput() 638 assert(redisGetReply(c, (void*)&replies[i]) == REDIS_OK); in test_throughput()
|
| H A D | read.h | 38 #define REDIS_OK 0 macro
|
| H A D | README.md | 198 subsequent replies. The return value for this function is either `REDIS_OK` or `REDIS_ERR`, where 217 while(redisGetReply(context,&reply) == REDIS_OK) { 277 On a disconnect, the `status` argument is set to `REDIS_OK` when disconnection was initiated by the 310 Both functions work like their blocking counterparts. The return value is `REDIS_OK` when the comma… 331 `REDIS_OK` status and the context object is freed. 364 can be either `REDIS_OK` or `REDIS_ERR`, where the latter means something went
|
| /f-stack/app/redis-5.0.5/deps/hiredis/examples/ |
| H A D | example-ivykis.c | 20 if (status != REDIS_OK) { in connectCallback() 28 if (status != REDIS_OK) { in disconnectCallback()
|
| H A D | example-libev.c | 20 if (status != REDIS_OK) { in connectCallback() 28 if (status != REDIS_OK) { in disconnectCallback()
|
| H A D | example-libevent.c | 20 if (status != REDIS_OK) { in connectCallback() 28 if (status != REDIS_OK) { in disconnectCallback()
|
| H A D | example-libuv.c | 20 if (status != REDIS_OK) { in connectCallback() 28 if (status != REDIS_OK) { in disconnectCallback()
|
| H A D | example-macosx.c | 22 if (status != REDIS_OK) { in connectCallback() 30 if (status != REDIS_OK) { in disconnectCallback()
|
| H A D | example-ae.c | 23 if (status != REDIS_OK) { in connectCallback() 33 if (status != REDIS_OK) { in disconnectCallback()
|
| H A D | example-glib.c | 13 if (status != REDIS_OK) { in connect_cb() 25 if (status != REDIS_OK) { in disconnect_cb()
|
| /f-stack/app/redis-5.0.5/deps/hiredis/adapters/ |
| H A D | ivykis.h | 79 return REDIS_OK; in redisIvykisAttach()
|
| H A D | libevent.h | 106 return REDIS_OK; in redisLibeventAttach()
|
| H A D | qt.h | 92 return REDIS_OK; in setContext()
|
| H A D | ae.h | 125 return REDIS_OK; in redisAeAttach()
|
| H A D | macosx.h | 110 return REDIS_OK; in redisMacOSAttach()
|
| H A D | libuv.h | 120 return REDIS_OK; in redisLibuvAttach()
|
| H A D | libev.h | 144 return REDIS_OK; in redisLibevAttach()
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | redis-cli.c | 732 return REDIS_OK; in cliAuth() 744 int result = REDIS_OK; in cliSelect() 790 if (cliAuth() != REDIS_OK) in cliConnect() 792 if (cliSelect() != REDIS_OK) in cliConnect() 795 return REDIS_OK; in cliConnect() 1011 return REDIS_OK; in cliReadReply() 1078 return REDIS_OK; in cliReadReply() 1089 return REDIS_OK; in cliSendCommand() 1187 return REDIS_OK; in cliSendCommand() 1600 return REDIS_OK; in issueCommandRepeat() [all …]
|
| H A D | redis-benchmark.c | 201 if (redisBufferRead(c->context) != REDIS_OK) { in readHandler() 206 if (redisGetReply(c->context,&reply) != REDIS_OK) { in readHandler()
|