| /PHP_TRUNK/ext/skeleton/ |
| H A D | create_stubs | 40 function comment(s) function 81 "<!-- Keep this comment at the end of the file\n" \
|
| /PHP_TRUNK/ext/zip/lib/ |
| H A D | zip_set_archive_comment.c | 2 zip_set_archive_comment.c -- set archive comment 45 zip_set_archive_comment(struct zip *za, const char *comment, int len) 50 || (len > 0 && comment == NULL)) { 61 if ((tmpcom=(char *)_zip_memdup(comment, len, &za->error)) == NULL) 43 zip_set_archive_comment(struct zip *za, const char *comment, int len) argument
|
| H A D | zip_set_file_comment.c | 2 zip_set_file_comment.c -- set comment for file in archive 46 const char *comment, int len) 52 || (len > 0 && comment == NULL)) { 63 if ((tmpcom=(char *)_zip_memdup(comment, len, &za->error)) == NULL) 43 zip_set_file_comment(struct zip *za, zip_uint64_t idx, const char *comment, int len) argument
|
| H A D | zipint.h | 198 char *ch_comment; /* changed archive comment */ 200 * comment, -1 if unchanged */ 233 char *comment; /* (c) file comment */ 234 unsigned short comment_len; /* (c) length of file comment */ 249 char *comment; /* zip archive comment */ 250 unsigned short comment_len; /* length of zip archive comment */ 229 char *comment; /* (c) file comment */ member in struct:zip_dirent 245 char *comment; /* zip archive comment */ member in struct:zip_cdir
|
| /PHP_TRUNK/ext/xml/ |
| H A D | compat.c | 324 _build_comment(const xmlChar *data, int data_len, xmlChar **comment, int *comment_len) argument 328 *comment = xmlMalloc(*comment_len + 1); 329 memcpy(*comment, "<!--", 4); 330 memcpy(*comment + 4, data, data_len); 331 memcpy(*comment + 4 + data_len, "-->", 3); 333 (*comment)[*comment_len] = '\0'; 337 _comment_handler(void *user, const xmlChar *comment) argument 345 _build_comment(comment, xmlStrlen(comment), &d_comment, &d_comment_len); 435 _comment_handler, /* comment */ 535 XML_SetCommentHandler(XML_Parser parser, XML_CommentHandler comment) argument [all...] |
| /PHP_TRUNK/ext/mysqli/ |
| H A D | mysqli_nonapi.c | 997 const char *name = NULL, *collation = NULL, *dir = NULL, *comment = NULL; local 1020 comment = cs.comment; 1032 comment = cs->comment; 1044 add_property_string(return_value, "comment", (comment) ? (char *)comment : "", 1);
|
| /PHP_TRUNK/ext/zip/ |
| H A D | php_zip.c | 81 /* {{{ PHP_ZIP_SET_FILE_COMMENT(za, index, comment, comment_len) */ 82 #define PHP_ZIP_SET_FILE_COMMENT(za, index, comment, comment_len) \ 84 /* Passing NULL remove the existing comment */ \ 88 } else if (zip_set_file_comment(intern, index, comment, comment_len) < 0) { \ 1992 /* {{{ proto bool ZipArchive::setArchiveComment(string comment) 1993 Set or remove (NULL/'') the comment of the archive */ 1999 char * comment; local 2007 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &comment, &comment_len) == FAILURE) { 2010 if (zip_set_archive_comment(intern, (const char *)comment, (int)comment_len)) { 2019 Returns the comment o 2025 const char * comment; local 2053 char * comment, *name; local 2087 char * comment; local 2115 const char * comment; local 2150 const char * comment; local [all...] |
| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | gd_jpeg.c | 170 char comment[255]; local 212 snprintf(comment, sizeof(comment)-1, "CREATOR: gd-jpeg v%s (using IJG JPEG v%d), quality = %d\n", GD_JPEG_VERSION, JPEG_LIB_VERSION, quality); 214 snprintf(comment, sizeof(comment)-1, "CREATOR: gd-jpeg v%s (using IJG JPEG v%d), default quality\n", GD_JPEG_VERSION, JPEG_LIB_VERSION); 216 jpeg_write_marker (&cinfo, JPEG_COM, (unsigned char *) comment, (unsigned int) strlen (comment));
|
| /PHP_TRUNK/ext/mysqlnd/ |
| H A D | mysqlnd_structs.h | 143 const char *comment; member in struct:st_mysqlnd_charset
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_compile.c | 5282 char *comment = NULL; local 5311 comment = CG(doc_comment); 5317 zend_declare_property_ex(CG(active_class_entry), zend_new_interned_string(var_name->u.constant.value.str.val, var_name->u.constant.value.str.len + 1, 0 TSRMLS_CC), var_name->u.constant.value.str.len, property, access_type, comment, comment_len TSRMLS_CC); local
|
| /PHP_TRUNK/ext/wddx/ |
| H A D | wddx.c | 108 ZEND_ARG_INFO(0, comment) 117 ZEND_ARG_INFO(0, comment) 369 void php_wddx_packet_start(wddx_packet *packet, char *comment, int comment_len) argument 372 if (comment) { 375 php_wddx_add_chunk_ex(packet, comment, comment_len); 1157 /* {{{ proto string wddx_serialize_value(mixed var [, string comment]) 1162 char *comment = NULL; local 1166 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z|s", &var, &comment, &comment_len) == FAILURE) { 1172 php_wddx_packet_start(packet, comment, comment_len); 1239 /* {{{ proto resource wddx_packet_start([string comment]) 1243 char *comment = NULL; local [all...] |