• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/apr-30/apr-util/apr-util/misc/

Lines Matching refs:rv

105     apr_status_t rv;
111 rv = apr_thread_mutex_create(&queue->one_big_mutex,
114 if (rv != APR_SUCCESS) {
115 return rv;
118 rv = apr_thread_cond_create(&queue->not_empty, a);
119 if (rv != APR_SUCCESS) {
120 return rv;
123 rv = apr_thread_cond_create(&queue->not_full, a);
124 if (rv != APR_SUCCESS) {
125 return rv;
150 apr_status_t rv;
156 rv = apr_thread_mutex_lock(queue->one_big_mutex);
157 if (rv != APR_SUCCESS) {
158 return rv;
164 rv = apr_thread_cond_wait(queue->not_full, queue->one_big_mutex);
166 if (rv != APR_SUCCESS) {
168 return rv;
174 rv = apr_thread_mutex_unlock(queue->one_big_mutex);
175 if (rv != APR_SUCCESS) {
176 return rv;
195 rv = apr_thread_cond_signal(queue->not_empty);
196 if (rv != APR_SUCCESS) {
198 return rv;
202 rv = apr_thread_mutex_unlock(queue->one_big_mutex);
203 return rv;
213 apr_status_t rv;
219 rv = apr_thread_mutex_lock(queue->one_big_mutex);
220 if (rv != APR_SUCCESS) {
221 return rv;
225 rv = apr_thread_mutex_unlock(queue->one_big_mutex);
237 rv = apr_thread_cond_signal(queue->not_empty);
238 if (rv != APR_SUCCESS) {
240 return rv;
244 rv = apr_thread_mutex_unlock(queue->one_big_mutex);
245 return rv;
263 apr_status_t rv;
269 rv = apr_thread_mutex_lock(queue->one_big_mutex);
270 if (rv != APR_SUCCESS) {
271 return rv;
278 rv = apr_thread_cond_wait(queue->not_empty, queue->one_big_mutex);
280 if (rv != APR_SUCCESS) {
282 return rv;
288 rv = apr_thread_mutex_unlock(queue->one_big_mutex);
289 if (rv != APR_SUCCESS) {
290 return rv;
309 rv = apr_thread_cond_signal(queue->not_full);
310 if (rv != APR_SUCCESS) {
312 return rv;
316 rv = apr_thread_mutex_unlock(queue->one_big_mutex);
317 return rv;
327 apr_status_t rv;
333 rv = apr_thread_mutex_lock(queue->one_big_mutex);
334 if (rv != APR_SUCCESS) {
335 return rv;
339 rv = apr_thread_mutex_unlock(queue->one_big_mutex);
351 rv = apr_thread_cond_signal(queue->not_full);
352 if (rv != APR_SUCCESS) {
354 return rv;
358 rv = apr_thread_mutex_unlock(queue->one_big_mutex);
359 return rv;
364 apr_status_t rv;
366 if ((rv = apr_thread_mutex_lock(queue->one_big_mutex)) != APR_SUCCESS) {
367 return rv;
372 if ((rv = apr_thread_mutex_unlock(queue->one_big_mutex)) != APR_SUCCESS) {
373 return rv;
381 apr_status_t rv;
383 if ((rv = apr_thread_mutex_lock(queue->one_big_mutex)) != APR_SUCCESS) {
384 return rv;
392 if ((rv = apr_thread_mutex_unlock(queue->one_big_mutex)) != APR_SUCCESS) {
393 return rv;