Home
last modified time | relevance | path

Searched refs:source (Results 51 – 75 of 215) sorted by relevance

123456789

/PHP-5.5/ext/soap/tests/bugs/
H A Dbug35142.phpt76 public $source;
80 …function __construct($version, $activityId, $messageId, $source, $logOnEvent=NULL, $logOffEvent=NU…
84 $this->source = $source;
92 …ENV:Body><ns1:ivrEvents version="1.0" activityId="101" messageId="12345" source="IVR"><ns1:logOffE…
101 ["source"]=>
H A Dbug36226.phpt77 public $source;
81 …function __construct($version, $activityId, $messageId, $source, $logOnEvent=NULL, $logOffEvent=NU…
85 $this->source = $source;
93 …ENV:Body><ns1:ivrEvents version="1.0" activityId="101" messageId="12345" source="IVR"><ns1:logOffE…
102 ["source"]=>
/PHP-5.5/ext/phar/tests/files/
H A Dpear2coverage.phar.php104 protected $source;
268 foreach ($source->source() as $num => $line) {
269 $coverage = $source->coverage($num);
294 $this->renderLineSummary($source->name(), $num, $source->testpath(),
555 eval($source);
645 protected $source;
655 $this->source = file($path);
659 array_unshift($this->source, '');
713 function source()
715 return $this->source;
[all …]
/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dbase64.h24 void base64_encode_xmlrpc(struct buffer_st *b, const char *source, int length);
25 void base64_decode_xmlrpc(struct buffer_st *b, const char *source, int length);
H A Dbase64.c52 void base64_encode_xmlrpc(struct buffer_st *b, const char *source, int length) in base64_encode_xmlrpc() argument
80 c = *(source++); in base64_encode_xmlrpc()
117 void base64_decode_xmlrpc(struct buffer_st *bfr, const char *source, int length) in base64_decode_xmlrpc() argument
151 c = *(source++); in base64_decode_xmlrpc()
/PHP-5.5/ext/standard/tests/file/
H A Dmove_uploaded_file_basic.phpt40 echo "Non-uploaded source file\n";
41 $source = __FILE__;
43 var_dump(move_uploaded_file($source, $destination3));
65 Non-uploaded source file
H A Dcopy_variation12-win32.phpt2 Test copy() function: usage variations - dir as source
10 /* Prototype: bool copy ( string $source, string $dest );
11 Description: Makes a copy of the file source to dest.
H A Dcopy_variation12.phpt2 Test copy() function: usage variations - dir as source (Bug #42111)
11 /* Prototype: bool copy ( string $source, string $dest );
12 Description: Makes a copy of the file source to dest.
H A Dcopy_variation15.phpt19 /* Prototype: bool copy ( string $source, string $dest );
20 Description: Makes a copy of the file source to dest.
45 var_dump( filesize($file) ); //size of source
H A Dcopy_variation9.phpt20 /* Prototype: bool copy ( string $source, string $dest );
21 Description: Makes a copy of the file source to dest.
25 /* Test copy(): Trying to copy source file to destination file with and without write permissions */
/PHP-5.5/ext/spl/tests/
H A Dbug62672.phpt10 public function __construct(Iterator $source)
12 $this->_varA = $source;
H A Dbug54971.phpt10 $source = <<<XML
19 $doc->loadXML($source);
/PHP-5.5/ext/tokenizer/
H A Dtokenizer.c42 ZEND_ARG_INFO(0, source)
182 char *source = NULL; in PHP_FUNCTION() local
188 if (zend_parse_parameters(argc TSRMLS_CC, "s", &source, &source_len) == FAILURE) { in PHP_FUNCTION()
192 ZVAL_STRINGL(&source_z, source, source_len, 1); in PHP_FUNCTION()
/PHP-5.5/ext/tokenizer/tests/
H A Dtoken_get_all_variation10.phpt7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP languange tokens
13 * Using different types of constants in 'source' string to check them for token
21 echo "*** Testing token_get_all() : 'source' string with different constants ***\n";
26 $source = array (
43 for($count = 0; $count < count($source); $count++) {
45 var_dump( token_get_all($source[$count]));
51 *** Testing token_get_all() : 'source' string with different constants ***
H A Dtoken_get_all_variation15.phpt2 Test token_get_all() function : usage variations - heredoc string for 'source'
9 /* Prototype : array token_get_all(string $source)
10 * Description: splits the given source into an array of PHP languange tokens
15 …* Testing token_get_all() with heredoc 'source' string with all different types of token and hered…
20 echo "*** Testing token_get_all() : with heredoc source string ***\n";
22 $source = <<<EOT
47 var_dump( token_get_all($source));
52 *** Testing token_get_all() : with heredoc source string ***
H A Dtoken_get_all_variation4.phpt7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP languange tokens
13 * Passing 'source' argument with different comparison operators to test them for tokens
19 echo "*** Testing token_get_all() : 'source' string with different comparison operators ***\n";
22 $source = '<?php
34 var_dump( token_get_all($source));
39 *** Testing token_get_all() : 'source' string with different comparison operators ***
H A Dtoken_get_all_variation11.phpt7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP languange tokens
29 $source = '<?php
40 var_dump( token_get_all($source));
45 $source = "<?php while(true) {
53 var_dump( token_get_all($source));
58 $source = '<?php for($count=0; $count < 5; $count++) {
65 var_dump( token_get_all($source));
70 $source = '<?php switch($var)
74 var_dump( token_get_all($source));
H A Dtoken_get_all_variation5.phpt7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP languange tokens
13 * Passing 'source' argument with different assignment operators to test them for tokens
21 echo "*** Testing token_get_all() : 'source' string with different assignment operators ***\n";
24 $source = '<?php
38 var_dump( token_get_all($source));
43 *** Testing token_get_all() : 'source' string with different assignment operators ***
H A Dtoken_get_all_variation8.phpt7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP languange tokens
13 * Passing 'source' argument with different type casting operators to test them for token
19 echo "*** Testing token_get_all() : 'source' string with different type casting operators ***\n";
22 $source = '<?php
33 var_dump( token_get_all($source));
38 *** Testing token_get_all() : 'source' string with different type casting operators ***
/PHP-5.5/ext/dom/
H A Ddocument.c121 ZEND_ARG_INFO(0, source)
130 ZEND_ARG_INFO(0, source)
1513 if (strncasecmp(source, "file://",7) == 0 && ':' == source[8]) { in _dom_get_valid_file_path()
1515 source += 7; in _dom_get_valid_file_path()
1521 source += 8; in _dom_get_valid_file_path()
1523 source += 7; in _dom_get_valid_file_path()
1528 source += 17; in _dom_get_valid_file_path()
1530 source += 16; in _dom_get_valid_file_path()
1535 file_dest = source; in _dom_get_valid_file_path()
1678 char *source; in dom_parse_document() local
[all …]
/PHP-5.5/ext/opcache/
H A Dzend_shared_alloc.c326 int zend_shared_memdup_size(void *source, size_t size) in zend_shared_memdup_size() argument
330 if (zend_hash_index_find(&xlat_table, (ulong)source, (void **)&old_p) == SUCCESS) { in zend_shared_memdup_size()
334 zend_shared_alloc_register_xlat_entry(source, source); in zend_shared_memdup_size()
338 void *_zend_shared_memdup(void *source, size_t size, zend_bool free_source TSRMLS_DC) in _zend_shared_memdup() argument
342 if (zend_hash_index_find(&xlat_table, (ulong)source, (void **)&old_p) == SUCCESS) { in _zend_shared_memdup()
348 memcpy(retval, source, size); in _zend_shared_memdup()
349 zend_shared_alloc_register_xlat_entry(source, retval); in _zend_shared_memdup()
351 interned_efree((char*)source); in _zend_shared_memdup()
H A Dzend_accelerator_util_funcs.c274 ht->nTableSize = source->nTableSize;
275 ht->nTableMask = source->nTableMask;
276 ht->nNumOfElements = source->nNumOfElements;
300 p = source->pListHead;
395 ht->nTableSize = source->nTableSize;
396 ht->nTableMask = source->nTableMask;
420 p = source->pListHead;
506 ht->nTableSize = source->nTableSize;
507 ht->nTableMask = source->nTableMask;
531 p = source->pListHead;
[all …]
/PHP-5.5/ext/sockets/
H A Dmulticast.c201 source = {0}; in php_do_mcast_opt() local
214 if (php_get_address_from_array(opt_ht, "source", php_sock, &source, in php_do_mcast_opt()
224 glen, (struct sockaddr*)&source, slen, if_index TSRMLS_CC); in php_do_mcast_opt()
403 struct sockaddr *source, in php_mcast_join_source() argument
407 …return _php_mcast_source_op(sock, level, group, group_len, source, source_len, if_index, JOIN_SOUR… in php_mcast_join_source()
415 struct sockaddr *source, in php_mcast_leave_source() argument
427 struct sockaddr *source, in php_mcast_block_source() argument
439 struct sockaddr *source, in php_mcast_unblock_source() argument
515 struct sockaddr *source, in _php_mcast_source_op() argument
525 memcpy(&gsreq.gsr_source, source, source_len); in _php_mcast_source_op()
[all …]
/PHP-5.5/sapi/pi3web/
H A DREADME6 If you distribute this software bundled with the PHP software in source
10 You should have checked out and built the PHP5 source package from the
11 PHP CVS tree into the Pi3Web source directory called 'PHP5' first. Then
/PHP-5.5/sapi/isapi/stresstest/
H A Dnotes.txt7 2: run the php test scripts bundled with the source code
41 2: Run the php test scripts bundled with the source code
47 Run: stresstest T c:\php5-source

Completed in 67 milliseconds

123456789