Home
last modified time | relevance | path

Searched refs:status (Results 151 – 175 of 271) sorted by relevance

1234567891011

/PHP-5.5/ext/ftp/tests/
H A Dbug39583.phpt23 // check upload status
/PHP-5.5/ext/standard/
H A Dhtml.h60 …gned int php_next_utf8_char(const unsigned char *str, size_t str_len, size_t *cursor, int *status);
H A Dhtml.c68 *status = FAILURE; \
94 int *status) in get_next_char() argument
99 *status = SUCCESS; in get_next_char()
355 int *status) in php_next_utf8_char() argument
357 return get_next_char(cs_utf_8, str, str_len, cursor, status); in php_next_utf8_char()
1159 int status = SUCCESS; in find_entity_for_char() local
1165 next_char = get_next_char(charset, old, oldlen, cursor, &status); in find_entity_for_char()
1167 if (status == FAILURE) in find_entity_for_char()
1274 int status = SUCCESS; in php_escape_html_entities_ex() local
1275 unsigned int this_char = get_next_char(charset, old, oldlen, &cursor, &status); in php_escape_html_entities_ex()
[all …]
H A Dpassword.c275 int status = 0, i; in PHP_FUNCTION() local
296 status |= (ret[i] ^ hash[i]); in PHP_FUNCTION()
301 RETURN_BOOL(status == 0); in PHP_FUNCTION()
/PHP-5.5/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_ident.h46 int status; member
H A Dmbfl_convert.c606 filter->status = 0; in mbfl_filt_conv_common_ctor()
612 filter->status = 0; in mbfl_filt_conv_common_flush()
623 filter->status = 0; in mbfl_filt_conv_common_dtor()
/PHP-5.5/sapi/apache2handler/
H A Dsapi_apache2.c159 ctx->r->status = SG(sapi_headers).http_response_code; in php_apache_sapi_send_headers()
308 r->status = SG(sapi_headers).http_response_code; in php_apache_sapi_flush()
476 SG(sapi_headers).http_response_code = !r->status ? HTTP_OK : r->status; in php_apache_request_ctor()
640 …if (parent_req && parent_req->status != HTTP_OK && parent_req->status != 413 && strcmp(r->protocol… in php_handler()
/PHP-5.5/ext/pcntl/tests/
H A Dpcntl_fork_basic.phpt18 pcntl_wait($status);
/PHP-5.5/ext/zip/tests/
H A Doo_getnameindex.phpt25 if (!$zip->status == ZIPARCHIVE::ER_OK) {
H A Doo_open.phpt35 if ($zip->status == ZIPARCHIVE::ER_OK) {
H A Doo_namelocate.phpt25 if (!$zip->status == ZIPARCHIVE::ER_OK) {
H A Doo_rename.phpt25 if (!$zip->status == ZIPARCHIVE::ER_OK) {
/PHP-5.5/ext/intl/transliterator/
H A Dtransliterator_class.c35 UErrorCode *status TSRMLS_DC ) in transliterator_object_construct()
52 intl_convert_utf16_to_utf8( &str_id, &str_id_len, ustr_id, (int ) ustr_id_len, status ); in transliterator_object_construct()
53 if( U_FAILURE( *status ) ) in transliterator_object_construct()
/PHP-5.5/sapi/apache2filter/
H A Dphp_functions.c75 if (rr->status == HTTP_OK) { in PHP_FUNCTION()
113 if (rr->status == HTTP_OK) { in PHP_FUNCTION()
116 ADD_LONG(status); in PHP_FUNCTION()
/PHP-5.5/ext/openssl/tests/
H A Dbug46127.phpt53 pcntl_waitpid($pid, $status);
H A Dbug54992.phpt33 @pcntl_wait($status);
/PHP-5.5/ext/standard/tests/general_functions/
H A Dproc_open02.phpt20 var_dump(proc_terminate($cat, 0)); // status check
/PHP-5.5/tests/output/
H A Dob_013.phpt2 output buffering - handlers/status
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_conf.c849 char *status = wp->config->pm_status_path; in fpm_conf_process_all_pools() local
851 if (*status != '/') { in fpm_conf_process_all_pools()
852 …zlog(ZLOG_ERROR, "[pool %s] the status path '%s' must start with a '/'", wp->config->name, status); in fpm_conf_process_all_pools()
856 if (strlen(status) < 2) { in fpm_conf_process_all_pools()
857 zlog(ZLOG_ERROR, "[pool %s] the status path '%s' is not long enough", wp->config->name, status); in fpm_conf_process_all_pools()
861 for (i = 0; i < strlen(status); i++) { in fpm_conf_process_all_pools()
862 …if (!isalnum(status[i]) && status[i] != '/' && status[i] != '-' && status[i] != '_' && status[i] !… in fpm_conf_process_all_pools()
863 … path '%s' must contain only the following characters '[alphanum]/_-.'", wp->config->name, status); in fpm_conf_process_all_pools()
/PHP-5.5/ext/mysqli/
H A Dmysqli_nonapi.c146 (mysqli_resource->status > MYSQLI_STATUS_INITIALIZED))
149 php_mysqli_close(mysql, MYSQLI_CLOSE_IMPLICIT, mysqli_resource->status TSRMLS_CC);
272 mysqli_resource->status = MYSQLI_STATUS_VALID;
632 mysqli_resource->status = MYSQLI_STATUS_VALID;
666 if (MYSQLI_STATUS_VALID && my_res->status < MYSQLI_STATUS_VALID) {
877 mysqli_resource->status = MYSQLI_STATUS_VALID;
904 mysqli_resource->status = MYSQLI_STATUS_VALID;
935 mysqli_resource->status = MYSQLI_STATUS_VALID;
961 mysqli_resource->status = MYSQLI_STATUS_VALID;
/PHP-5.5/ext/json/
H A Djson.c366 int j, status; in json_utf8_to_utf16() local
371 us = php_next_utf8_char((const unsigned char *)utf8, len, &pos, &status); in json_utf8_to_utf16()
372 if (status != SUCCESS) { in json_utf8_to_utf16()
387 us = php_next_utf8_char((const unsigned char *)utf8, len, &pos, &status); in json_utf8_to_utf16()
388 if (status != SUCCESS) { in json_utf8_to_utf16()
/PHP-5.5/ext/soap/interop/
H A Ddatabase_round2.sql23 status int(11) NOT NULL default '1',
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_stmt_execute.phpt33 // stmt object status test
40 // stmt object status test
94 printf("[020] Expecting boolean/true after reset to prepare status, got %s/%s. [%d] %s\n",
/PHP-5.5/ext/pdo_oci/
H A Dphp_pdo_oci_int.h89 ub4 _oci_error(OCIError *err, pdo_dbh_t *dbh, pdo_stmt_t *stmt, char *what, sword status, int isini…
/PHP-5.5/ext/standard/tests/file/
H A Dfile.inc267 $status = create_file($filename, $mode);
271 if ($status == true) {
370 $status = symlink( $src_filename, $linkname);
372 if ($status) {
384 $status = link($src_filename, $linkname);
386 if ($status) {
475 $status = delete_file($filename);
476 if($status == true) {
478 } else if($status == file_not_found) {

Completed in 58 milliseconds

1234567891011