Home
last modified time | relevance | path

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

12345678910

/PHP-7.2/ext/sockets/
H A Dmulticast.h90 struct sockaddr *source,
99 struct sockaddr *source,
108 struct sockaddr *source,
117 struct sockaddr *source,
/PHP-7.2/ext/zip/lib/
H A Dzip_source_win32utf8.c56 zip_source_t *source; in zip_source_file_create() local
75 source = zip_source_win32w_create(wfname, start, length, error); in zip_source_file_create()
78 return source; in zip_source_file_create()
/PHP-7.2/ext/standard/tests/file/
H A Dcopy_variation7.phpt10 /* Prototype: bool copy ( string $source, string $dest );
11 Description: Makes a copy of the file source to dest.
31 echo "Size of source files => \n";
37 echo "-- Now applying copy() on source link to create copies --\n";
67 Size of source files =>
70 -- Now applying copy() on source link to create copies --
H A Dcopy_basic.phpt5 /* Prototype: bool copy ( string $source, string $dest );
6 * Description: Makes a copy of the file source to dest.
10 echo "*** Testing copy() function: to copy file from source to destination --\n";
44 *** Testing copy() function: to copy file from source to destination --
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)
10 /* Prototype: bool copy ( string $source, string $dest );
11 Description: Makes a copy of the file source to dest.
/PHP-7.2/ext/xmlreader/
H A Dphp_xmlreader.c242 source += 8; in _xmlreader_get_valid_file_path()
244 source += 7; in _xmlreader_get_valid_file_path()
249 source += 17; in _xmlreader_get_valid_file_path()
251 source += 16; in _xmlreader_get_valid_file_path()
256 file_dest = source; in _xmlreader_get_valid_file_path()
259 if (!VCWD_REALPATH(source, resolved_path) && !expand_filepath(source, resolved_path)) { in _xmlreader_get_valid_file_path()
488 char *source; in php_xmlreader_set_relaxng_schema() local
503 if (source) { in php_xmlreader_set_relaxng_schema()
947 char *source; in PHP_METHOD() local
1254 ZEND_ARG_INFO(0, source)
[all …]
/PHP-7.2/ext/soap/tests/bugs/
H A Dbug36226-2.phpt79 public $source;
83 …function __construct($version, $activityId, $messageId, $source, $logOnEvent=NULL, $logOffEvent=NU…
87 $this->source = $source;
96 …ENV:Body><ns1:ivrEvents version="1.0" activityId="101" messageId="12345" source="IVR"><ns1:logOffE…
105 ["source"]=>
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-7.2/ext/tokenizer/tests/
H A Dtoken_get_all_variation1.phpt2 Test token_get_all() function : usage variations - unexpected values for 'source' argument
7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP languange tokens
13 * Passing different scalar/non-scalar values in place of 'source' argument
17 echo "*** Testing token_get_all() : unexpected values for 'source' argument ***\n";
35 // different scalar/nonscalar values for 'source'
94 *** Testing token_get_all() : unexpected values for 'source' argument ***
H A Dtoken_get_all_variation9.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 style of comments
19 echo "*** Testing token_get_all() : 'source' string with different comments ***\n";
23 $source = '<?php
42 var_dump( token_get_all($source));
47 *** Testing token_get_all() : 'source' string with different comments ***
H A Dtoken_get_all_variation3.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 logical operators to test them for tokens
21 echo "*** Testing token_get_all() : 'source' string with different logical operators ***\n";
24 $source = array (
31 for($count = 0; $count < count($source); $count++) {
33 var_dump( token_get_all($source[$count]));
39 *** Testing token_get_all() : 'source' string with different logical operators ***
H A Dtoken_get_all_variation12.phpt7 /* Prototype : array token_get_all(string $source)
8 * Description: splits the given source into an array of PHP language tokens
26 $source = "<?php
29 var_dump( token_get_all($source));
33 $source = '<?php
42 var_dump( token_get_all($source));
46 $source = '<?php
50 var_dump( token_get_all($source));
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 ***
/PHP-7.2/Zend/tests/
H A Dbug54585.phpt7 function testing($source) {
8 unset($source[$cos]);
/PHP-7.2/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-7.2/ext/dom/
H A Ddocument.c121 ZEND_ARG_INFO(0, source)
130 ZEND_ARG_INFO(0, source)
1313 if (strncasecmp(source, "file://",7) == 0 && ':' == source[8]) { in _dom_get_valid_file_path()
1315 source += 7; in _dom_get_valid_file_path()
1321 source += 8; in _dom_get_valid_file_path()
1323 source += 7; in _dom_get_valid_file_path()
1328 source += 17; in _dom_get_valid_file_path()
1330 source += 16; in _dom_get_valid_file_path()
1335 file_dest = source; in _dom_get_valid_file_path()
1478 char *source; in dom_parse_document() local
[all …]
/PHP-7.2/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.c56 void base64_encode_xmlrpc(struct buffer_st *b, const char *source, int length) in base64_encode_xmlrpc() argument
84 c = *(source++); in base64_encode_xmlrpc()
121 void base64_decode_xmlrpc(struct buffer_st *bfr, const char *source, int length) in base64_decode_xmlrpc() argument
155 c = *(source++); in base64_decode_xmlrpc()
/PHP-7.2/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-7.2/ext/opcache/
H A Dzend_shared_alloc.c337 int zend_shared_memdup_size(void *source, size_t size) in zend_shared_memdup_size() argument
341 if ((old_p = zend_hash_index_find_ptr(&ZCG(xlat_table), (zend_ulong)source)) != NULL) { in zend_shared_memdup_size()
345 zend_shared_alloc_register_xlat_entry(source, source); in zend_shared_memdup_size()
349 void *_zend_shared_memdup(void *source, size_t size, zend_bool free_source) in _zend_shared_memdup() argument
353 if ((old_p = zend_hash_index_find_ptr(&ZCG(xlat_table), (zend_ulong)source)) != NULL) { in _zend_shared_memdup()
359 memcpy(retval, source, size); in _zend_shared_memdup()
360 zend_shared_alloc_register_xlat_entry(source, retval); in _zend_shared_memdup()
362 efree(source); in _zend_shared_memdup()

Completed in 58 milliseconds

12345678910