Home
last modified time | relevance | path

Searched refs:mode (Results 226 – 250 of 728) sorted by relevance

12345678910>>...30

/PHP-5.4/ext/standard/tests/streams/
H A Dstream_get_meta_data_socket_variation3.phpt37 ["mode"]=>
57 ["mode"]=>
77 ["mode"]=>
H A Dstream_get_meta_data_dir_basic.phpt20 ["mode"]=>
38 ["mode"]=>
H A Dstream_get_meta_data_socket_variation4.phpt42 ["mode"]=>
61 ["mode"]=>
80 ["mode"]=>
/PHP-5.4/ext/standard/
H A Dinfo.c575 if (mode == 's') { in php_get_uname()
577 } else if (mode == 'r') { in php_get_uname()
580 } else if (mode == 'n') { in php_get_uname()
582 } else if (mode == 'v') { in php_get_uname()
594 } else if (mode == 'm') { in php_get_uname()
626 if (mode == 's') { in php_get_uname()
628 } else if (mode == 'r') { in php_get_uname()
632 } else if (mode == 'n') { in php_get_uname()
634 } else if (mode == 'v') { in php_get_uname()
649 if (mode == 's') { in php_get_uname()
[all …]
/PHP-5.4/ext/mcrypt/tests/
H A Dmcrypt_cbc_3des_encrypt.phpt11 /* Prototype : string mcrypt_cbc(int cipher, string key, string data, int mode, string iv)
22 $mode = MCRYPT_ENCRYPT;
41 var_dump(bin2hex(mcrypt_cbc($cipher, $key, $data, $mode, $iv)));
48 var_dump(bin2hex(mcrypt_cbc($cipher, $key, $data, $mode, $iv)));
H A Dmcrypt_ecb_3des_decrypt.phpt11 /* Prototype : string mcrypt_ecb(int cipher, string key, string data, int mode, string iv)
22 $mode = MCRYPT_DECRYPT;
53 special_var_dump(mcrypt_ecb($cipher, $keys[$i], base64_decode($data1[$i]), $mode, $iv));
60 special_var_dump(mcrypt_ecb($cipher, $key, base64_decode($data2[$i]), $mode, $ivs[$i]));
H A Dmcrypt_decrypt_3des_cbc.phpt11 /* Prototype : string mcrypt_decrypt(string cipher, string key, string data, string mode, string i…
22 $mode = MCRYPT_MODE_CBC;
53 special_var_dump(mcrypt_decrypt($cipher, $keys[$i], base64_decode($data1[$i]), $mode, $iv));
60 special_var_dump(mcrypt_decrypt($cipher, $key, base64_decode($data2[$i]), $mode, $ivs[$i]));
H A Dmcrypt_encrypt_3des_cbc.phpt11 /* Prototype : string mcrypt_encrypt(string cipher, string key, string data, string mode, string i…
27 $mode = MCRYPT_MODE_CBC;
49 var_dump(bin2hex(mcrypt_encrypt($cipher, $key, $data, $mode, $iv)));
56 var_dump(bin2hex(mcrypt_encrypt($cipher, $key, $data, $mode, $iv)));
H A Dmcrypt_cbc_3des_decrypt.phpt11 /* Prototype : string mcrypt_cbc(int cipher, string key, string data, int mode, string iv)
22 $mode = MCRYPT_DECRYPT;
54 special_var_dump(mcrypt_cbc($cipher, $keys[$i], base64_decode($data1[$i]), $mode, $iv));
61 special_var_dump(mcrypt_cbc($cipher, $key, base64_decode($data2[$i]), $mode, $ivs[$i]));
H A Dmcrypt_decrypt_error.phpt11 /* Prototype : string mcrypt_decrypt(string cipher, string key, string data, string mode, string i…
25 $mode = 'string_val';
28 var_dump( mcrypt_decrypt($cipher, $key, $data, $mode, $iv, $extra_arg) );
H A Dmcrypt_cbc_error.phpt11 /* Prototype : string mcrypt_cbc(int cipher, string key, string data, int mode, string iv)
25 $mode = 10;
28 var_dump( mcrypt_cbc($cipher, $key, $data, $mode, $iv, $extra_arg) );
H A Dmcrypt_ecb_error.phpt11 /* Prototype : string mcrypt_ecb(int cipher, string key, string data, int mode, string iv)
25 $mode = 10;
28 var_dump( mcrypt_ecb($cipher, $key, $data, $mode, $iv, $extra_arg) );
H A Dmcrypt_encrypt_error.phpt11 /* Prototype : string mcrypt_encrypt(string cipher, string key, string data, string mode, string i…
25 $mode = 'string_val';
28 var_dump( mcrypt_encrypt($cipher, $key, $data, $mode, $iv, $extra_arg) );
/PHP-5.4/ext/zip/
H A Dzip_stream.c188 php_stream *php_stream_zip_open(char *filename, char *path, char *mode STREAMS_DC TSRMLS_DC) in php_stream_zip_open()
197 if (strncmp(mode,"r", strlen("r")) != 0) { in php_stream_zip_open()
220 stream = php_stream_alloc(&php_stream_zipio_ops, self, NULL, mode); in php_stream_zip_open()
239 char *mode, in php_stream_zip_opener() argument
274 if (path_len >= MAXPATHLEN || mode[0] != 'r') { in php_stream_zip_opener()
299 stream = php_stream_alloc(&php_stream_zipio_ops, self, NULL, mode); in php_stream_zip_opener()
/PHP-5.4/ext/zlib/tests/
H A Dgzopen_error.phpt11 /* Prototype : resource gzopen(string filename, string mode [, int use_include_path])
23 $mode = 'string_val';
26 var_dump( gzopen($filename, $mode, $use_include_path, $extra_arg) );
/PHP-5.4/ext/bz2/tests/
H A D001.phpt25 Warning: bzopen(): '' is not a valid mode for bzopen(). Only 'w' and 'r' are supported. in %s on li…
34 Warning: bzopen(): 'x' is not a valid mode for bzopen(). Only 'w' and 'r' are supported. in %s on l…
37 Warning: bzopen(): 'rw' is not a valid mode for bzopen(). Only 'w' and 'r' are supported. in %s on …
/PHP-5.4/ext/standard/tests/file/
H A Dfgetss_variation4.phpt39 echo "\n-- Testing fgetss() with file opened using $file_modes[$mode_counter] mode --\n";
79 -- Testing fgetss() with file opened using r mode --
94 -- Testing fgetss() with file opened using rb mode --
109 -- Testing fgetss() with file opened using rt mode --
124 -- Testing fgetss() with file opened using r+ mode --
139 -- Testing fgetss() with file opened using r+b mode --
154 -- Testing fgetss() with file opened using r+t mode --
H A Duserwrapper.phpt14 function mkdir($directory, $mode, $options) {
15 …printf("Making directory: %s as %o%s\n", $directory, $mode, $options & STREAM_MKDIR_RECURSIVE ? " …
27 return array('dev'=>1, 'ino'=>2, 'mode'=>0644, 'nlink'=>3,
69 [mode] => 420
H A Dfgets_variation5.phpt24 echo "\n-- Testing fgets() with file opened using mode $file_mode --\n";
60 -- Testing fgets() with file opened using mode w+ --
87 -- Testing fgets() with file opened using mode w+b --
114 -- Testing fgets() with file opened using mode w+t --
141 -- Testing fgets() with file opened using mode a+ --
168 -- Testing fgets() with file opened using mode a+b --
195 -- Testing fgets() with file opened using mode a+t --
222 -- Testing fgets() with file opened using mode x+ --
249 -- Testing fgets() with file opened using mode x+b --
276 -- Testing fgets() with file opened using mode x+t --
/PHP-5.4/ext/standard/tests/array/
H A Darray_search_variation4.phpt31 //false in strict mode
36 // false in strict mode
41 // false in stric mode
54 var_dump( array_search('123abc', array(123), TRUE) ); // false in strict mode
H A Din_array_variation4.phpt34 //false in strict mode
39 // false in strict mode
44 // false in stric mode
57 var_dump( in_array('123abc', array(123), TRUE) ); // false in strict mode
/PHP-5.4/sapi/cli/
H A Dconfig.m422 …,1,1) != \".\")) { print \$\$3 } }' | sort -u >> php.sym && \$(LIBTOOL) --mode=link \$(CC) -export…
24 …,1,1) != \".\")) { print \$\$3 } }' | sort -u >> php.sym && \$(LIBTOOL) --mode=link \$(CC) -export…
31 …BUILD_CLI="\$(LIBTOOL) --mode=link \$(CC) -export-dynamic \$(CFLAGS_CLEAN) \$(EXTRA_CFLAGS) \$(EXT…
34 …BUILD_CLI="\$(LIBTOOL) --mode=link \$(CC) -export-dynamic \$(CFLAGS_CLEAN) \$(EXTRA_CFLAGS) \$(EXT…
/PHP-5.4/ext/sysvmsg/tests/
H A D004.phpt11 echo "Set mode:\n";
12 $arr = array('msg_perm.mode' => 0600);
43 Set mode:
/PHP-5.4/ext/gd/libgd/
H A Dgd_compat.h52 int gdImagePixelate(gdImagePtr im, int block_size, const unsigned int mode);
55 int gdImagePixelate(gdImagePtr im, int block_size, const unsigned int mode);
/PHP-5.4/main/streams/
H A Dphp_streams_int.h59 #define S_ISREG(mode) (((mode)&S_IFMT) == S_IFREG) argument

Completed in 36 milliseconds

12345678910>>...30