Home
last modified time | relevance | path

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

/PHP-7.0/ext/standard/
H A Dproc_open.c902 char *mode_string=NULL; in PHP_FUNCTION() local
912 mode_string = "wb"; in PHP_FUNCTION()
915 mode_string = "rb"; in PHP_FUNCTION()
919 mode_string = "w"; in PHP_FUNCTION()
922 mode_string = "r"; in PHP_FUNCTION()
925 mode_string = "r+"; in PHP_FUNCTION()
930 descriptors[i].mode_flags), mode_string, NULL); in PHP_FUNCTION()
933 stream = php_stream_fopen_from_fd(descriptors[i].parentend, mode_string, NULL); in PHP_FUNCTION()
/PHP-7.0/ext/pgsql/
H A Dpgsql.c3343 char *oid_string, *end_ptr, *mode_string; local
3355 "rss", &pgsql_link, &oid_string, &oid_strlen, &mode_string, &mode_strlen) == SUCCESS) {
3365 "rls", &pgsql_link, &oid_long, &mode_string, &mode_strlen) == SUCCESS) {
3374 "ss", &oid_string, &oid_strlen, &mode_string, &mode_strlen) == SUCCESS) {
3385 "ls", &oid_long, &mode_string, &mode_strlen) == SUCCESS) {
3408 if (strchr(mode_string, 'r') == mode_string) {
3410 if (strchr(mode_string, '+') == mode_string+1) {
3414 if (strchr(mode_string, 'w') == mode_string) {
3417 if (strchr(mode_string, '+') == mode_string+1) {

Completed in 102 milliseconds