Home
last modified time | relevance | path

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

/PHP-7.1/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.1/ext/json/
H A Djson.c190 int return_code; in php_json_encode() local
196 return_code = php_json_encode_zval(buf, val, options, &encoder); in php_json_encode()
199 return return_code; in php_json_encode()
H A Djson_encoder.c480 int return_code; in php_json_encode_serializable_object() local
525 return_code = php_json_encode_array(buf, &retval, options, encoder); in php_json_encode_serializable_object()
528 return_code = php_json_encode_zval(buf, &retval, options, encoder); in php_json_encode_serializable_object()
534 return return_code; in php_json_encode_serializable_object()
/PHP-7.1/ext/sqlite3/
H A Dsqlite3.c325 int return_code; in PHP_METHOD() local
335 if (return_code != SQLITE_OK) { in PHP_METHOD()
516 int return_code; in PHP_METHOD() local
544 if (return_code != SQLITE_OK) { in PHP_METHOD()
560 switch (return_code) { in PHP_METHOD()
629 int return_code; in PHP_METHOD() local
654 if (return_code != SQLITE_OK) { in PHP_METHOD()
659 return_code = sqlite3_step(stmt); in PHP_METHOD()
661 switch (return_code) { in PHP_METHOD()
1536 int return_code = 0; in PHP_METHOD() local
[all …]

Completed in 14 milliseconds