Home
last modified time | relevance | path

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

/PHP-8.0/ext/standard/
H A Dproc_open.c1257 char *mode_string = NULL; in PHP_FUNCTION() local
1262 mode_string = "wb"; in PHP_FUNCTION()
1265 mode_string = "rb"; in PHP_FUNCTION()
1269 mode_string = "w"; in PHP_FUNCTION()
1272 mode_string = "r"; in PHP_FUNCTION()
1275 mode_string = "r+"; in PHP_FUNCTION()
1281 descriptors[i].mode_flags), mode_string, NULL); in PHP_FUNCTION()
1284 stream = php_stream_fopen_from_fd(descriptors[i].parentend, mode_string, NULL); in PHP_FUNCTION()
/PHP-8.0/ext/pgsql/
H A Dpgsql.c2436 char *mode_string; in PHP_FUNCTION() local
2448 "rSs", &pgsql_link, &oid_string, &mode_string, &mode_strlen) == SUCCESS) { in PHP_FUNCTION()
2457 "rls", &pgsql_link, &oid_long, &mode_string, &mode_strlen) == SUCCESS) { in PHP_FUNCTION()
2466 "Ss", &oid_string, &mode_string, &mode_strlen) == SUCCESS) { in PHP_FUNCTION()
2476 "ls", &oid_long, &mode_string, &mode_strlen) == SUCCESS) { in PHP_FUNCTION()
2499 if (strchr(mode_string, 'r') == mode_string) { in PHP_FUNCTION()
2501 if (strchr(mode_string, '+') == mode_string+1) { in PHP_FUNCTION()
2505 if (strchr(mode_string, 'w') == mode_string) { in PHP_FUNCTION()
2508 if (strchr(mode_string, '+') == mode_string+1) { in PHP_FUNCTION()

Completed in 26 milliseconds