Home
last modified time | relevance | path

Searched refs:retval (Results 176 – 189 of 189) sorted by relevance

12345678

/PHP-5.5/ext/spl/internal/
H A Dsplfileobject.inc116 * @retval $wouldblock whether the operation would block
/PHP-5.5/ext/standard/
H A Dfile.c1087 char *buf = NULL, *retval; in PHP_FUNCTION() local
1110 if ((retval = php_stream_get_line(stream, buf, len, &actual_len)) == NULL) { in PHP_FUNCTION()
1117 …retval_len = php_strip_tags(retval, actual_len, &stream->fgetss_state, allowed_tags, allowed_tags_… in PHP_FUNCTION()
1119 RETURN_STRINGL(retval, retval_len, 0); in PHP_FUNCTION()
H A Dstring.c4383 char *loc, *retval; local
4454 retval = php_my_setlocale(cat, loc);
4456 if (retval) {
4460 BG(locale_string) = estrdup(retval);
4466 RETURN_STRING(retval, 1);
/PHP-5.5/ext/mbstring/
H A Dmbstring.c982 php_mb_regex_t *retval; in _php_mb_compile_regex() local
986 if ((err_code = onig_new(&retval, in _php_mb_compile_regex()
994 retval = NULL; in _php_mb_compile_regex()
996 return retval; in _php_mb_compile_regex()
1019 pcre *retval; in _php_mb_compile_regex() local
1023 if (!(retval = pcre_compile(pattern, in _php_mb_compile_regex()
1027 return retval; in _php_mb_compile_regex()
/PHP-5.5/ext/fileinfo/
H A Dlibmagic.patch3435 + zval *retval;
3439 + MAKE_STD_ZVAL(retval);
3446 + php_pcre_match_impl(pce, haystack, ms->search.s_len, retval, subpats, 1, 1, PREG_OFFSET_CAPTURE…
3450 + if (Z_LVAL_P(retval) < 0) {
3452 + FREE_ZVAL(retval);
3456 + } else if ((Z_LVAL_P(retval) > 0) && (Z_TYPE_P(subpats) == IS_ARRAY)) {
3541 + FREE_ZVAL(retval);
3563 + FREE_ZVAL(retval);
/PHP-5.5/Zend/
H A Dzend_ini_scanner.c136 #define zend_ini_copy_value(retval, str, len) { \ argument
137 Z_STRVAL_P(retval) = zend_strndup(str, len); \
138 Z_STRLEN_P(retval) = len; \
139 Z_TYPE_P(retval) = IS_STRING; \
H A Dzend_compile.h658 ZEND_API int zend_execute_scripts(int type TSRMLS_DC, zval **retval, int file_count, ...);
H A Dzend_API.h508 ZEND_API int zend_fcall_info_call(zend_fcall_info *fci, zend_fcall_info_cache *fcc, zval **retval, …
H A Dzend_compile.c6779 int retval; in zendlex() local
6788 retval = lex_scan(&zendlval->u.constant TSRMLS_CC); in zendlex()
6789 switch (retval) { in zendlex()
6803 retval = ';'; /* implicit ; */ in zendlex()
6806 retval = T_ECHO; in zendlex()
6812 return retval; in zendlex()
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd.c1363 int retval, sets = 0; local
1412 retval = php_select(max_fd + 1, &rfds, &wfds, &efds, tv_p);
1414 if (retval == -1) {
1427 *desc_num = retval;
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_jit_compile.c10421 int retval; in PRIV() local
10468 retval = jit_machine_stack_exec(&arguments, functions->executable_funcs[mode]); in PRIV()
10472 retval = convert_executable_func.call_executable_func(&arguments); in PRIV()
10475 if (retval * 2 > offset_count) in PRIV()
10476 retval = 0; in PRIV()
10480 return retval; in PRIV()
10508 int retval; in pcre_jit_exec() local
10556 retval = convert_executable_func.call_executable_func(&arguments); in pcre_jit_exec()
10558 if (retval * 2 > offset_count) in pcre_jit_exec()
10559 retval = 0; in pcre_jit_exec()
[all …]
/PHP-5.5/ext/date/lib/
H A Dparse_date.c379 timelib_sll retval = 0; in timelib_meridian() local
386 retval = -12; in timelib_meridian()
389 retval = 12; in timelib_meridian()
397 return retval; in timelib_meridian()
402 timelib_sll retval = 0; in timelib_meridian_with_check() local
412 retval = -12; in timelib_meridian_with_check()
415 retval = 12; in timelib_meridian_with_check()
433 return retval; in timelib_meridian_with_check()
741 long retval = 0; in timelib_parse_zone() local
791 retval = offset; in timelib_parse_zone()
[all …]
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c19968 unsigned long long retval;
19976 : "=r" (retval), "=r" (junk));
19977 return retval;
25615 unsigned long long retval;
25623 : "=r" (retval), "=r" (junk));
25624 return retval;
33134 unsigned long long retval;
33142 : "=r" (retval), "=r" (junk));
33143 return retval;
71296 unsigned long long retval;
[all …]
/PHP-5.5/
H A DNEWS2718 . Fixed bug (segfault due to retval is not initialized). (Laruence)
8685 - Fixed bug #37060 (Type of retval of Countable::count() is not checked).

Completed in 527 milliseconds

12345678