Home
last modified time | relevance | path

Searched refs:flags (Results 226 – 250 of 458) sorted by relevance

12345678910>>...19

/PHP-5.5/ext/phar/tests/
H A D015b.phpt15 …000009780400000400080060490002000310c082031a916c41d41e2ee48a70a1200cb913b40'),'flags'=>0x00002000);
H A D016b.phpt16 $files['a'] = array('cont'=>'a','flags'=>0x00001000, 'clen' => 1);
/PHP-5.5/ext/standard/tests/array/
H A Dkrsort_variation5.phpt39 $flags = array("SORT_REGULAR" => SORT_REGULAR, "SORT_STRING" => SORT_STRING);
53 // loop through $flags array and call krsort() with all possible sort flag values
54 foreach($flags as $key => $flag){
H A Darsort_variation5.phpt39 $flags = array("SORT_REGULAR" => SORT_REGULAR, "SORT_STRING" => SORT_STRING);
53 // loop through $flags array and setting all possible flag values
54 foreach($flags as $key => $flag){
H A Dasort_variation5.phpt39 $flags = array("SORT_REGULAR" => SORT_REGULAR, "SORT_STRING" => SORT_STRING);
53 // loop through $flags array and setting all possible flag values
54 foreach($flags as $key => $flag){
H A Dksort_variation5.phpt39 $flags = array("SORT_REGULAR" => SORT_REGULAR, "SORT_STRING" => SORT_STRING);
53 // loop through $flags array and call ksort() with all possible sort flag values
54 foreach($flags as $key => $flag){
/PHP-5.5/ext/sockets/
H A Dsockets.c185 ZEND_ARG_INFO(0, flags)
192 ZEND_ARG_INFO(0, flags)
199 ZEND_ARG_INFO(0, flags)
208 ZEND_ARG_INFO(0, flags)
257 ZEND_ARG_INFO(0, flags)
263 ZEND_ARG_INFO(0, flags)
530 m = recv(sock->bsd_socket, (void *) t, 1, flags);
1567 long len, flags; local
1583 if ((retval = recv(php_sock->bsd_socket, recv_buf, len, flags)) < 1) {
1615 long len, flags; local
[all …]
/PHP-5.5/ext/pcre/tests/
H A Dmatch_flags2.phpt2 preg_match() flags
H A Dmatch_flags.phpt2 preg_match_all() flags
/PHP-5.5/ext/spl/tests/
H A DregexIterator_flags_basic.phpt14 // Test a change in flags, there's only one class constant so it has to be another int value
H A Dspl_pq_top_error_corrupt.phpt2 SPL: SplPriorityQueue: top and extract flags
H A Dspl_pq_top_basic.phpt2 SPL: SplPriorityQueue: top and extract flags
H A Diterator_045.phpt16 function __construct(Iterator $it, $flags = 0)
18 parent::__construct($it, $flags);
/PHP-5.5/ext/standard/tests/file/
H A Dglob_error_002-win32.phpt12 /* Prototype: array glob ( string $pattern [, int $flags] );
/PHP-5.5/ext/libxml/tests/
H A Dbug54440.phpt17 function url_stat($path, $flags)
/PHP-5.5/ext/phar/
H A Dstream.h30 static int phar_wrapper_stat(php_stream_wrapper *wrapper, char *url, int flags, php_stream_statbuf …
/PHP-5.5/ext/dba/
H A Ddba_db2.c83 info->dbf = pemalloc(sizeof(dba_db2_data), info->flags&DBA_PERSISTENT); in DBA_OPEN_FUNC()
96 pefree(dba, info->flags&DBA_PERSISTENT); in DBA_CLOSE_FUNC()
H A Ddba_gdbm.c64 info->dbf = pemalloc(sizeof(dba_gdbm_data), info->flags&DBA_PERSISTENT); in DBA_OPEN_FUNC()
79 pefree(dba, info->flags&DBA_PERSISTENT); in DBA_CLOSE_FUNC()
/PHP-5.5/ext/zip/lib/
H A Dzip_source_pkware.c69 zip_uint16_t em, int flags, const char *password) in zip_source_pkware() argument
78 if (flags & ZIP_CODEC_ENCODE) { in zip_source_pkware()
H A Dzip_source_deflate.c65 zip_uint16_t cm, int flags) in zip_source_deflate() argument
82 if (flags & ZIP_CODEC_ENCODE) { in zip_source_deflate()
90 ((flags & ZIP_CODEC_ENCODE) in zip_source_deflate()
/PHP-5.5/ext/standard/
H A Dcrypt_blowfish.c549 unsigned char flags) in BF_set_key() argument
590 bug = (unsigned int)flags & 1; in BF_set_key()
591 safety = ((BF_word)flags & 2) << 15; in BF_set_key()
852 unsigned int flags = flags_by_subtype[ in php_crypt_blowfish_rn() local
854 test_hash = test_hashes[flags & 1]; in php_crypt_blowfish_rn()
/PHP-5.5/ext/filter/
H A Dfilter.c361 static void php_zval_filter(zval **value, long filter, long flags, zval *options, char* charset, ze… in php_zval_filter() argument
391 filter_func.function(*value, flags, options, charset TSRMLS_CC); in php_zval_filter()
395 ((flags & FILTER_NULL_ON_FAILURE && Z_TYPE_PP(value) == IS_NULL) || in php_zval_filter()
396 (!(flags & FILTER_NULL_ON_FAILURE) && Z_TYPE_PP(value) == IS_BOOL && Z_LVAL_PP(value) == 0)) && in php_zval_filter()
497 static void php_zval_filter_recursive(zval **value, long filter, long flags, zval *options, char *c… in php_zval_filter_recursive() argument
514 php_zval_filter_recursive(element, filter, flags, options, charset, copy TSRMLS_CC); in php_zval_filter_recursive()
517 php_zval_filter(element, filter, flags, options, charset, copy TSRMLS_CC); in php_zval_filter_recursive()
521 php_zval_filter(value, filter, flags, options, charset, copy TSRMLS_CC); in php_zval_filter_recursive()
/PHP-5.5/main/
H A Dnetwork.c1056 stream->flags |= PHP_STREAM_FLAG_AVOID_BLOCKING;
1082 int flags; local
1087 flags = !block;
1088 if (ioctlsocket(socketd, FIONBIO, &flags) == SOCKET_ERROR) {
1092 flags = fcntl(socketd, F_GETFL);
1099 flags |= myflag;
1101 flags &= ~myflag;
1103 if (fcntl(socketd, F_SETFL, flags) == -1) {
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_study.c1481 if ((re->flags & PCRE_MODE) == 0) in pcre_study()
1507 (re->flags & (PCRE_FIRSTSET|PCRE_STARTLINE)) == 0) in pcre_study()
1581 extra->flags = PCRE_EXTRA_STUDY_DATA; in pcre_study()
1585 study->flags = 0; in pcre_study()
1593 study->flags |= PCRE_STUDY_MAPPED; in pcre_study()
1617 study->flags |= PCRE_STUDY_MINLEN; in pcre_study()
1636 if (study->flags == 0 && (extra->flags & PCRE_EXTRA_EXECUTABLE_JIT) == 0 && in pcre_study()
1679 if ((extra->flags & PCRE_EXTRA_EXECUTABLE_JIT) != 0 && in pcre_free_study()
/PHP-5.5/sapi/cli/
H A Dphp_http_parser.h117 unsigned char flags : 6; member

Completed in 73 milliseconds

12345678910>>...19