Home
last modified time | relevance | path

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

/PHP-7.3/ext/standard/
H A Dproc_open.c889 char *mode_string=NULL; in PHP_FUNCTION() local
899 mode_string = "wb"; in PHP_FUNCTION()
902 mode_string = "rb"; in PHP_FUNCTION()
906 mode_string = "w"; in PHP_FUNCTION()
909 mode_string = "r"; in PHP_FUNCTION()
912 mode_string = "r+"; in PHP_FUNCTION()
917 descriptors[i].mode_flags), mode_string, NULL); in PHP_FUNCTION()
920 stream = php_stream_fopen_from_fd(descriptors[i].parentend, mode_string, NULL); in PHP_FUNCTION()
/PHP-7.3/ext/pgsql/
H A Dpgsql.c3381 char *oid_string, *end_ptr, *mode_string; local
3393 "rss", &pgsql_link, &oid_string, &oid_strlen, &mode_string, &mode_strlen) == SUCCESS) {
3403 "rls", &pgsql_link, &oid_long, &mode_string, &mode_strlen) == SUCCESS) {
3412 "ss", &oid_string, &oid_strlen, &mode_string, &mode_strlen) == SUCCESS) {
3423 "ls", &oid_long, &mode_string, &mode_strlen) == SUCCESS) {
3446 if (strchr(mode_string, 'r') == mode_string) {
3448 if (strchr(mode_string, '+') == mode_string+1) {
3452 if (strchr(mode_string, 'w') == mode_string) {
3455 if (strchr(mode_string, '+') == mode_string+1) {

Completed in 28 milliseconds