Lines Matching refs:error

80 	CURLMcode error = CURLM_OK;  in PHP_FUNCTION()  local
102 error = curl_multi_add_handle(mh->multi, ch->cp); in PHP_FUNCTION()
103 SAVE_CURLM_ERROR(mh, error); in PHP_FUNCTION()
105 RETURN_LONG((zend_long) error); in PHP_FUNCTION()
168 CURLMcode error = CURLM_OK; in PHP_FUNCTION() local
183 error = curl_multi_remove_handle(mh->multi, ch->cp); in PHP_FUNCTION()
184 SAVE_CURLM_ERROR(mh, error); in PHP_FUNCTION()
186 RETVAL_LONG((zend_long) error); in PHP_FUNCTION()
220 CURLMcode error = CURLM_OK; in PHP_FUNCTION() local
233 error = curl_multi_wait(mh->multi, NULL, 0, (unsigned long) (timeout * 1000.0), &numfds); in PHP_FUNCTION()
234 if (CURLM_OK != error) { in PHP_FUNCTION()
235 SAVE_CURLM_ERROR(mh, error); in PHP_FUNCTION()
247 error = curl_multi_fdset(mh->multi, &readfds, &writefds, &exceptfds, &maxfd); in PHP_FUNCTION()
248 SAVE_CURLM_ERROR(mh, error); in PHP_FUNCTION()
266 CURLMcode error = CURLM_OK; in PHP_FUNCTION() local
294 error = curl_multi_perform(mh->multi, &still_running); in PHP_FUNCTION()
298 SAVE_CURLM_ERROR(mh, error); in PHP_FUNCTION()
299 RETURN_LONG((zend_long) error); in PHP_FUNCTION()
496 int error; in _php_server_push_callback() local
534 error = zend_call_function(&fci, &t->fci_cache); in _php_server_push_callback()
538 if (error == FAILURE) { in _php_server_push_callback()
559 CURLMcode error = CURLM_OK; in _php_curl_multi_setopt() local
575 error = curl_multi_setopt(mh->multi, option, zval_get_long(zvalue)); in _php_curl_multi_setopt()
588 error = curl_multi_setopt(mh->multi, option, _php_server_push_callback); in _php_curl_multi_setopt()
589 if (error != CURLM_OK) { in _php_curl_multi_setopt()
592 error = curl_multi_setopt(mh->multi, CURLMOPT_PUSHDATA, mh); in _php_curl_multi_setopt()
597 error = CURLM_UNKNOWN_OPTION; in _php_curl_multi_setopt()
601 SAVE_CURLM_ERROR(mh, error); in _php_curl_multi_setopt()
602 if (error != CURLM_OK) { in _php_curl_multi_setopt()