Home
last modified time | relevance | path

Searched refs:rv (Results 1 – 25 of 44) sorted by last modified time

12

/PHP-5.5/win32/
H A Dglob.c232 int rv; local
239 if (!globexp2(ptr, pattern, pglob, &rv))
240 return rv;
252 globexp2(ptr, pattern, pglob, rv) in globexp2() argument
255 int *rv;
291 *rv = glob0(patbuf, pglob);
341 *rv = globexp1(patbuf, pglob);
352 *rv = 0;
/PHP-5.5/tests/lang/
H A DpassByReference_005.phpt25 function rv(&$ref, $val) {
61 function rv(&$ref, $val) {
88 rv($u1, $u2);
111 C::rv($u1, $u2);
137 $c->rv($u1, $u2);
214 Strict Standards: Non-static method C::rv() should not be called statically in %s on line 108
/PHP-5.5/sapi/nsapi/
H A Dnsapi.c334 int uri_len,rv; in PHP_FUNCTION() local
369 rv = (*nsapi_servact_uri2path)(rc->sn, rq); in PHP_FUNCTION()
370 if (rv != REQ_PROCEED) { in PHP_FUNCTION()
374 rv = (*nsapi_servact_pathchecks)(rc->sn, rq); in PHP_FUNCTION()
375 if (rv != REQ_PROCEED) { in PHP_FUNCTION()
379 rv = (*nsapi_servact_fileinfo)(rc->sn, rq); in PHP_FUNCTION()
380 if (rv != REQ_PROCEED) { in PHP_FUNCTION()
384 rv = (*nsapi_servact_service)(rc->sn, rq); in PHP_FUNCTION()
385 } while (rv == REQ_RESTART); in PHP_FUNCTION()
/PHP-5.5/sapi/litespeed/
H A Dlsapilib.c794 int rv; in setUID_LVE() local
805 if ( rv == -1 ) in setUID_LVE()
827 rv = setgid(gid); in setUID_LVE()
828 if (rv == -1) in setUID_LVE()
836 if (rv == -1) in setUID_LVE()
844 rv = setgroups(1, &gid); in setUID_LVE()
845 if (rv == -1) in setUID_LVE()
852 rv = chroot( pChroot ); in setUID_LVE()
853 if ( rv == -1 ) in setUID_LVE()
859 rv = setuid(uid); in setUID_LVE()
[all …]
/PHP-5.5/sapi/apache2filter/
H A Dsapi_apache2.c367 apr_status_t rv; in php_input_filter() local
381 if ((rv = ap_get_brigade(f->next, bb, mode, block, readbytes)) != APR_SUCCESS) { in php_input_filter()
382 return rv; in php_input_filter()
/PHP-5.5/sapi/apache2handler/
H A Dsapi_apache2.c542 apr_status_t rv; in php_handler() local
684 rv = ap_pass_brigade(r->output_filters, brigade); in php_handler()
685 if (rv != APR_SUCCESS || r->connection->aborted) { in php_handler()
/PHP-5.5/ext/zlib/
H A Dzlib.c466 int encoding, rv; in PHP_FUNCTION() local
505 rv = php_zlib_output_handler_ex(ZLIBG(ob_gzhandler), &ctx); in PHP_FUNCTION()
507 if (SUCCESS != rv) { in PHP_FUNCTION()
/PHP-5.5/ext/standard/tests/misc/
H A Dget_browser_variation1.phpt473 string(58) "Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.4*) Gecko/*"
683 string(57) "~^mozilla/5\.0 \(x11; .*linux.*; .*rv:1\.7.*\) gecko/.*$~"
685 string(44) "Mozilla/5.0 (X11; *Linux*; *rv:1.7*) Gecko/*"
757 string(58) "Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.9*) Gecko/*"
899 string(60) "Mozilla/5.0 (X11; *; Linux*; *; rv:1.*) Gecko/* Firebird/0.*"
969 string(57) "~^mozilla/5\.0 \(x11; .*linux.*; .*rv:1\.4.*\) gecko/.*$~"
971 string(44) "Mozilla/5.0 (X11; *Linux*; *rv:1.4*) Gecko/*"
1113 string(41) "~^mozilla/5\.0 \(.*rv:1\.8.*\) gecko/.*$~"
1115 string(30) "Mozilla/5.0 (*rv:1.8*) Gecko/*"
1185 string(41) "~^mozilla/5\.0 \(.*rv:1\.8.*\) gecko/.*$~"
[all …]
/PHP-5.5/ext/standard/tests/assert/
H A Dassert_variation.phpt37 var_dump($rv = ini_set("assert.callback","f2"));
44 var_dump($rv=assert_options(ASSERT_CALLBACK, "f3"));
/PHP-5.5/ext/spl/
H A Dspl_iterators.c2243 zval *rv; in SPL_METHOD() local
2257 zend_call_method_with_0_params(&(getThis()), spl_ce_RegexIterator, NULL, "accept", &rv); in SPL_METHOD()
2259 RETURN_ZVAL(rv, 1, 1); in SPL_METHOD()
H A Dspl_observer.c121 zval *rv; in spl_object_storage_get_hash() local
122 …zend_call_method_with_1_params(&this, intern->std.ce, &intern->fptr_get_hash, "getHash", &rv, obj); in spl_object_storage_get_hash()
123 if (rv) { in spl_object_storage_get_hash()
124 if (Z_TYPE_P(rv) == IS_STRING) { in spl_object_storage_get_hash()
125 int hash_len = Z_STRLEN_P(rv); in spl_object_storage_get_hash()
127 strncpy(hash, Z_STRVAL_P(rv), hash_len); in spl_object_storage_get_hash()
130 zval_ptr_dtor(&rv); in spl_object_storage_get_hash()
138 zval_ptr_dtor(&rv); in spl_object_storage_get_hash()
H A Dspl_directory.c592 HashTable *rv; in spl_filesystem_object_get_debug_info() local
604 ALLOC_HASHTABLE(rv); in spl_filesystem_object_get_debug_info()
605 ZEND_INIT_SYMTABLE_EX(rv, zend_hash_num_elements(intern->std.properties) + 3, 0); in spl_filesystem_object_get_debug_info()
608 Z_ARRVAL(zrv) = rv; in spl_filesystem_object_get_debug_info()
610 …zend_hash_copy(rv, intern->std.properties, (copy_ctor_func_t) zval_add_ref, (void *) &tmp, sizeof(… in spl_filesystem_object_get_debug_info()
661 return rv; in spl_filesystem_object_get_debug_info()
H A Dspl_dllist.c487 zval *rv; in spl_dllist_object_count_elements() local
488 zend_call_method_with_0_params(&object, intern->std.ce, &intern->fptr_count, "count", &rv); in spl_dllist_object_count_elements()
489 if (rv) { in spl_dllist_object_count_elements()
492 ZVAL_ZVAL(intern->retval, rv, 1, 1); in spl_dllist_object_count_elements()
H A Dspl_fixedarray.c380 zval *rv; in spl_fixedarray_object_read_dimension() local
386 …_method_with_1_params(&object, intern->std.ce, &intern->fptr_offset_get, "offsetGet", &rv, offset); in spl_fixedarray_object_read_dimension()
388 if (rv) { in spl_fixedarray_object_read_dimension()
391 ZVAL_ZVAL(intern->retval, rv, 1, 1); in spl_fixedarray_object_read_dimension()
535 zval *rv; in spl_fixedarray_object_has_dimension() local
539 if (rv) { in spl_fixedarray_object_has_dimension()
542 ZVAL_ZVAL(intern->retval, rv, 1, 1); in spl_fixedarray_object_has_dimension()
558 zval *rv; in spl_fixedarray_object_count_elements() local
559 zend_call_method_with_0_params(&object, intern->std.ce, &intern->fptr_count, "count", &rv); in spl_fixedarray_object_count_elements()
560 if (rv) { in spl_fixedarray_object_count_elements()
[all …]
H A Dspl_functions.c138 char *rv; in spl_gen_private_prop_name() local
140 zend_mangle_property_name(&rv, name_len, ce->name, ce->name_length, prop_name, prop_len, 0); in spl_gen_private_prop_name()
142 return rv; in spl_gen_private_prop_name()
H A Dspl_heap.c503 zval *rv; in spl_heap_object_count_elements() local
504 zend_call_method_with_0_params(&object, intern->std.ce, &intern->fptr_count, "count", &rv); in spl_heap_object_count_elements()
505 if (rv) { in spl_heap_object_count_elements()
508 ZVAL_ZVAL(intern->retval, rv, 1, 1); in spl_heap_object_count_elements()
H A Dspl_array.c383 zval *rv; in spl_array_read_dimension_ex() local
391 if (rv) { in spl_array_read_dimension_ex()
394 ZVAL_ZVAL(intern->retval, rv, 1, 1); in spl_array_read_dimension_ex()
596 zval *rv, **tmp; in spl_array_has_dimension_ex() local
602 if (rv && zend_is_true(rv)) { in spl_array_has_dimension_ex()
603 zval_ptr_dtor(&rv); in spl_array_has_dimension_ex()
606 if (rv) { in spl_array_has_dimension_ex()
607 zval_ptr_dtor(&rv); in spl_array_has_dimension_ex()
1417 zval *rv; in spl_array_object_count_elements() local
1419 if (rv) { in spl_array_object_count_elements()
[all …]
/PHP-5.5/ext/simplexml/
H A Dsimplexml.c1065 HashTable *rv; in sxe_get_prop_hash() local
1080 ALLOC_HASHTABLE(rv); in sxe_get_prop_hash()
1087 ALLOC_HASHTABLE(rv); in sxe_get_prop_hash()
1094 return rv; in sxe_get_prop_hash()
1194 return rv; in sxe_get_prop_hash()
1809 int rv; in sxe_object_cast() local
1853 return rv; in sxe_object_cast()
1906 zval *rv; in sxe_count_elements() local
1908 if (rv) { in sxe_count_elements()
2138 zend_object_value rv; in php_sxe_register_object() local
[all …]
/PHP-5.5/ext/intl/common/
H A Dcommon_date.cpp178 double rv = NAN; local
189 type = is_numeric_string(Z_STRVAL_P(z), Z_STRLEN_P(z), &lv, &rv, 0);
191 rv *= U_MILLIS_PER_SECOND;
193 rv = U_MILLIS_PER_SECOND * (double)lv;
204 rv = U_MILLIS_PER_SECOND * (double)Z_LVAL_P(z);
207 rv = U_MILLIS_PER_SECOND * Z_DVAL_P(z);
211 intl_datetime_decompose(z, &rv, NULL, err, func TSRMLS_CC);
223 rv = (double)co->ucal->getTime(status);
248 return rv;
/PHP-5.5/ext/interbase/
H A Dibase_query.c640 int i, array_cnt = 0, rv = SUCCESS; in _php_ibase_bind() local
769 rv = FAILURE; in _php_ibase_bind()
782 rv = FAILURE; in _php_ibase_bind()
805 return rv; in _php_ibase_bind()
867 int i, rv = FAILURE; in _php_ibase_exec() local
1033 rv = SUCCESS; in _php_ibase_exec()
1043 if (rv == FAILURE) { in _php_ibase_exec()
1053 return rv; in _php_ibase_exec()
/PHP-5.5/ext/gd/libgd/
H A Dgd_io_dp.c255 int rv; in dynamicGetchar() local
257 rv = dynamicGetbuf (ctx, &b, 1); in dynamicGetchar()
258 if (rv != 1) { in dynamicGetchar()
H A Dgd_jpeg.c153 void *rv; in gdImageJpegPtr() local
156 rv = gdDPExtractData (out, size); in gdImageJpegPtr()
159 return rv; in gdImageJpegPtr()
H A Dgd_wbmp.c203 void *rv; in gdImageWBMPPtr() local
206 rv = gdDPExtractData(out, size); in gdImageWBMPPtr()
209 return rv; in gdImageWBMPPtr()
H A Dgd_webp.c124 void *rv; in gdImageWebpPtr() local
127 rv = gdDPExtractData(out, size); in gdImageWebpPtr()
130 return rv; in gdImageWebpPtr()
135 void *rv; in gdImageWebpPtrEx() local
138 rv = gdDPExtractData(out, size); in gdImageWebpPtrEx()
140 return rv; in gdImageWebpPtrEx()
H A Dwebpimg.c842 const int rv = (((Vrow[x] - 128) * 73) >> 6) + 128; in AdjustColorspaceBack() local
844 Vrow[x] = (rv < 0) ? 0 : (rv > 255) ? 255u : rv; in AdjustColorspaceBack()

Completed in 119 milliseconds

12