Home
last modified time | relevance | path

Searched refs:command (Results 1 – 6 of 6) sorted by relevance

/memcached-1.4.29/doc/
H A Dprotocol.txt75 A command line always starts with the name of the command, followed by
101 means the client sent a nonexistent command name.
205 with a "cas" command did not exist.
208 Retrieval command:
263 The response line to this command can be one of:
286 The client sends the command line:
312 the "incr" command will wrap around the 64 bit mark.
338 The response line to this command can be one of:
686 other stats command.
999 "version" is a command with no arguments:
[all …]
H A DDoxyfile137 # explicit @brief command for a brief description.
221 # the \nosubgrouping command.
379 # command in the documentation regardless of this setting.
398 # popen()) the command <command> <input-file>, where <command> is the value of
519 # the \include command).
539 # the \image command).
780 # default command name.
899 # only source the real man page, but without them the man command
1175 # functions only using the \callgraph command.
1183 # functions only using the \callergraph command.
[all …]
/memcached-1.4.29/
H A Dtestapp.c1730 } command; in test_binary_pipeline_hickup_chunk() local
1742 len = storage_command(command.bytes, sizeof(command.bytes), cmd, in test_binary_pipeline_hickup_chunk()
1750 len = raw_command(command.bytes, sizeof(command.bytes), cmd, in test_binary_pipeline_hickup_chunk()
1755 len = raw_command(command.bytes, sizeof(command.bytes), cmd, in test_binary_pipeline_hickup_chunk()
1759 len = raw_command(command.bytes, sizeof(command.bytes), cmd, in test_binary_pipeline_hickup_chunk()
1764 len = raw_command(command.bytes, sizeof(command.bytes), cmd, in test_binary_pipeline_hickup_chunk()
1775 len = raw_command(command.bytes, sizeof(command.bytes), in test_binary_pipeline_hickup_chunk()
1783 len = raw_command(command.bytes, sizeof(command.bytes), cmd, in test_binary_pipeline_hickup_chunk()
1792 len = touch_command(command.bytes, sizeof(command.bytes), cmd, in test_binary_pipeline_hickup_chunk()
1797 len = raw_command(command.bytes, sizeof(command.bytes), in test_binary_pipeline_hickup_chunk()
[all …]
H A DChangeLog187 * Add append command support written by Filipe Laborde.
188 Thread safe version plus prepend command from Maxim Dounin
215 * The "stats items" command now works again; it broke with the
260 "verbosity" command and some compiler cleanups.
330 support. Specify the object type delimiter with the -D command line
358 down on string scanning. Split the command processing into
440 memcached protocol in the "flush_all" command that allows you to
442 always at the moment the "flush_all" command is received).
499 * Avva: Add a new command line option: -r , to maximize core file
523 * New command: flush_all, causes all existing items to
H A DDoxyfile146 # an explicit \brief command for a brief description.)
261 # the \nosubgrouping command.
459 # command in the documentation regardless of this setting.
491 # popen()) the command <command> <input-file>, where <command> is the value of
622 # the \include command).
642 # the \image command).
992 # default command name.
1111 # only source the real man page, but without them the man command
1323 # command. Doxygen will then run the mscgen tool (see
1415 # for selected functions only using the \callgraph command.
[all …]
H A Dmemcached.c99 static void process_command(conn *c, char *command);
2699 size_t len = strlen(command); in tokenize_command()
2702 assert(command != NULL && tokens != NULL && max_tokens > 1); in tokenize_command()
2704 s = e = command; in tokenize_command()
2789 inline static void process_stats_detail(conn *c, const char *command) { in process_stats_detail() argument
2792 if (strcmp(command, "on") == 0) { in process_stats_detail()
2796 else if (strcmp(command, "off") == 0) { in process_stats_detail()
2800 else if (strcmp(command, "dump") == 0) { in process_stats_detail()
3783 static void process_command(conn *c, char *command) { in process_command() argument
3794 fprintf(stderr, "<%d %s\n", c->sfd, command); in process_command()
[all …]