Home
last modified time | relevance | path

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

/PHP-7.2/ext/standard/tests/file/windows_mb_path/
H A Dbug71509.phpt27 $return_code = $zipfile->open($outputfile_zip, ZipArchive::CREATE);
28 if ($return_code != true) die("Failed to open file: " . $return_code);
30 $return_code = $zipfile->addfile($testfile_zip, basename($testfile_zip));
31 if ($return_code != true) print("Failed to add file: " . $zipfile->getStatusString());
33 $return_code = $zipfile->close();
34 if ($return_code != true) die("Failed to close archive: " . $zipfile->getStatusString());
/PHP-7.2/ext/json/
H A Djson.c192 int return_code; in php_json_encode_ex() local
197 return_code = php_json_encode_zval(buf, val, options, &encoder); in php_json_encode_ex()
200 return return_code; in php_json_encode_ex()
H A Djson_encoder.c451 int return_code; in php_json_encode_serializable_object() local
494 return_code = php_json_encode_array(buf, &retval, options, encoder); in php_json_encode_serializable_object()
497 return_code = php_json_encode_zval(buf, &retval, options, encoder); in php_json_encode_serializable_object()
504 return return_code; in php_json_encode_serializable_object()
/PHP-7.2/ext/sqlite3/
H A Dsqlite3.c326 int return_code; in PHP_METHOD() local
338 if (return_code != SQLITE_OK) { in PHP_METHOD()
522 int return_code; in PHP_METHOD() local
550 if (return_code != SQLITE_OK) { in PHP_METHOD()
566 switch (return_code) { in PHP_METHOD()
635 int return_code; in PHP_METHOD() local
660 if (return_code != SQLITE_OK) { in PHP_METHOD()
665 return_code = sqlite3_step(stmt); in PHP_METHOD()
667 switch (return_code) { in PHP_METHOD()
1569 int return_code = 0; in PHP_METHOD() local
[all …]

Completed in 26 milliseconds