Searched refs:current (Results 1 - 14 of 14) sorted by relevance

/httpd/server/
H A Dutil_cfgtree.c20 ap_directive_t *ap_add_node(ap_directive_t **parent, ap_directive_t *current, argument
23 if (current == NULL) {
36 current->next = toadd;
H A Dconfig.c646 * when the module is removed, its slot is lost so all the current
649 * all our current data. I.e. when doing a restart.
1099 ap_directive_t **current,
1150 if (*current) {
1151 (*current)->next = sub_tree;
1154 *current = sub_tree;
1156 (*curr_parent)->first_child = (*current);
1158 if (*current) {
1159 (*current)->parent = (*curr_parent);
1162 if (*current) {
1097 ap_build_config_sub(apr_pool_t *p, apr_pool_t *temp_pool, const char *l, cmd_parms *parms, ap_directive_t **current, ap_directive_t **curr_parent, ap_directive_t **conftree) argument
1224 ap_build_cont_config(apr_pool_t *p, apr_pool_t *temp_pool, cmd_parms *parms, ap_directive_t **current, ap_directive_t **curr_parent, char *orig_directive) argument
1271 ap_walk_config_sub(const ap_directive_t *current, cmd_parms *parms, ap_conf_vector_t *section_vector) argument
1333 ap_walk_config(ap_directive_t *current, cmd_parms *parms, ap_conf_vector_t *section_vector) argument
1364 ap_directive_t *current = *conftree; local
1841 int current; local
1915 int current; local
2610 count_directives_sub(const char *directive, ap_directive_t *current) argument
[all...]
H A Dcore.c1041 * Get the current server name from the request for the purposes
1233 } *result, *current, sresult[SMALL_EXPANSION]; local
1247 result = current = &(sresult[spc++]);
1248 current->next = NULL;
1249 current->string = word;
1250 current->len = s - word;
1251 outlen = current->len;
1255 if (current->len) {
1256 current->next = (spc < SMALL_EXPANSION)
1259 sizeof(*current
2549 ap_module_symbol_t *current = ap_prelinked_module_symbols; local
2613 ap_directive_t *current = NULL; local
2667 ap_directive_t *current = NULL; local
[all...]
/httpd/include/
H A Dutil_cfgtree.h47 /** The current directive */
49 /** The arguments for the current directive, stored as a space
83 * @param parent The current parent node. If the added node is a first_child,
84 then this is changed to the current node
85 * @param current The current node
90 ap_directive_t *ap_add_node(ap_directive_t **parent, ap_directive_t *current,
H A Dhttp_config.h277 /**< current line number, starting at 1 */
329 /** If the current directive is EXEC_ON_READ, this is the last
408 * register an interest in a specific step in processing the current
424 * @param foo name of the module symbol of the current module, without the
644 * @return 0 if the method is not limited in the current scope
733 * when the module is removed, its slot is lost so all the current
736 * all our current data. I.e. when doing a restart.
834 * Read all data between the current &lt;foo&gt; and the matching &lt;/foo&gt;. All
845 * Read all data between the current &lt;foo&gt; and the matching &lt;/foo&gt; and build
850 * @param current Th
[all...]
/httpd/modules/filters/
H A Dmod_include.c188 char *directive; /* name of the current directive */
189 apr_size_t directive_len; /* length of the current directive name */
278 parse_node_t *current; local
287 current = root;
290 while (current) {
291 switch (current->token.type) {
294 debug_printf(ctx, "%s%s (%s)\n", is, current->token.s,
295 current->token.value);
296 current->dump_done = 1;
297 current
747 result_item_t *result = NULL, *current = NULL; local
1170 parse_node_t *new, *root = NULL, *current = NULL; local
[all...]
/httpd/build/pkg/
H A Dbuildpkg.sh82 current=`pwd`
89 cd $current
90 pkgtrans -s $TEMPDIR/pkg $current/$NAME-$VERSION-$ARCH-local
91 gzip $current/$NAME-$VERSION-$ARCH-local
/httpd/modules/proxy/
H A Dajp_msg.c46 char *current; local
66 current = *buf + strlen(*buf);
69 rl = bl - (current - *buf);
71 *(current - 1) = '\0';
74 apr_snprintf(current, rl, "%.4lx ", (unsigned long)i);
75 current += AJP_MSG_DUMP_PREFIX_LENGTH;
83 *current++ = hex_table[x >> 4];
84 *current++ = hex_table[x & 0x0f];
85 *current++ = ' ';
87 *current
[all...]
/httpd/support/
H A Drotatelogs.c94 struct logfile current; /* current logfile. */ member in struct:rotate_status
143 " -L path Create hard link from current log to specified path.\n"
161 /* This function returns the current Unix time (time_t) adjusted for
234 if (status->current.fd == NULL) {
241 if (apr_file_info_get(&finfo, APR_FINFO_SIZE, status->current.fd) == APR_SUCCESS) {
325 if (status->current.fd) {
326 argv[2] = status->current.name;
345 /* After a error, truncate the current file and write out an error
352 if (apr_file_trunc(status->current
[all...]
H A Dhtcacheclean.c605 apr_time_t current, deviation; local
833 * to the current time.
835 current = apr_time_now();
836 if (realclean || d->htime < current - deviation
837 || d->htime > current + deviation) {
846 * specified positive or negative offset to the current time.
851 current = apr_time_now();
875 else if (expires < current) {
918 if (realclean || d->htime < current - deviation
919 || d->htime > current
1378 apr_time_t current, repeat, delay, previous; local
[all...]
/httpd/modules/metadata/
H A Dmod_version.c285 ap_directive_t *current = NULL; local
289 &current, &parent, "<IfVersion");
290 *(ap_directive_t **)mconfig = current;
/httpd/modules/mappers/
H A Dmod_rewrite.c753 * the current URI string
2259 result_list *result, *current; local
2275 result = current = &(sresult[spc++]);
2278 current->next = NULL;
2279 current->string = input;
2280 current->len = span;
2286 if (current->len) {
2287 current->next = (spc < SMALL_EXPANSION)
2291 current = current
[all...]
/httpd/modules/lua/
H A Dlua_vmprep.c276 const char *current; local
285 current = lua_tostring(L, -1);
291 luaL_gsub(L, current, rep_pat, pattern);
H A Dmod_lua.c1039 ap_directive_t **current; local
1087 current = mconfig;
1089 /* Here, we have to replace our current config node for the next pass */
1090 if (!*current) {
1091 *current = apr_pcalloc(cmd->pool, sizeof(**current));
1099 (*current)->filename = cmd->config_file->name;
1100 (*current)->line_num = cmd->config_file->line_number;
1101 (*current)->directive = apr_pstrdup(cmd->pool, "Lua_____ByteCodeHack");
1102 (*current)
[all...]

Completed in 770 milliseconds