Home
last modified time | relevance | path

Searched refs:ret (Results 151 – 175 of 337) sorted by relevance

12345678910>>...14

/PHP-5.5/ext/standard/tests/file/
H A Drename_variation6-win32.phpt7 $ret = exec('mklink rename_variation13tmp.lnk ' . __FILE__ .' 2>&1', $out);
8 if (strpos($ret, 'privilege')) {
H A Dbug38450.phpt25 $ret = substr($GLOBALS[$this->varname], $this->position, $count);
26 $this->position += strlen($ret);
27 return $ret;
H A Dbug38450_1.phpt25 $ret = substr($GLOBALS[$this->varname], $this->position, $count);
26 $this->position += strlen($ret);
27 return $ret;
H A Dbug38450_3.phpt25 $ret = substr($GLOBALS[$this->varname], $this->position, $count);
26 $this->position += strlen($ret);
27 return $ret;
H A Dfopencookie.phpt31 $ret = substr($this->data, $this->position, $count);
32 $this->position += strlen($ret);
33 return $ret;
H A Dinclude_streams.phpt52 $ret = substr($GLOBALS[$this->varname], $this->position, $count);
53 $this->position += strlen($ret);
54 return $ret;
/PHP-5.5/ext/standard/tests/streams/
H A Dbug64770.phpt42 $ret = proc_close($p);
43 var_dump($ret);
H A Dbug60602.phpt42 $ret = proc_close($p);
43 var_dump($ret);
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_exec_select.phpt15 $ret = $db->exec($sql);
16 if ($ret !== $exp) {
18 $offset, $exp, gettype($exp), $ret, gettype($ret), $sql,
/PHP-5.5/ext/calendar/
H A Dcalendar.c263 static void _php_cal_info(int cal, zval **ret) in _php_cal_info() argument
270 array_init(*ret); in _php_cal_info()
281 add_assoc_zval(*ret, "months", months); in _php_cal_info()
282 add_assoc_zval(*ret, "abbrevmonths", smonths); in _php_cal_info()
283 add_assoc_long(*ret, "maxdaysinmonth", calendar->max_days_in_month); in _php_cal_info()
284 add_assoc_string(*ret, "calname", calendar->name, 1); in _php_cal_info()
285 add_assoc_string(*ret, "calsymbol", calendar->symbol, 1); in _php_cal_info()
507 static char *heb_number_to_chars(int n, int fl, char **ret) in heb_number_to_chars() argument
517 *ret = NULL; in heb_number_to_chars()
590 *ret = estrndup(old, (p - old) + 1); in heb_number_to_chars()
[all …]
/PHP-5.5/ext/com_dotnet/
H A Dcom_persist.c94 ULONG ret; in stm_release() local
97 ret = InterlockedDecrement(&stm->refcount); in stm_release()
98 if (ret == 0) { in stm_release()
103 return ret; in stm_release()
143 int ret; in stm_seek() local
161 ret = php_stream_seek(stm->stream, offset, whence); in stm_seek()
164 plibNewPosition->QuadPart = (ULONGLONG)(ret >= 0 ? ret : 0); in stm_seek()
167 return ret >= 0 ? S_OK : STG_E_INVALIDFUNCTION; in stm_seek()
179 int ret = php_stream_truncate_set_size(stm->stream, (size_t)libNewSize.QuadPart); in stm_set_size() local
181 if (ret == 0) { in stm_set_size()
/PHP-5.5/ext/phar/tests/files/
H A Dpear2coverage.phar.php1076 $ret = array();
1080 return $ret;
1091 $ret = array();
1095 return $ret;
1122 $ret = array();
1126 return $ret;
1141 $ret = array();
1145 return $ret;
1259 return $ret;
1416 return $ret;
[all …]
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_set_charset.phpt83 if (false !== ($ret = mysqli_set_charset($link, "this is not a valid character set")))
84 …[011] Expecting boolean/false because of invalid character set, got %s/%s\n", gettype($ret), $ret);
91 if (true !== ($ret = mysqli_set_charset($link, $new_charset)))
92 printf("[013] Expecting boolean/true, got %s/%s\n", gettype($ret), $ret);
/PHP-5.5/ext/pdo/
H A Dpdo_sql_parser.re86 int ret = 0;
135 ret = -1;
141 ret = 0;
159 ret = -1;
178 ret = -1;
197 ret = -1;
214 ret = -1;
226 ret = -1;
257 ret = -1;
302 ret = 1;
[all …]
/PHP-5.5/ext/xsl/
H A Dphp_xsl.h84 #define XSL_DOMOBJ_NEW(zval, obj, ret) \ argument
85 if (NULL == (zval = php_xsl_create_object(obj, ret, zval, return_value TSRMLS_CC))) { \
/PHP-5.5/sapi/cli/tests/
H A Dbug64529.phpt8 exec('which expect', $output, $ret);
9 if ($ret) {
/PHP-5.5/ext/standard/tests/file/windows_links/
H A Dbug48746_1.phpt14 $ret = @exec($cmd, $output, $return_val);
29 $ret = exec($mountvol . " " . $drive . " /L", $output, $ret_val);
30 exec("mklink /j mounted_volume " . $ret, $output, $ret_val);
/PHP-5.5/ext/zlib/
H A Dzlib_fopen_wrapper.c75 int ret = EOF; in php_gziop_close() local
79 ret = gzclose(self->gz_file); in php_gziop_close()
89 return ret; in php_gziop_close()
/PHP-5.5/ext/dom/
H A Ddomimplementation.c95 int ret, name_len = 0, publicid_len = 0, systemid_len = 0; in PHP_METHOD() local
143 DOM_RET_OBJ((xmlNodePtr) doctype, &ret, NULL); in PHP_METHOD()
158 int ret, uri_len = 0, name_len = 0, errorcode = 0; in PHP_METHOD() local
240 DOM_RET_OBJ((xmlNodePtr) docp, &ret, NULL); in PHP_METHOD()
/PHP-5.5/sapi/cli/
H A Dphp_cli.c240 int ret; in sapi_cli_select() local
252 return ret != -1; in sapi_cli_select()
258 long ret; in sapi_cli_single_write() local
260 size_t ret; in sapi_cli_single_write()
276 if (ret <= 0) { in sapi_cli_single_write()
280 return ret; in sapi_cli_single_write()
283 return ret; in sapi_cli_single_write()
292 size_t ret; in sapi_cli_ub_write() local
309 if (!ret) { in sapi_cli_ub_write()
315 ptr += ret; in sapi_cli_ub_write()
[all …]
/PHP-5.5/ext/xmlreader/
H A Dphp_xmlreader.c123 int ret = FAILURE; in xmlreader_get_property_ptr_ptr() local
137 if (ret == FAILURE) { in xmlreader_get_property_ptr_ptr()
157 int ret; in xmlreader_read_property() local
166 ret = FAILURE; in xmlreader_read_property()
172 if (ret == SUCCESS) { in xmlreader_read_property()
174 if (ret == SUCCESS) { in xmlreader_read_property()
199 int ret; in xmlreader_write_property() local
208 ret = FAILURE; in xmlreader_write_property()
214 if (ret == SUCCESS) { in xmlreader_write_property()
1098 if (ret == 0) { in PHP_METHOD()
[all …]
/PHP-5.5/ext/mbstring/libmbfl/tests/
H A Dconv_encoding.c30 mbfl_string string, result, *ret; in main() local
95 ret = mbfl_buffer_converter_feed_result(convd, &string, &result); in main()
/PHP-5.5/ext/pdo_oci/
H A Doci_driver.c258 int ret; in oci_handle_preparer() local
270 ret = pdo_parse_params(stmt, (char*)sql, sql_len, &nsql, &nsql_len TSRMLS_CC); in oci_handle_preparer()
272 if (ret == 1) { in oci_handle_preparer()
276 } else if (ret == -1) { in oci_handle_preparer()
333 int ret = -1; in oci_handle_doer() local
362 ret = rowcount; in oci_handle_doer()
367 return ret; in oci_handle_doer()
594 int i, ret = 0; in pdo_oci_handle_factory() local
701 ret = 1; in pdo_oci_handle_factory()
710 if (!ret) { in pdo_oci_handle_factory()
[all …]
/PHP-5.5/ext/spl/tests/
H A Diterator_004.phpt25 $ret = $this->i < count($this->a);
26 echo __METHOD__ . '(' . ($ret ? 'true' : 'false') . ")\n";
27 return $ret;
/PHP-5.5/sapi/apache_hooks/
H A Dphp_apache_http.h44 int apache_php_module_hook(request_rec *r, php_handler *handler, zval **ret TSRMLS_DC);

Completed in 40 milliseconds

12345678910>>...14