| /PHP_TRUNK/ext/phar/tests/files/ |
| H A D | pear2coverage.phar.php | 110 $output = new \XMLWriter; 111 if (!$output->openUri('php://output')) { 112 throw new Exception('Cannot open output - this should never happen'); 114 $output->startElement('html'); 115 $output->startElement('head'); 116 $output->writeElement('title', 'Enter a path to the database'); 117 $output->endElement(); 118 $output->startElement('body'); 119 $output 107 $output = new \\XMLWriter; variable 177 $output = new \\XMLWriter; variable 226 $output = new \\XMLWriter; variable 310 $output = new \\XMLWriter; variable 384 $output = new \\XMLWriter; variable 424 $output = new \\XMLWriter; variable [all...] |
| /PHP_TRUNK/ext/standard/ |
| H A D | crypt_blowfish.c | 650 char *output, int size, 664 BF_word output[6]; member in union:__anon442::__anon443 767 data.binary.output[i] = L; 768 data.binary.output[i + 1] = R; 771 memcpy(output, setting, 7 + 22 - 1); 772 output[7 + 22 - 1] = BF_itoa64[(int) 777 BF_swap(data.binary.output, 6); 778 BF_encode(&output[7 + 22], data.binary.output, 23); 779 output[ 649 BF_crypt(const char *key, const char *setting, char *output, int size, BF_word min) argument 784 _crypt_output_magic(const char *setting, char *output, int size) argument 819 php_crypt_blowfish_rn(const char *key, const char *setting, char *output, int size) argument [all...] |
| H A D | crypt_blowfish.h | 22 extern int _crypt_output_magic(const char *setting, char *output, int size);
25 char *output, int size);
29 const char *input, int size, char *output, int output_size);
|
| H A D | crypt_freesec.h | 36 char output[21]; member in struct:php_crypt_extended_data
|
| H A D | crypt.c | 158 char output[MD5_HASH_MAX_LEN], *out; local 160 out = php_md5_crypt_r(password, salt, output); 167 char *output; local 168 output = emalloc(PHP_MAX_SALT_LEN); 170 crypt_res = php_sha512_crypt_r(password, salt, output, PHP_MAX_SALT_LEN); 172 memset(output, 0, PHP_MAX_SALT_LEN); 173 efree(output); 176 *result = estrdup(output); 177 memset(output, 0, PHP_MAX_SALT_LEN); 178 efree(output); 182 char *output; local 204 char output[PHP_MAX_SALT_LEN + 1]; local [all...] |
| H A D | pack.c | 87 static void php_pack(zval **val, int size, int *map, char *output) argument 96 *output++ = v[map[i]]; 117 char *output; local 247 /* Calculate output length and upper bound while processing*/ 313 output = emalloc(outputsize + 1); 328 memset(&output[outputpos], (code == 'a' || code == 'Z') ? '\0' : ' ', arg); 334 memcpy(&output[outputpos], Z_STRVAL_PP(val), 373 output[++outputpos] = 0; 378 output[outputpos] |= (n << nibbleshift); 389 php_pack(argv[currentarg++], 1, byte_map, &output[outputpo [all...] |
| H A D | sha1.c | 369 Encodes input (php_uint32) into output (unsigned char). Assumes len is 372 static void SHA1Encode(output, input, len) 373 unsigned char *output; 380 output[j] = (unsigned char) ((input[i] >> 24) & 0xff); 381 output[j + 1] = (unsigned char) ((input[i] >> 16) & 0xff); 382 output[j + 2] = (unsigned char) ((input[i] >> 8) & 0xff); 383 output[j + 3] = (unsigned char) (input[i] & 0xff); 389 Decodes input (unsigned char) into output (php_uint32). Assumes len is 392 static void SHA1Decode(output, input, len) 393 php_uint32 *output; [all...] |
| H A D | url_scanner_ex.re | 162 append_modified_url(&ctx->val, &ctx->result, &ctx->url_app, PG(arg_separator).output); 372 append_modified_url(&surl, &buf, &url_app, PG(arg_separator).output); 433 static void php_url_scanner_output_handler(char *output, uint output_len, char **handled_output, uint *handled_output_len, int mode TSRMLS_DC) 438 *handled_output = url_adapt_ext(output, output_len, &len, (zend_bool) (mode & (PHP_OUTPUT_HANDLER_END | PHP_OUTPUT_HANDLER_CONT | PHP_OUTPUT_HANDLER_FLUSH | PHP_OUTPUT_HANDLER_FINAL) ? 1 : 0) TSRMLS_CC); 448 smart_str_appendl(&ctx->result, output, output_len); 457 *handled_output = estrndup(output, *handled_output_len = output_len); 478 smart_str_appends(&BG(url_adapt_state_ex).url_app, PG(arg_separator).output);
|
| /PHP_TRUNK/ext/standard/tests/http/ |
| H A D | server.inc | 14 * $output is a stream on which everything sent by clients is written to 16 function http_server($socket_string, array $files, &$output = null) { 25 if ($output === null) { 26 $output = tmpfile(); 27 if ($output === false) { 58 fwrite($output, b"\r\n"); 61 fwrite($output, b"$line\r\n"); 73 stream_copy_to_stream($sock, $output, $content_length);
|
| /PHP_TRUNK/ext/tokenizer/ |
| H A D | tokenizer.php | 30 $output .= $chunk; 33 print $output;
|
| /PHP_TRUNK/ext/xmlrpc/libxmlrpc/ |
| H A D | xml_element.h | 86 * defines various output options 163 void xml_elem_serialize_to_stream(xml_element *el, FILE *output, XML_ELEM_OUTPUT_OPTIONS options);
|
| H A D | xmlrpc.c | 135 * - Various output options, including: xml escaping via CDATA or entity, case folding, 572 * XMLRPC_REQUEST_OUTPUT_OPTIONS XMLRPC_RequestSetOutputOptions(XMLRPC_REQUEST request, XMLRPC_REQUEST_OUTPUT_OPTIONS output) 574 * Sets output options used for generating XML. The output struct 578 * output -- output options struct initialized by caller 589 XMLRPC_REQUEST_OUTPUT_OPTIONS XMLRPC_RequestSetOutputOptions(XMLRPC_REQUEST request, XMLRPC_REQUEST_OUTPUT_OPTIONS output) { argument 590 if(request && output) { 591 memcpy (&request->output, output, [all...] |
| H A D | xmlrpc_private.h | 117 STRUCT_XMLRPC_REQUEST_OUTPUT_OPTIONS output; /* xml output options */ member in struct:_xmlrpc_request
|
| /PHP_TRUNK/ |
| H A D | ltmain.sh | 391 lipo -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" 403 lipo -create -output "$darwin_file" $darwin_files 875 # Calculate the filename of the output object if compiler does 1035 # Suppress compiler output if we already did a PIC compilation. 1176 # We need to know -static, to get the right output filenames. 1229 output) 1730 -o) prev=output ;; 2018 outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'` 2030 output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'` 2031 if test "X$output_objdir" = "X$output"; the [all...] |
| H A D | server-tests.php | 125 function generate_diff($wanted,$output) 128 $o = explode("\n", $output); 427 't' => array('TEST_PHP_DETAILED' ,'number' ,0 ,'level of detail output to dump'), 964 * Fetch phpinfo() output so that we can see the PHP enviroment 986 $failed_tests_data .= $sep . file_get_contents(realpath($test_info['output'])); 1210 $output = trim($this->runscript($section_text['SKIPIF'],$this->test_executable_iscgi,realpath(dirname($file))),true); variable 1211 if (!$output) return NULL; 1213 print "SKIPIF: [$output]\n"; 1214 if (preg_match("/^skip/i", $output)){ 1216 $reason = (preg_match("/^skip\s*(.+)\$/", $output)) 1415 $output = trim($out); variable 1416 $output = preg_replace('/\\r\\n/',"\\n",$output); variable 1511 $output=''; variable [all...] |
| /PHP_TRUNK/win32/build/ |
| H A D | buildconf.js | 113 var output = "";
137 var output = "";
147 output += emit_dep_modules(item.deps);
149 output += emit_module(item);
153 return output;
161 var output = "";
169 output += emit_module(item);
175 output += emit_dep_modules(module_names);
177 return output;
|
| H A D | phpize.js.in | 128 var output = "";
138 output += emit_dep_modules(item.deps);
140 output += emit_module(item);
144 return output;
152 var output = "";
161 output += emit_module(item);
167 output += emit_dep_modules(module_names);
169 return output;
|
| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | gd_gif_out.c | 69 long int out_count; /* # of codes output (for debugging) */ 94 static void output (code_int code, GifCtx *ctx); 463 * get this from the beginning of htab. The output stack uses the rest 481 * ratio decreases, but after the table fills. The variable-length output 489 output(code_int code, GifCtx *ctx); 504 * g_outfile - pointer to output file 534 output( (code_int)ctx->ClearCode, ctx ); 566 output ( (code_int) ent, ctx ); 582 output( (code_int)ent, ctx ); 584 output( (code_in 610 output(code_int code, GifCtx *ctx) function [all...] |
| /PHP_TRUNK/ext/hash/ |
| H A D | hash_haval.c | 98 Encodes input (php_hash_uint32) into output (unsigned char). Assumes len is 101 static void Encode(unsigned char *output, php_hash_uint32 *input, unsigned int len) argument 106 output[j] = (unsigned char) (input[i] & 0xff); 107 output[j + 1] = (unsigned char) ((input[i] >> 8) & 0xff); 108 output[j + 2] = (unsigned char) ((input[i] >> 16) & 0xff); 109 output[j + 3] = (unsigned char) ((input[i] >> 24) & 0xff); 115 Decodes input (unsigned char) into output (php_hash_uint32). Assumes len is 118 static void Decode(php_hash_uint32 *output, const unsigned char *input, unsigned int len) argument 123 output[i] = ((php_hash_uint32) input[j]) | (((php_hash_uint32) input[j + 1]) << 8) | 262 context->passes = p; context->output [all...] |
| H A D | hash_sha.c | 38 Encodes input (php_hash_uint32) into output (unsigned char). Assumes len is 41 static void SHAEncode32(unsigned char *output, php_hash_uint32 *input, unsigned int len) argument 46 output[j] = (unsigned char) ((input[i] >> 24) & 0xff); 47 output[j + 1] = (unsigned char) ((input[i] >> 16) & 0xff); 48 output[j + 2] = (unsigned char) ((input[i] >> 8) & 0xff); 49 output[j + 3] = (unsigned char) (input[i] & 0xff); 56 Decodes input (unsigned char) into output (php_hash_uint32). Assumes len is 59 static void SHADecode32(php_hash_uint32 *output, const unsigned char *input, unsigned int len) argument 64 output[i] = ((php_hash_uint32) input[j + 3]) | (((php_hash_uint32) input[j + 2]) << 8) | 729 Encodes input (php_hash_uint64) into output (unsigne 732 SHAEncode64(unsigned char *output, php_hash_uint64 *input, unsigned int len) argument 754 SHADecode64(php_hash_uint64 *output, const unsigned char *input, unsigned int len) argument [all...] |
| H A D | php_hash_haval.h | 32 short output; member in struct:__anon83
|
| /PHP_TRUNK/ext/recode/ |
| H A D | recode.c | 78 ZEND_ARG_INFO(0, output) 184 /* {{{ proto bool recode_file(string request, resource input, resource output) 185 Recode file input into file output according to request */ 191 zval *input, *output; local 195 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "srr", &req, &req_len, &input, &output) == FAILURE) { 200 php_stream_from_zval(outstream, &output);
|
| /PHP_TRUNK/ext/tidy/ |
| H A D | tidy.c | 615 TidyBuffer output; local 616 tidyBufInit(&output); 618 tidySaveBuffer (doc, &output); 619 FIX_BUFFER(&output); 620 RETVAL_STRINGL((char *) output.bp, output.size ? output.size-1 : 0, 1); 621 tidyBufFree(&output); 747 TidyBuffer output; local 765 tidyBufInit(&output); 818 TidyBuffer output; local 1258 TidyBuffer output; local [all...] |
| /PHP_TRUNK/ext/xmlwriter/ |
| H A D | php_xmlwriter.h | 39 xmlBufferPtr output; member in struct:_xmlwriter_object
|
| /PHP_TRUNK/main/ |
| H A D | php_globals.h | 52 char *output; member in struct:_arg_separators
|