Searched defs:rs (Results 1 - 4 of 4) sorted by relevance
/httpd/modules/examples/ |
H A D | mod_example_ipc.c | 121 apr_status_t rs; local 142 rs = apr_temp_dir_get(&tempdir, pconf); 143 if (APR_SUCCESS != rs) { 144 ap_log_error(APLOG_MARK, APLOG_ERR, rs, s, 159 rs = apr_shm_create(&exipc_shm, sizeof(exipc_data), 161 if (APR_SUCCESS != rs) { 162 ap_log_error(APLOG_MARK, APLOG_ERR, rs, s, 174 rs = ap_global_mutex_create(&exipc_mutex, NULL, exipc_mutex_type, NULL, 176 if (APR_SUCCESS != rs) { 197 apr_status_t rs; local 226 apr_status_t rs; local [all...] |
/httpd/support/ |
H A D | rotatelogs.c | 409 apr_size_t rs; local 418 apr_strftime(newlog.name, &rs, sizeof(newlog.name), config->szLogRoot, &e);
|
/httpd/modules/lua/ |
H A D | mod_lua.c | 1997 apr_status_t rs; local 2006 rs = ap_global_mutex_create(&lua_ivm_mutex, NULL, "lua-ivm-shm", NULL, 2008 if (APR_SUCCESS != rs) { 2013 rs = apr_temp_dir_get(&tempdir, pconf); 2014 if (rs != APR_SUCCESS) { 2015 ap_log_error(APLOG_MARK, APLOG_ERR, rs, s, APLOGNO(02664) 2021 rs = apr_shm_create(&lua_ivm_shm, sizeof(apr_pool_t**), 2023 if (rs != APR_SUCCESS) { 2024 ap_log_error(APLOG_MARK, APLOG_ERR, rs, s, APLOGNO(02665)
|
H A D | lua_request.c | 1833 req_table_t *rs; local 1838 rs = (*func)(r); 1839 ap_lua_push_apr_table(L, rs); 1853 char *rs; local 1856 rs = (*func) (r); 1857 lua_pushstring(L, rs); 1862 int rs; local 1865 rs = (*func) (r); 1866 lua_pushinteger(L, rs); 1871 int rs; local [all...] |
Completed in 43 milliseconds