/httpd/modules/lua/test/ |
H A D | moonunit.lua | 40 if type(self[v]) == "function" then
|
/httpd/server/mpm/winnt/ |
H A D | mpm_winnt.h | 90 AP_DECLARE(void) ap_signal_parent(ap_signal_parent_e type); variable
|
/httpd/modules/proxy/ |
H A D | ajp_utils.c | 117 * Convert numeric message type into string 118 * @param type AJP message type 119 * @return AJP message type as a string 121 const char *ajp_type_str(int type) argument 123 switch (type) {
|
/httpd/modules/lua/ |
H A D | lua_dbd.h | 34 char type; member in struct:__anon207
|
H A D | lua_request.h | 38 int type; member in struct:__anon210 51 int type; member in struct:__anon212
|
H A D | lua_dbd.c | 68 if (db->type == LUA_DBTYPE_APR_DBD) { 102 if (db->type == LUA_DBTYPE_APR_DBD) { 190 db:escape(string): Escapes a string for safe use in the given database type. 667 static lua_db_handle* lua_push_db_handle(lua_State *L, request_rec* r, int type, argument 675 db->type = type; 717 dbacquire(dbType, dbString): Opens a new connection to a database of type 728 const char *type; local 740 type = luaL_optstring(L, 2, "mod_dbd"); /* Defaults to mod_dbd */ 742 if (!strcmp(type, "mod_db [all...] |
/httpd/os/bs2000/ |
H A D | os.c | 78 bs2_ForkType type = os_forktype(one_process); local 86 type = forktype = bs2_noFORK;
|
/httpd/modules/filters/ |
H A D | mod_data.c | 50 * data:[<mime-type>;][charset=<charset>;]base64,<payload> 54 * mime-type: The mime type of the original response. 55 * charset: The optional character set corresponding to the mime type. 58 * The content type of the response is set to text/plain. 74 char *type; local 91 type = apr_pstrdup(r->pool, r->content_type); 92 if (type) { 93 charset = strchr(type, ' '); 104 type [all...] |
/httpd/server/ |
H A D | util_fcgi.c | 30 a[AP_FCGI_HDR_TYPE_OFFSET] = h->type; 43 h->type = a[AP_FCGI_HDR_TYPE_OFFSET]; 53 unsigned char *type, 60 *type = a[AP_FCGI_HDR_TYPE_OFFSET]; 82 unsigned char type, 89 header->type = type; 52 ap_fcgi_header_fields_from_array(unsigned char *version, unsigned char *type, apr_uint16_t *request_id, apr_uint16_t *content_len, unsigned char *padding_len, unsigned char a[]) argument 81 ap_fcgi_fill_in_header(ap_fcgi_header *header, unsigned char type, apr_uint16_t request_id, apr_uint16_t content_len, unsigned char padding_len) argument
|
H A D | util_mutex.c | 203 * mutex type names while looking for "OmitPID" (anywhere) or the end 218 if (apr_is_empty_array(type_list)) { /* no mutex type? assume "default" */ 224 const char *type = *elt; local 225 mxcfg = apr_hash_get(mxcfg_by_type, type, APR_HASH_KEY_STRING); 227 return apr_psprintf(p, "Mutex type %s is not valid", type); 237 "None is not allowed for mutex type %s", 238 type); 254 const char *type, 273 apr_hash_set(mxcfg_by_type, type, APR_HASH_KEY_STRIN 291 get_mutex_filename(apr_pool_t *p, mutex_cfg_t *mxcfg, const char *type, const char *instance_id) argument 318 mxcfg_lookup(apr_pool_t *p, const char *type) argument 373 log_bad_create_options(server_rec *s, const char *type) argument 380 log_unknown_type(server_rec *s, const char *type) argument 386 log_create_failure(apr_status_t rv, server_rec *s, const char *type, const char *fname) argument 397 log_perms_failure(apr_status_t rv, server_rec *s, const char *type) argument [all...] |
/httpd/modules/mappers/ |
H A D | mod_actions.c | 18 * mod_actions.c: executes scripts based on MIME type or HTTP method 25 * Action mime/type /cgi-bin/script 27 * will activate /cgi-bin/script when a file of content type mime/type is 93 const char *type, const char *script, 103 apr_table_setn(m->action_types, type, 143 "a media type followed by a script name"), 92 add_action(cmd_parms *cmd, void *m_v, const char *type, const char *script, const char *option) argument
|
/httpd/os/win32/ |
H A D | ap_regkey.c | 188 DWORD type; local 205 rc = RegQueryValueExW(key->hkey, wvalname, 0, &type, NULL, (DWORD *)&size); 209 if ((size < 2) || (type != REG_SZ && type != REG_EXPAND_SZ)) { 215 rc = RegQueryValueExW(key->hkey, wvalname, 0, &type, 220 if (type == REG_EXPAND_SZ) { 251 rc = RegQueryValueEx(key->hkey, valuename, 0, &type, NULL, (DWORD *)&size); 255 if ((size < 1) || (type != REG_SZ && type != REG_EXPAND_SZ)) { 261 rc = RegQueryValueEx(key->hkey, valuename, 0, &type, *resul 294 DWORD type = (flags & AP_REGKEY_EXPAND) ? REG_EXPAND_SZ : REG_SZ; local 455 apr_int32_t type; local [all...] |
/httpd/include/ |
H A D | ap_expr.h | 266 /** type of the looked up object */ 267 int type; member in struct:__anon3
|
H A D | util_fcgi.h | 43 /** See values for type, below */ 44 unsigned char type; member in struct:__anon43 75 * Possible values for the type field of ap_fcgi_header 104 * the type is AP_FCGI_BEGIN_REQUEST. 165 * @param type The type, on output 172 unsigned char *type, 189 * @param type The type of record 197 unsigned char type, [all...] |
/httpd/modules/aaa/ |
H A D | mod_access_compat.c | 61 enum allowdeny_type type; member in struct:__anon48 160 a->type = T_NENV; 165 a->type = T_ENV; 170 a->type = T_ALL; 182 a->type = T_IP; 188 a->type = T_IP; 194 a->type = T_HOST; 256 switch (ap[i].type) {
|
H A D | mod_authn_core.c | 342 const char *err = NULL, *type; local 343 type = ap_expr_str_exec(r, conf->ap_auth_type, &err); 350 return strcasecmp(type, "None") ? type : NULL; 381 "an HTTP authorization type (e.g., \"Basic\")"),
|
/httpd/modules/http/ |
H A D | http_request.c | 76 static void ap_die_r(int type, request_rec *r, int recursive_error) argument 81 if (type == OK || type == DONE) { 86 if (!ap_is_HTTP_VALID_RESPONSE(type)) { 105 if (type != AP_FILTER_ERROR) { 107 "Invalid response status %i", type); 113 type = HTTP_INTERNAL_SERVER_ERROR; 147 int error_index = ap_index_of_response(type); 152 r->status = type; 226 AP_DECLARE(void) ap_die(int type, request_re argument [all...] |
/httpd/modules/slotmem/ |
H A D | mod_slotmem_plain.c | 23 #define AP_SLOTMEM_IS_PREGRAB(t) (t->type & AP_SLOTMEM_TYPE_PREGRAB) 32 ap_slotmem_type_t type; /* type-specific flags */ member in struct:ap_slotmem_instance_t 66 static apr_status_t slotmem_create(ap_slotmem_instance_t **new, const char *name, apr_size_t item_size, unsigned int item_num, ap_slotmem_type_t type, apr_pool_t *pool) argument 109 res->type = type;
|
/httpd/modules/ssl/ |
H A D | ssl_util.c | 211 static void ssl_util_thr_lock(int mode, int type, argument 214 if (type < lock_num_locks) { 216 apr_thread_mutex_lock(lock_cs[type]); 219 apr_thread_mutex_unlock(lock_cs[type]);
|
H A D | ssl_util_ssl.c | 256 * Return an array of subjectAltName entries of type "type". If idx is -1, 257 * return all entries of the given type, otherwise return an array consisting 258 * of the n-th occurrence of that type only. Currently supported types: 262 BOOL SSL_X509_getSAN(apr_pool_t *p, X509 *x509, int type, int idx, argument 267 if (!x509 || (type < GEN_OTHERNAME) || (type > GEN_RID) || (idx < -1) || 280 if (name->type == type) { 282 switch (type) { [all...] |
/httpd/os/unix/ |
H A D | unixd.c | 59 const char * arg2, int type) 70 if ((getrlimit(type, limit)) != 0) { 486 bs2_ForkType type = os_forktype(one_process); local 494 type = forktype = bs2_noFORK; 57 ap_unixd_set_rlimit(cmd_parms *cmd, struct rlimit **plimit, const char *arg, const char * arg2, int type) argument
|
/httpd/server/mpm/motorz/ |
H A D | motorz.h | 153 motorz_poll_type_e type; member in struct:motorz_sb_t
|
/httpd/server/mpm/simple/ |
H A D | simple_types.h | 69 simple_poll_type_e type; member in struct:simple_sb_t
|
/httpd/support/ |
H A D | htdbm.c | 69 char *type; member in struct:htdbm_t 140 (*hdbm)->type = "default"; 147 return apr_dbm_open_ex(&htdbm->dbm, htdbm->type, htdbm->filename, APR_DBM_RWCREATE, 150 return apr_dbm_open_ex(&htdbm->dbm, htdbm->type, htdbm->filename, 362 h->type = apr_pstrdup(h->ctx.pool, opt_arg);
|
/httpd/modules/cache/ |
H A D | cache_util.h | 110 const char *type; member in struct:cache_enable
|