Home
last modified time | relevance | path

Searched refs:mode_string (Results 1 – 2 of 2) sorted by relevance

/PHP-7.2/ext/standard/
H A Dproc_open.c890 char *mode_string=NULL; in PHP_FUNCTION() local
900 mode_string = "wb"; in PHP_FUNCTION()
903 mode_string = "rb"; in PHP_FUNCTION()
907 mode_string = "w"; in PHP_FUNCTION()
910 mode_string = "r"; in PHP_FUNCTION()
913 mode_string = "r+"; in PHP_FUNCTION()
918 descriptors[i].mode_flags), mode_string, NULL); in PHP_FUNCTION()
921 stream = php_stream_fopen_from_fd(descriptors[i].parentend, mode_string, NULL); in PHP_FUNCTION()
/PHP-7.2/ext/pgsql/
H A Dpgsql.c3384 char *oid_string, *end_ptr, *mode_string; local
3396 "rss", &pgsql_link, &oid_string, &oid_strlen, &mode_string, &mode_strlen) == SUCCESS) {
3406 "rls", &pgsql_link, &oid_long, &mode_string, &mode_strlen) == SUCCESS) {
3415 "ss", &oid_string, &oid_strlen, &mode_string, &mode_strlen) == SUCCESS) {
3426 "ls", &oid_long, &mode_string, &mode_strlen) == SUCCESS) {
3449 if (strchr(mode_string, 'r') == mode_string) {
3451 if (strchr(mode_string, '+') == mode_string+1) {
3455 if (strchr(mode_string, 'w') == mode_string) {
3458 if (strchr(mode_string, '+') == mode_string+1) {

Completed in 29 milliseconds