Lines Matching defs:rs
121 apr_status_t rs;
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;
203 rs = apr_global_mutex_child_init(&exipc_mutex,
206 if (APR_SUCCESS != rs) {
207 ap_log_error(APLOG_MARK, APLOG_CRIT, rs, s,
226 apr_status_t rs;
248 rs = apr_global_mutex_trylock(exipc_mutex);
249 if (APR_STATUS_IS_EBUSY(rs)) {
251 } else if (APR_SUCCESS == rs) {
254 } else if (APR_STATUS_IS_ENOTIMPL(rs)) {
257 rs = apr_global_mutex_lock(exipc_mutex);
259 if (APR_SUCCESS == rs) {
264 ap_log_error(APLOG_MARK, APLOG_ERR, rs, r->server,
271 ap_log_error(APLOG_MARK, APLOG_ERR, rs, r->server,
325 rs = apr_global_mutex_unlock(exipc_mutex);