Searched defs:tag (Results 1 - 10 of 10) sorted by relevance

/httpd/modules/cache/
H A Dmod_socache_memcache.c60 const char *tag; member in struct:ap_socache_instance_t
61 apr_size_t taglen; /* strlen(tag) + 1 */
163 ctx->tag = apr_pstrcat(p, namespace, ":", NULL);
164 ctx->taglen = strlen(ctx->tag) + 1;
178 * namespace tag; writes output to key buffer. Returns non-zero if
189 cp = apr_cpystrn(key, ctx->tag, ctx->taglen);
/httpd/modules/lua/
H A Dlua_dbd.c620 const char *tag; local
630 tag = lua_tostring(L, 3);
633 pstatement = apr_hash_get(db->dbdhandle->prepared, tag,
639 "Could not find any prepared statement called %s!", tag);
/httpd/modules/generators/
H A Dmod_cgi.c1159 char *tag = NULL; local
1190 cgi_pfn_gtv(ctx, &tag, &tag_val, SSI_VALUE_DECODED);
1191 if (!tag || !tag_val) {
1195 if (!strcmp(tag, "cmd")) {
1204 "for parameter \"%s\" to tag exec in file %s",
1205 tag, r->filename);
1210 else if (!strcmp(tag, "cgi")) {
1226 "\"%s\" to tag exec in %s", tag, file);
H A Dmod_cgid.c1861 char *tag = NULL; local
1892 cgid_pfn_gtv(ctx, &tag, &tag_val, SSI_VALUE_DECODED);
1893 if (!tag || !tag_val) {
1897 if (!strcmp(tag, "cmd")) {
1907 "to tag exec in file %s", tag, r->filename);
1912 else if (!strcmp(tag, "cgi")) {
1928 "\"%s\" to tag exec in %s", tag, file);
/httpd/modules/metadata/
H A Dmod_headers.c279 static char *parse_misc_string(apr_pool_t *p, format_tag *tag, const char **sa) argument
284 tag->func = constant_item;
294 tag->arg = apr_palloc(p, s - *sa + 1);
296 d = tag->arg;
339 static char *parse_format_tag(apr_pool_t *p, format_tag *tag, const char **sa) argument
346 return parse_misc_string(p, tag, sa);
352 tag->func = constant_item;
353 tag->arg = "%";
360 tag->arg = "\0";
364 tag
609 format_tag *tag = NULL; local
968 register_format_tag_handler(const char *tag, format_tag_fn *tag_handler) argument
[all...]
/httpd/modules/ssl/
H A Dssl_engine_vars.c949 const char *tag; local
957 tag = apr_hash_get(nids, &nid, sizeof nid);
958 if (tag) {
967 key = apr_psprintf(p, "%s%s_%d", pfx, tag, ++(*dup));
973 key = apr_pstrcat(p, pfx, tag, NULL);
/httpd/modules/loggers/
H A Dmod_log_config.c1596 static void ap_register_log_handler(apr_pool_t *p, char *tag, argument
1603 apr_hash_set(log_hash, tag, strlen(tag), (const void *)log_struct);
/httpd/modules/mappers/
H A Dmod_negotiation.c775 * tag - we will not look for continutation after this line.
827 static apr_off_t get_body(char *buffer, apr_size_t *len, const char *tag, argument
835 taglen = strlen(tag);
838 /* We are at the first character following a body:tag\n entry
840 * closing tag entry. If we fail to read, find the tag or back
847 /* put a copy of the tag *after* the data read from the file
851 memcpy(buffer + *len, tag, taglen);
852 endbody = strstr(buffer, tag);
858 /* Skip all the trailing cruft after the end tag t
1031 char *tag = apr_pstrdup(neg->pool, body); local
[all...]
/httpd/modules/filters/
H A Dmod_include.c1657 * Extract the next tag name and value.
1658 * If there are no more tags, set the tag name to NULL.
1659 * The tag value is html decoded if dodecode is non-zero.
1660 * The tag value may be NULL if there is no tag value..
1662 static void ap_ssi_get_tag_and_value(include_ctx_t *ctx, char **tag, argument
1666 *tag = NULL;
1673 *tag = ctx->intern->argv->name;
1684 static int find_file(request_rec *r, const char *directive, const char *tag, argument
1693 if (!strcmp(tag, "fil
1796 char *tag = NULL; local
1927 char *tag = NULL; local
2079 char *tag = NULL; local
2167 char *tag = NULL; local
2255 char *tag = NULL; local
2293 char *tag = NULL; local
2367 char *tag = NULL; local
2550 char *tag = NULL; local
4065 set_default_start_tag(cmd_parms *cmd, void *mconfig, const char *tag) argument
4085 set_default_end_tag(cmd_parms *cmd, void *mconfig, const char *tag) argument
4195 ap_register_include_handler(char *tag, include_handler_fn_t *func) argument
[all...]
/httpd/server/
H A Dcore.c4144 AP_DECLARE(void) ap_register_errorlog_handler(apr_pool_t *p, char *tag, argument
4152 apr_hash_set(errorlog_hash, tag, 1, (const void *)log_struct);

Completed in 66 milliseconds