Home
last modified time | relevance | path

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

/PHP-5.6/ext/standard/
H A Dproc_open.c935 char *mode_string=NULL; in PHP_FUNCTION() local
945 mode_string = "wb"; in PHP_FUNCTION()
948 mode_string = "rb"; in PHP_FUNCTION()
952 mode_string = "w"; in PHP_FUNCTION()
955 mode_string = "r"; in PHP_FUNCTION()
958 mode_string = "r+"; in PHP_FUNCTION()
963 descriptors[i].mode_flags), mode_string, NULL); in PHP_FUNCTION()
965 stream = php_stream_fopen_from_fd(descriptors[i].parentend, mode_string, NULL); in PHP_FUNCTION()
/PHP-5.6/ext/pgsql/
H A Dpgsql.c3323 char *oid_string, *end_ptr, *mode_string; local
3334 "rss", &pgsql_link, &oid_string, &oid_strlen, &mode_string, &mode_strlen) == SUCCESS) {
3343 "rls", &pgsql_link, &oid_long, &mode_string, &mode_strlen) == SUCCESS) {
3351 "ss", &oid_string, &oid_strlen, &mode_string, &mode_strlen) == SUCCESS) {
3362 "ls", &oid_long, &mode_string, &mode_strlen) == SUCCESS) {
3386 if (strchr(mode_string, 'r') == mode_string) {
3388 if (strchr(mode_string, '+') == mode_string+1) {
3392 if (strchr(mode_string, 'w') == mode_string) {
3395 if (strchr(mode_string, '+') == mode_string+1) {

Completed in 35 milliseconds