| /PHP_5_4/ext/pcre/ |
| H A D | upgrade-pcre.php | 70 $content = file_get_contents($newfile); variable 71 $newcontent = preg_replace('/#\s*ifdef HAVE_CONFIG_H\s*(.+)\s*#\s*endif/', '$1', $content); 73 if ($content !== $newcontent) {
|
| /PHP_5_4/ext/zip/examples/ |
| H A D | fopen.php | 20 $content = ''; variable
|
| /PHP_5_4/ext/dom/ |
| H A D | attr.c | 147 xmlChar *content; local 159 if ((content = xmlNodeGetContent((xmlNodePtr) attrp)) != NULL) { 160 ZVAL_STRING(*retval, content, 1); 161 xmlFree(content);
|
| H A D | characterdata.c | 82 xmlChar *content; local 93 if ((content = xmlNodeGetContent(nodep)) != NULL) { 94 ZVAL_STRING(*retval, content, 1); 95 xmlFree(content); 143 xmlChar *content; local 155 content = xmlNodeGetContent(nodep); 157 if (content) { 158 length = xmlUTF8Strlen(content); 159 xmlFree(content); 237 if ((nodep->content [all...] |
| H A D | entity.c | 106 char *content; local 119 content = xmlNodeGetContent((xmlNodePtr) nodep); 120 ZVAL_STRING(*retval, content, 1); 121 xmlFree(content);
|
| H A D | processinginstruction.c | 125 xmlChar *content; local 137 if ((content = xmlNodeGetContent(nodep)) != NULL) { 138 ZVAL_STRING(*retval, content, 1); 139 xmlFree(content);
|
| /PHP_5_4/ext/imap/ |
| H A D | php_imap.c | 238 ZEND_ARG_INFO(0, content) 1926 /* {{{ proto array imap_listscan(resource stream_id, string ref, string pattern, string content) 1931 char *ref, *pat, *content; local 1936 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rsss", &streamind, &ref, &ref_len, &pat, &pat_len, &content, &content_len) == FAILURE) { 1943 mail_scan(imap_le_struct->imap_stream, ref, pat, content);
|
| /PHP_5_4/ext/soap/ |
| H A D | php_sdl.h | 172 HashTable *content; /* array of sdlContentModel for sequnce,all,choice*/ member in union:_sdlContentModel::__anon195
|
| /PHP_5_4/ext/xml/ |
| H A D | compat.c | 363 _external_entity_ref_handler(void *user, const xmlChar *names, int type, const xmlChar *sys_id, const xmlChar *pub_id, xmlChar *content) argument 399 parser->h_cdata(parser->user, ret->content, xmlStrlen(ret->content)); 595 memcpy(start, parser->parser->input->buf->buffer->content, (size_t)char_count); 685 "Sequence ']]>' not allowed in content", 709 "extra content at the end of well balanced chunk",
|
| /PHP_5_4/ext/xmlwriter/ |
| H A D | php_xmlwriter.c | 89 typedef int (*xmlwriter_read_one_char_t)(xmlTextWriterPtr writer, const xmlChar *content); 230 ZEND_ARG_INFO(0, content) 237 ZEND_ARG_INFO(0, content) 276 ZEND_ARG_INFO(0, content) 281 ZEND_ARG_INFO(0, content) 289 ZEND_ARG_INFO(0, content) 296 ZEND_ARG_INFO(0, content) 311 ZEND_ARG_INFO(0, content) 316 ZEND_ARG_INFO(0, content) 321 ZEND_ARG_INFO(0, content) 936 char *name, *content; local 981 char *name, *prefix, *uri, *content; local 1094 char *name, *content = NULL; local 1149 char *name, *prefix, *uri, *content = NULL; local 1220 char *name, *content; local 1540 char *name, *content; local 1600 char *name, *content; local 1697 char *name, *content; local [all...] |
| /PHP_5_4/sapi/cli/ |
| H A D | php_cli_server.c | 133 char *content; member in struct:php_cli_server_request 554 if (client->request.content) { 557 memmove(buf, client->request.content + client->post_read_offset, nbytes_copied); 1276 req->content = NULL; 1301 if (req->content) { 1302 pefree(req->content, 1); 1572 if (!client->request.content) { 1573 client->request.content = pemalloc(parser->content_length, 1); 1574 if (!client->request.content) { 1579 memmove(client->request.content [all...] |