Home
last modified time | relevance | path

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

/PHP-7.4/ext/standard/
H A Dproc_open.c1114 char *mode_string=NULL; in PHP_FUNCTION() local
1124 mode_string = "wb"; in PHP_FUNCTION()
1127 mode_string = "rb"; in PHP_FUNCTION()
1131 mode_string = "w"; in PHP_FUNCTION()
1134 mode_string = "r"; in PHP_FUNCTION()
1137 mode_string = "r+"; in PHP_FUNCTION()
1142 descriptors[i].mode_flags), mode_string, NULL); in PHP_FUNCTION()
1145 stream = php_stream_fopen_from_fd(descriptors[i].parentend, mode_string, NULL); in PHP_FUNCTION()
/PHP-7.4/ext/pgsql/
H A Dpgsql.c3380 char *oid_string, *end_ptr, *mode_string; local
3392 "rss", &pgsql_link, &oid_string, &oid_strlen, &mode_string, &mode_strlen) == SUCCESS) {
3402 "rls", &pgsql_link, &oid_long, &mode_string, &mode_strlen) == SUCCESS) {
3411 "ss", &oid_string, &oid_strlen, &mode_string, &mode_strlen) == SUCCESS) {
3422 "ls", &oid_long, &mode_string, &mode_strlen) == SUCCESS) {
3445 if (strchr(mode_string, 'r') == mode_string) {
3447 if (strchr(mode_string, '+') == mode_string+1) {
3451 if (strchr(mode_string, 'w') == mode_string) {
3454 if (strchr(mode_string, '+') == mode_string+1) {

Completed in 20 milliseconds