Home
last modified time | relevance | path

Searched refs:return_code (Results 1 – 4 of 4) sorted by relevance

/php-src/ext/standard/tests/file/windows_mb_path/
H A Dbug71509.phpt29 $return_code = $zipfile->open($outputfile_zip, ZipArchive::CREATE);
30 if ($return_code != true) die("Failed to open file: " . $return_code);
32 $return_code = $zipfile->addfile($testfile_zip, basename($testfile_zip));
33 if ($return_code != true) print("Failed to add file: " . $zipfile->getStatusString());
35 $return_code = $zipfile->close();
36 if ($return_code != true) die("Failed to close archive: " . $zipfile->getStatusString());
/php-src/ext/sqlite3/
H A Dsqlite3.c361 int return_code; in PHP_METHOD() local
373 if (return_code != SQLITE_OK) { in PHP_METHOD()
552 int return_code; in PHP_METHOD() local
582 if (return_code != SQLITE_OK) { in PHP_METHOD()
600 switch (return_code) { in PHP_METHOD()
668 int return_code; in PHP_METHOD() local
695 if (return_code != SQLITE_OK) { in PHP_METHOD()
702 switch (return_code) { in PHP_METHOD()
1506 int return_code; in php_sqlite3_bind_params() local
1776 int return_code = 0; in PHP_METHOD() local
[all …]
/php-src/ext/json/
H A Djson.c131 zend_result return_code; in php_json_encode_ex() local
136 return_code = php_json_encode_zval(buf, val, options, &encoder); in php_json_encode_ex()
139 return return_code; in php_json_encode_ex()
H A Djson_encoder.c537 zend_result return_code; in php_json_encode_serializable_object() local
582 return_code = php_json_encode_array(buf, &retval, options, encoder); in php_json_encode_serializable_object()
585 return_code = php_json_encode_zval(buf, &retval, options, encoder); in php_json_encode_serializable_object()
592 return return_code; in php_json_encode_serializable_object()

Completed in 13 milliseconds