Home
last modified time | relevance | path

Searched refs:mode (Results 251 – 275 of 707) sorted by relevance

1...<<11121314151617181920>>...29

/PHP-5.3/ext/mcrypt/tests/
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_rijndael128_128BitKey.phpt11 /* Prototype : string mcrypt_encrypt(string cipher, string key, string data, string mode, string i…
16 …/* Prototype : string mcrypt_decrypt(string cipher, string key, string data, string mode, string …
21 /* Prototype : string mcrypt_cbc(int cipher, string key, string data, int mode, string iv)
30 $mode = MCRYPT_MODE_CBC;
64 $res = mcrypt_cbc($cipher, $key, $data, $mode, $iv);
/PHP-5.3/ext/standard/tests/file/
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 --
H A Dfpassthru_variation.phpt60 echo "\n--- Testing with binary mode file ---\n";
61 /* Opening the file in binary read mode */
111 --- Testing with binary mode file ---
H A Dfgets_variation6-win32.phpt30 echo "\n-- Testing fgets() with file opened using mode $file_mode --\n";
67 -- Testing fgets() with file opened using mode w+ --
101 -- Testing fgets() with file opened using mode w+b --
135 -- Testing fgets() with file opened using mode w+t --
169 -- Testing fgets() with file opened using mode a+ --
203 -- Testing fgets() with file opened using mode a+b --
237 -- Testing fgets() with file opened using mode a+t --
271 -- Testing fgets() with file opened using mode x+ --
305 -- Testing fgets() with file opened using mode x+b --
339 -- Testing fgets() with file opened using mode x+t --
H A Dfgets_variation6.phpt30 echo "\n-- Testing fgets() with file opened using mode $file_mode --\n";
67 -- Testing fgets() with file opened using mode w+ --
101 -- Testing fgets() with file opened using mode w+b --
135 -- Testing fgets() with file opened using mode w+t --
169 -- Testing fgets() with file opened using mode a+ --
203 -- Testing fgets() with file opened using mode a+b --
237 -- Testing fgets() with file opened using mode a+t --
271 -- Testing fgets() with file opened using mode x+ --
305 -- Testing fgets() with file opened using mode x+b --
339 -- Testing fgets() with file opened using mode x+t --
H A Dfscanf_variation52.phpt30 foreach($modes as $mode) {
40 // opening file in $mode mode
41 $file_handle = fopen($filename, $mode);
/PHP-5.3/ext/mysqlnd/
H A Dmysqlnd_debug.c573 switch (mode[i]) { in MYSQLND_METHOD()
579 if (mode[i] == 'a' || mode[i] == 'A') { in MYSQLND_METHOD()
585 if (i+4 < mode_len && mode[i+3] == ':' && (mode[i+4] == '\\' || mode[i+5] == '/')) { in MYSQLND_METHOD()
590 if (mode[j] == ':') { in MYSQLND_METHOD()
618 if (mode[j] == ':') { in MYSQLND_METHOD()
625 if (mode[j] == ',' || mode[j] == ':') { in MYSQLND_METHOD()
636 if (mode[j] == ':') { in MYSQLND_METHOD()
659 if (mode[i] == ':') { in MYSQLND_METHOD()
684 if (mode[i+1] == ',') { in MYSQLND_METHOD()
687 if (mode[j] == ':') { in MYSQLND_METHOD()
[all …]
/PHP-5.3/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_autocommit.phpt22 printf("[002] Server autocommit mode should be on, got '%s'\n", var_export($row['_autocommit']));
30 printf("[004] Server autocommit mode should be off, got '%s'\n", var_export($row['_autocommit']));
34 printf("[005] Cannot turn on server autocommit mode, %s\n", var_export($db->errorInfo(), true));
41 printf("[007] Cannot turn off server autocommit mode, %s\n", var_export($db->errorInfo(), true));
48 printf("[009] Server autocommit mode should be on, got '%s'\n", var_export($row['_autocommit']));
/PHP-5.3/ext/zip/
H A Dphp_zip.h84 php_stream *php_stream_zip_opener(php_stream_wrapper *wrapper, char *path, char *mode, int options,…
85 php_stream *php_stream_zip_open(char *filename, char *path, char *mode STREAMS_DC TSRMLS_DC);
/PHP-5.3/ext/standard/tests/array/
H A Dcount_variation2.phpt2 Test count() function : usage variations - Pass different data types as $mode arg
5 /* Prototype : int count(mixed $var [, int $mode])
11 * Pass different data types as $mode argument to count() to test behaviour
39 // unexpected values to be passed to $mode argument
/PHP-5.3/ext/zlib/tests/
H A Dzlib_wrapper_meta_data_basic.phpt30 ["mode"]=>
50 ["mode"]=>
/PHP-5.3/ext/posix/
H A Dposix.c163 ZEND_ARG_INFO(0, mode)
170 ZEND_ARG_INFO(0, mode)
178 ZEND_ARG_INFO(0, mode)
838 long mode; in PHP_FUNCTION() local
854 result = mkfifo(path, mode); in PHP_FUNCTION()
872 long mode; in PHP_FUNCTION() local
880 &mode, &major, &minor) == FAILURE) { in PHP_FUNCTION()
893 if ((mode & S_IFCHR) || (mode & S_IFBLK)) { in PHP_FUNCTION()
911 result = mknod(path, mode, php_dev); in PHP_FUNCTION()
960 long mode = 0; in PHP_FUNCTION() local
[all …]
/PHP-5.3/ext/gd/libgd/
H A Dgd_pixelate.c3 int gdImagePixelate(gdImagePtr im, int block_size, const unsigned int mode) in gdImagePixelate() argument
12 switch (mode) { in gdImagePixelate()
/PHP-5.3/sapi/caudium/
H A DTODO22 - change cwd in single threaded mode
23 There will be no single threaded mode support. The Caudium module
/PHP-5.3/ext/pdo_oci/tests/
H A Dpdo_oci_attr_case.phpt24 function do_query2($dbh, $mode)
26 echo "Mode desired is $mode\n";
27 $s = $dbh->prepare("select dummy from dual", array(PDO::ATTR_CASE, $mode));
/PHP-5.3/ext/spl/internal/
H A Drecursivetreeiterator.inc31 * @param mode mode passed to RecursiveIteratoIterator (parent)
33 …_flags = self::BYPASS_KEY, $cit_flags = CachingIterator::CATCH_GET_CHILD, $mode = self::SELF_FIRST)
35 parent::__construct(new RecursiveCachingIterator($it, $cit_flags), $mode, $rit_flags);
/PHP-5.3/sapi/fpm/fpm/
H A Dfpm_php.c26 …r(char *name, int name_length, char *new_value, int new_value_length, int mode, int stage TSRMLS_D… in fpm_php_zend_ini_alter_master() argument
42 ini_entry->modifiable = mode; in fpm_php_zend_ini_alter_master()
80 int fpm_php_apply_defines_ex(struct key_value_s *kv, int mode) /* {{{ */ in fpm_php_apply_defines_ex() argument
95 …if (fpm_php_zend_ini_alter_master(name, name_len+1, value, value_len, mode, PHP_INI_STAGE_ACTIVATE… in fpm_php_apply_defines_ex()
/PHP-5.3/ext/standard/tests/streams/
H A Dstream_get_meta_data_file_variation4.phpt35 ["mode"]=>
57 ["mode"]=>
H A Dstream_get_meta_data_file_variation5.phpt40 ["mode"]=>
63 ["mode"]=>
/PHP-5.3/ext/zip/tests/
H A Dstream_meta_data.phpt40 ["mode"]=>
60 ["mode"]=>
/PHP-5.3/sapi/litespeed/
H A Dconfig.m422 …BUILD_LITESPEED="\$(LIBTOOL) --mode=link \$(CC) -export-dynamic \$(CFLAGS_CLEAN) \$(EXTRA_CFLAGS) …
25 …BUILD_LITESPEED="\$(LIBTOOL) --mode=link \$(CC) -export-dynamic \$(CFLAGS_CLEAN) \$(EXTRA_CFLAGS) …
/PHP-5.3/TSRM/
H A Dtsrm_win32.h33 unsigned short mode; member
101 TSRM_API int tsrm_win32_access(const char *pathname, int mode);
/PHP-5.3/ext/dba/
H A Dphp_dba.h37 int mode; /* LOCK_EX,LOCK_SH */ member
44 dba_mode_t mode; member
100 …int dba_update_##x(dba_info *info, char *key, int keylen, char *val, int vallen, int mode TSRMLS_D…
/PHP-5.3/ext/dba/tests/
H A Ddba011.phpt33 Warning: dba_open(%stest0.dbm,q): Illegal DBA mode in %sdba011.php on line %d
36 Warning: dba_open(%stest0.dbm,nq): Illegal DBA mode in %sdba011.php on line %d

Completed in 52 milliseconds

1...<<11121314151617181920>>...29