| /PHP_5_5/ext/phar/tests/files/ |
| H A D | pear2coverage.phar.php | 97 * Takes a source file and outputs HTML source highlighting showing the 105 protected $source; 224 * @param PEAR2\Pyrus\Developer\CodeCoverage\SourceFile $source 227 function render(SourceFile $source, $istest = false) 230 if (!$output->openUri($this->manglePath($source->name(), $istest))) { 231 throw new Exception('Cannot render ' . $source->name() . ', opening XML failed'); 239 $output->writeElement('title', 'Code Coverage for ' . $source->shortName() . ' in ' . $istest); 241 $output->writeElement('title', 'Code Coverage for ' . $source->shortName()); 255 $output->writeElement('h2', 'Code Coverage for ' . $source 102 protected $source; variable 358 $source = new SourceFile($name, $agg, $this->testPath, $this->sourcePath); variable 445 $source = new SourceFile\\PerTest($name, $agg, $testpath, $basePath, $test); variable 552 $source = '$xdebug = ' . file_get_contents($path) . ";\\n"; variable 643 protected $source; variable 653 $this->source = file($path); variable 711 function source() function 834 $source = '$xdebug = ' . file_get_contents($path) . ";\\n"; variable [all...] |
| /PHP_5_5/ext/xmlrpc/libxmlrpc/ |
| H A D | base64.c | 52 void base64_encode_xmlrpc(struct buffer_st *b, const char *source, int length) argument 80 c = *(source++); 117 void base64_decode_xmlrpc(struct buffer_st *bfr, const char *source, int length) argument 151 c = *(source++);
|
| H A D | simplestring.c | 55 * patch to make source more windows friendly, contributed by Jeff Lawson 181 * copies n characters from source to target string 184 * source - source string 193 void simplestring_addn(simplestring* target, const char* source, int add_len) { argument 194 if(target && source) { 212 memcpy(target->str + target->len, source, add_len); 227 * appends a string of unknown length from source to target 230 * source - the source strin 238 simplestring_add(simplestring* target, const char* source) argument [all...] |
| H A D | xmlrpc.c | 86 * patch to make source more windows friendly, contributed by Jeff Lawson 1122 static int isDuplicateEntry(XMLRPC_VALUE target, XMLRPC_VALUE source) { argument 1130 * int XMLRPC_AddValueToVector(XMLRPC_VALUE target, XMLRPC_VALUE source) 1135 * source The source value to append 1148 int XMLRPC_AddValueToVector(XMLRPC_VALUE target, XMLRPC_VALUE source) { argument 1149 if(target && source) { 1154 switch(source->type) { 1164 if( !(source->id.len && target->v->type == xmlrpc_vector_array) ) { 1165 if (isDuplicateEntry (target, source) [all...] |
| /PHP_5_5/ext/zip/lib/ |
| H A D | zip_add_dir.c | 8 Redistribution and use in source and binary forms, with or without 11 1. Redistributions of source code must retain the above copyright 53 struct zip_source *source; 78 if ((source=zip_source_buffer(za, NULL, 0, 0)) == NULL) { 83 ret = _zip_replace(za, -1, s ? s : name, source); 87 zip_source_free(source); 51 struct zip_source *source; local
|
| H A D | zip_replace.c | 8 Redistribution and use in source and binary forms, with or without 11 1. Redistributions of source code must retain the above copyright 43 zip_replace(struct zip *za, zip_uint64_t idx, struct zip_source *source) 45 if (idx >= za->nentry || source == NULL) { 50 if (_zip_replace(za, idx, NULL, source) == -1) 64 struct zip_source *source) 85 za->entry[idx].source = source; 41 zip_replace(struct zip *za, zip_uint64_t idx, struct zip_source *source) argument 60 _zip_replace(struct zip *za, zip_uint64_t idx, const char *name, struct zip_source *source) argument
|
| H A D | zipint.h | 11 Redistribution and use in source and binary forms, with or without 14 1. Redistributions of source code must retain the above copyright 167 /* error source for layered sources */ 215 struct zip_source *src; /* data source */ 271 struct zip_source *source; 266 struct zip_source *source; member in struct:zip_entry
|
| /PHP_5_5/ext/intl/msgformat/ |
| H A D | msgformat_helpers.cpp | 5 | This source file is subject to version 3.01 of the PHP license, | 636 U_CFUNC void umsg_parse_helper(UMessageFormat *fmt, int *count, zval ***args, UChar *source, int source_len, UErrorCode *status) argument 638 UnicodeString srcString(source, source_len);
|
| H A D | msgformat_parse.c | 5 | This source file is subject to version 3.01 of the PHP license, | 31 static void msgfmt_do_parse(MessageFormatter_object *mfo, char *source, int src_len, zval *return_value TSRMLS_DC) argument 39 intl_convert_utf8_to_utf16(&usource, &usrc_len, source, src_len, &INTL_DATA_ERROR_CODE(mfo)); 56 /* {{{ proto array MessageFormatter::parse( string $source ) 58 /* {{{ proto array msgfmt_parse( MessageFormatter $nf, string $source ) 63 char *source; local 70 &object, MessageFormatter_ce_ptr, &source, &source_len ) == FAILURE ) 81 msgfmt_do_parse(mfo, source, source_len, return_value TSRMLS_CC); 85 /* {{{ proto array MessageFormatter::formatMessage( string $locale, string $pattern, string $source ) 87 /* {{{ proto array numfmt_parse_message( string $locale, string $pattern, string $source ) 98 char *source = NULL; local [all...] |
| /PHP_5_5/Zend/ |
| H A D | zend_constants.c | 7 | This source file is subject to version 2.00 of the Zend license, | 50 void zend_copy_constants(HashTable *target, HashTable *source) argument 54 zend_hash_copy(target, source, (copy_ctor_func_t) copy_zend_constant, &tmp_constant, sizeof(zend_constant));
|
| H A D | zend_ts_hash.c | 7 | This source file is subject to version 2.00 of the Zend license, | 267 ZEND_API void zend_ts_hash_copy(TsHashTable *target, TsHashTable *source, copy_ctor_func_t pCopyConstructor, void *tmp, uint size) argument 269 begin_read(source); 271 zend_hash_copy(TS_HASH(target), TS_HASH(source), pCopyConstructor, tmp, size); 273 end_read(source); 276 ZEND_API void zend_ts_hash_copy_to_hash(HashTable *target, TsHashTable *source, copy_ctor_func_t pCopyConstructor, void *tmp, uint size) argument 278 begin_read(source); 279 zend_hash_copy(target, TS_HASH(source), pCopyConstructor, tmp, size); 280 end_read(source); 283 ZEND_API void zend_ts_hash_merge(TsHashTable *target, TsHashTable *source, copy_ctor_func_ argument 292 zend_ts_hash_merge_ex(TsHashTable *target, TsHashTable *source, copy_ctor_func_t pCopyConstructor, uint size, merge_checker_func_t pMergeSource, void *pParam) argument [all...] |
| /PHP_5_5/ext/bz2/ |
| H A D | bz2.c | 7 | This source file is subject to version 3.01 of the PHP license, | 78 ZEND_ARG_INFO(0, source) 84 ZEND_ARG_INFO(0, source) 477 /* {{{ proto string bzcompress(string source [, int blocksize100k [, int workfactor]]) 481 char *source; /* Source data to compress */ local 489 int source_len; /* Length of the source data */ 494 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|ll", &source, &source_len, &zblock_size, &zwork_factor) == FAILURE) { 516 error = BZ2_bzBuffToBuffCompress(dest, &dest_len, source, source_len, block_size, 0, work_factor); 530 /* {{{ proto string bzdecompress(string source [, int small]) 534 char *source, *des local [all...] |
| /PHP_5_5/ext/com_dotnet/ |
| H A D | com_com.c | 7 | This source file is subject to version 3.01 of the PHP license, | 351 char *source = NULL, *desc = NULL, *msg = NULL; local 357 source = php_com_olestring_to_string(e.bstrSource, &source_len, obj->code_page TSRMLS_CC); 366 source ? source : "Unknown", 370 source ? source : "Unknown", 376 if (source) { 377 efree(source); 722 /* Now hook it up to the source */ [all...] |
| /PHP_5_5/ext/dom/ |
| H A D | document.c | 7 | This source file is subject to version 3.01 of the PHP license, | 108 ZEND_ARG_OBJ_INFO(0, source, DOMNode, 0) 121 ZEND_ARG_INFO(0, source) 130 ZEND_ARG_INFO(0, source) 151 ZEND_ARG_INFO(0, source) 156 ZEND_ARG_INFO(0, source) 172 ZEND_ARG_INFO(0, source) 180 ZEND_ARG_INFO(0, source) 1410 /* {{{ proto DOMNode dom_document_adopt_node(DOMNode source); 1498 char *_dom_get_valid_file_path(char *source, cha argument 1546 dom_document_parser(zval *id, int mode, char *source, int source_len, int options TSRMLS_DC) argument 1668 char *source; local 1975 char *source = NULL, *valid_file = NULL; local 2064 char *source = NULL, *valid_file = NULL; local 2158 char *source; local [all...] |
| /PHP_5_5/ext/hash/ |
| H A D | hash_whirlpool.c | 7 | This source file is subject to version 3.01 of the PHP license, | 278 int sourcePos = 0; /* index of leftmost source unsigned char containing data (1 to 8 bits). */ 279 int sourceGap = (8 - ((int)sourceBits & 7)) & 7; /* space on source[sourcePos]. */ 281 const unsigned char *source = input; local 303 /* N.B. at least source[sourcePos] and source[sourcePos+1] contain data. */ 305 * take a byte from the source: 307 b = ((source[sourcePos] << sourceGap) & 0xff) | 308 ((source[sourcePos + 1] & 0xff) >> (8 - sourceGap)); 333 * furthermore, all data (if any is left) is in source[sourcePo [all...] |
| /PHP_5_5/ext/mcrypt/ |
| H A D | mcrypt.c | 7 | This source file is subject to version 3.01 of the PHP license, | 236 ZEND_ARG_INFO(0, source) 1371 /* {{{ proto string mcrypt_create_iv(int size, int source) 1376 long source = RANDOM; local 1380 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l|l", &size, &source) == FAILURE) { 1391 if (source == RANDOM || source == URANDOM) { 1405 fd = open(source == RANDOM ? "/dev/random" : "/dev/urandom", O_RDONLY); 1408 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Cannot open source device");
|
| /PHP_5_5/ext/mssql/ |
| H A D | php_mssql.c | 7 | This source file is subject to version 3.01 of the PHP license, | 1213 char *source = NULL; local 1228 source = (char *)dbcolsource(mssql_ptr->link,i+1); 1229 if (source) { 1230 result->fields[i].column_source = estrdup(source);
|
| /PHP_5_5/ext/tokenizer/ |
| H A D | tokenizer.c | 7 | This source file is subject to version 3.01 of the PHP license, | 42 ZEND_ARG_INFO(0, source) 178 /* {{{ proto array token_get_all(string source) 182 char *source = NULL; local 188 if (zend_parse_parameters(argc TSRMLS_CC, "s", &source, &source_len) == FAILURE) { 192 ZVAL_STRINGL(&source_z, source, source_len, 1);
|
| /PHP_5_5/ext/xmlwriter/ |
| H A D | php_xmlwriter.c | 7 | This source file is subject to version 3.01 of the PHP license, | 602 static char *_xmlwriter_get_valid_file_path(char *source, char *resolved_path, int resolved_path_len TSRMLS_DC) { argument 609 escsource = xmlURIEscapeStr((xmlChar *)source, (xmlChar *) ":"); 615 if (strncasecmp(source, "file:///", 8) == 0) { 616 if (source[sizeof("file:///") - 1] == '\0') { 622 source += 8; 624 source += 7; 626 } else if (strncasecmp(source, "file://localhost/",17) == 0) { 627 if (source[sizeof("file://localhost/") - 1] == '\0') { 634 source 1748 char *source; local [all...] |
| /PHP_5_5/ext/xmlreader/ |
| H A D | php_xmlreader.c | 7 | This source file is subject to version 3.01 of the PHP license, | 230 char *_xmlreader_get_valid_file_path(char *source, char *resolved_path, int resolved_path_len TSRMLS_DC) { argument 237 escsource = xmlURIEscapeStr((xmlChar *)source, (xmlChar *)":"); 243 if (strncasecmp(source, "file:///",8) == 0) { 246 source += 8; 248 source += 7; 250 } else if (strncasecmp(source, "file://localhost/",17) == 0) { 253 source += 17; 255 source += 16; 260 file_dest = source; 278 _xmlreader_get_relaxNG(char *source, int source_len, int type, xmlRelaxNGValidityErrorFunc error_func, xmlRelaxNGValidityWarningFunc warn_func TSRMLS_DC) argument 496 char *source; local 870 char *source, *valid_file = NULL; local 959 char *source; local 1053 char *source, *uri = NULL, *encoding = NULL; local [all...] |
| /PHP_5_5/ext/phar/ |
| H A D | stream.c | 7 | This source file is subject to version 3.01 of the PHP license, | 864 phar_entry_info new, *source; local 870 php_error_docref(NULL TSRMLS_CC, E_WARNING, "phar error: cannot rename \"%s\" to \"%s\" from extracted phar archive, source has been deleted", url_from, url_to); 880 source = entry; 886 if (FAILURE == phar_copy_entry_fp(source, entry, &error TSRMLS_CC)) { 904 php_error_docref(NULL TSRMLS_CC, E_WARNING, "phar error: cannot rename \"%s\" to \"%s\" from extracted phar archive, source does not exist", url_from, url_to);
|
| /PHP_5_5/ext/intl/converter/ |
| H A D | converter.c | 5 | This source file is subject to version 3.01 of the PHP license, | 94 string $source, string $codeUnits, 98 ZEND_ARG_INFO(0, source) 104 zval *source, *codeUnits, *error; local 107 &reason, &source, &codeUnits, &error) == FAILURE) { 116 Array $source, long $codePoint, 120 ZEND_ARG_INFO(0, source) 126 zval *source, *codePoint, *error; local 129 &reason, &source, &codePoint, &error) == FAILURE) { 227 ZVAL_STRINGL(zsource, args->source, arg [all...] |
| /PHP_5_5/ext/sockets/ |
| H A D | multicast.c | 7 | This source file is subject to version 3.01 of the PHP license, | 56 static int _php_mcast_source_op(php_socket *sock, int level, struct sockaddr *group, socklen_t group_len, struct sockaddr *source, socklen_t source_len, unsigned int if_index, enum source_op sop TSRMLS_DC); 193 source = {0}; local 206 if (php_get_address_from_array(opt_ht, "source", php_sock, &source, 216 glen, (struct sockaddr*)&source, slen, if_index TSRMLS_CC); 395 struct sockaddr *source, 399 return _php_mcast_source_op(sock, level, group, group_len, source, source_len, if_index, JOIN_SOURCE TSRMLS_CC); 407 struct sockaddr *source, 411 return _php_mcast_source_op(sock, level, group, group_len, source, source_le 390 php_mcast_join_source( php_socket *sock, int level, struct sockaddr *group, socklen_t group_len, struct sockaddr *source, socklen_t source_len, unsigned int if_index TSRMLS_DC) argument 402 php_mcast_leave_source( php_socket *sock, int level, struct sockaddr *group, socklen_t group_len, struct sockaddr *source, socklen_t source_len, unsigned int if_index TSRMLS_DC) argument 414 php_mcast_block_source( php_socket *sock, int level, struct sockaddr *group, socklen_t group_len, struct sockaddr *source, socklen_t source_len, unsigned int if_index TSRMLS_DC) argument 426 php_mcast_unblock_source( php_socket *sock, int level, struct sockaddr *group, socklen_t group_len, struct sockaddr *source, socklen_t source_len, unsigned int if_index TSRMLS_DC) argument 502 _php_mcast_source_op( php_socket *sock, int level, struct sockaddr *group, socklen_t group_len, struct sockaddr *source, socklen_t source_len, unsigned int if_index, enum source_op sop TSRMLS_DC) argument [all...] |
| /PHP_5_5/ext/opcache/ |
| H A D | zend_shared_alloc.c | 7 | This source file is subject to version 3.01 of the PHP license, | 326 int zend_shared_memdup_size(void *source, size_t size) argument 330 if (zend_hash_index_find(&xlat_table, (ulong)source, (void **)&old_p) == SUCCESS) { 334 zend_shared_alloc_register_xlat_entry(source, source); 338 void *_zend_shared_memdup(void *source, size_t size, zend_bool free_source TSRMLS_DC) argument 342 if (zend_hash_index_find(&xlat_table, (ulong)source, (void **)&old_p) == SUCCESS) { 348 memcpy(retval, source, size); 350 interned_efree((char*)source); 352 zend_shared_alloc_register_xlat_entry(source, retva [all...] |
| H A D | zend_accelerator_util_funcs.c | 7 | This source file is subject to version 3.01 of the PHP license, | 49 static void zend_hash_clone_zval(HashTable *ht, HashTable *source, int bind); 220 static void zend_hash_clone_zval(HashTable *ht, HashTable *source, int bind) argument 227 ht->nTableSize = source->nTableSize; 228 ht->nTableMask = source->nTableMask; 229 ht->nNumOfElements = source->nNumOfElements; 230 ht->nNextFreeElement = source->nNextFreeElement; 253 p = source->pListHead; 340 static void zend_hash_clone_methods(HashTable *ht, HashTable *source, zend_class_entry *old_ce, zend_class_entry *ce TSRMLS_DC) argument 348 ht->nTableSize = source 452 zend_hash_clone_prop_info(HashTable *ht, HashTable *source, zend_class_entry *old_ce, zend_class_entry *ce TSRMLS_DC) argument 777 zend_hash_unique_copy(HashTable *target, HashTable *source, unique_copy_ctor_func_t pCopyConstructor, uint size, int ignore_dups, void **fail_data, void **conflict_data) argument 816 zend_accel_function_hash_copy(HashTable *target, HashTable *source, unique_copy_ctor_func_t pCopyConstructor) argument 837 zend_accel_class_hash_copy(HashTable *target, HashTable *source, unique_copy_ctor_func_t pCopyConstructor TSRMLS_DC) argument [all...] |