comment_len      5444 Zend/zend_compile.c 	int comment_len = 0;
comment_len      5473 Zend/zend_compile.c 		comment_len = CG(doc_comment_len);
comment_len      5478 Zend/zend_compile.c 	zend_declare_property_ex(CG(active_class_entry), zend_new_interned_string(Z_STRVAL(var_name->u.constant), Z_STRLEN(var_name->u.constant) + 1, 0 TSRMLS_CC), Z_STRLEN(var_name->u.constant), property, access_type, comment, comment_len TSRMLS_CC);
comment_len       164 ext/phar/pharzip.h 	char comment_len[2];       /* file comment length             2 bytes */
comment_len       233 ext/phar/pharzip.h 	char comment_len[2];      /* .ZIP file comment length        2 bytes */
comment_len       225 ext/phar/zip.c 			if (PHAR_GET_16(locator.comment_len)) {
comment_len       229 ext/phar/zip.c 				if (PHAR_GET_16(locator.comment_len) != size - (metadata - buf)) {
comment_len       238 ext/phar/zip.c 				mydata->metadata_len = PHAR_GET_16(locator.comment_len);
comment_len       240 ext/phar/zip.c 				if (phar_parse_metadata(&metadata, &mydata->metadata, PHAR_GET_16(locator.comment_len) TSRMLS_CC) == FAILURE) {
comment_len       251 ext/phar/zip.c 					metadata = pestrndup(metadata, PHAR_GET_16(locator.comment_len), mydata->is_persistent);
comment_len       252 ext/phar/zip.c 					ZVAL_STRINGL(mydata->metadata, metadata, PHAR_GET_16(locator.comment_len), 0);
comment_len       428 ext/phar/zip.c 				php_stream_write(sigfile, metadata, PHAR_GET_16(locator.comment_len));
comment_len       533 ext/phar/zip.c 		if (PHAR_GET_16(zipentry.comment_len)) {
comment_len       534 ext/phar/zip.c 			if (PHAR_GET_16(zipentry.comment_len) != php_stream_read(fp, buf, PHAR_GET_16(zipentry.comment_len))) {
comment_len       540 ext/phar/zip.c 			entry.metadata_len = PHAR_GET_16(zipentry.comment_len);
comment_len       542 ext/phar/zip.c 			if (phar_parse_metadata(&p, &(entry.metadata), PHAR_GET_16(zipentry.comment_len) TSRMLS_CC) == FAILURE) {
comment_len       553 ext/phar/zip.c 				ZVAL_STRINGL(entry.metadata, pestrndup(buf, PHAR_GET_16(zipentry.comment_len), entry.is_persistent), PHAR_GET_16(zipentry.comment_len), 0);
comment_len       955 ext/phar/zip.c 		PHAR_SET_16(central.comment_len, entry->metadata_str.len);
comment_len      1449 ext/phar/zip.c 		PHAR_SET_16(eocd.comment_len, main_metadata_str.len);
comment_len        60 ext/wddx/php_wddx_api.h void 		 php_wddx_packet_start(wddx_packet *packet, char *comment, int comment_len);
comment_len       370 ext/wddx/wddx.c void php_wddx_packet_start(wddx_packet *packet, char *comment, int comment_len)
comment_len       376 ext/wddx/wddx.c 		php_wddx_add_chunk_ex(packet, comment, comment_len);
comment_len      1176 ext/wddx/wddx.c 	int comment_len = 0;
comment_len      1179 ext/wddx/wddx.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z|s", &var, &comment, &comment_len) == FAILURE) {
comment_len      1185 ext/wddx/wddx.c 	php_wddx_packet_start(packet, comment, comment_len);
comment_len      1257 ext/wddx/wddx.c 	int comment_len = 0;
comment_len      1262 ext/wddx/wddx.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s", &comment, &comment_len) == FAILURE) {
comment_len      1268 ext/wddx/wddx.c 	php_wddx_packet_start(packet, comment, comment_len);
comment_len       324 ext/xml/compat.c _build_comment(const xmlChar *data, int data_len, xmlChar **comment, int *comment_len)
comment_len       326 ext/xml/compat.c 	*comment_len = data_len + 7;
comment_len       328 ext/xml/compat.c 	*comment = xmlMalloc(*comment_len + 1);
comment_len       333 ext/xml/compat.c 	(*comment)[*comment_len] = '\0';
comment_len       335 ext/zip/lib/zip_dirent.c     zip_uint16_t filename_len, comment_len, ef_len;
comment_len       391 ext/zip/lib/zip_dirent.c 	comment_len = 0;
comment_len       397 ext/zip/lib/zip_dirent.c 	comment_len = _zip_read2(&cur);
comment_len       408 ext/zip/lib/zip_dirent.c     size += filename_len+ef_len+comment_len;
comment_len       442 ext/zip/lib/zip_dirent.c     if (comment_len) {
comment_len       443 ext/zip/lib/zip_dirent.c 	zde->comment = _zip_read_string(bufp ? &cur : NULL, fp, comment_len, 0, error);
comment_len       207 ext/zip/lib/zip_open.c     zip_int64_t tail_len, comment_len;
comment_len       237 ext/zip/lib/zip_open.c     comment_len = _zip_read2(&cdp);
comment_len       246 ext/zip/lib/zip_open.c     if (tail_len < comment_len || ((flags & ZIP_CHECKCONS) && tail_len != comment_len)) {
comment_len       252 ext/zip/lib/zip_open.c     if (comment_len) {
comment_len       253 ext/zip/lib/zip_open.c 	if ((cd->comment=_zip_string_new(eocd+EOCDLEN, (zip_uint16_t)comment_len, ZIP_FL_ENC_GUESS, error)) == NULL) {
comment_len        97 ext/zip/php_zip.c #define PHP_ZIP_SET_FILE_COMMENT(za, index, comment, comment_len) \
comment_len        98 ext/zip/php_zip.c 	if (comment_len == 0) { \
comment_len       103 ext/zip/php_zip.c 	} else if (zip_set_file_comment(intern, index, comment, comment_len) < 0) { \
comment_len      2072 ext/zip/php_zip.c 	int comment_len;
comment_len      2081 ext/zip/php_zip.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &comment, &comment_len) == FAILURE) {
comment_len      2084 ext/zip/php_zip.c 	if (zip_set_archive_comment(intern, (const char *)comment, (int)comment_len)) {
comment_len      2100 ext/zip/php_zip.c 	int comment_len = 0;
comment_len      2112 ext/zip/php_zip.c 	comment = zip_get_archive_comment(intern, &comment_len, (int)flags);
comment_len      2116 ext/zip/php_zip.c 	RETURN_STRINGL((char *)comment, (long)comment_len, 1);
comment_len      2126 ext/zip/php_zip.c 	int comment_len, name_len;
comment_len      2137 ext/zip/php_zip.c 			&name, &name_len, &comment, &comment_len) == FAILURE) {
comment_len      2149 ext/zip/php_zip.c 	PHP_ZIP_SET_FILE_COMMENT(intern, idx, comment, comment_len);
comment_len      2160 ext/zip/php_zip.c 	int comment_len;
comment_len      2171 ext/zip/php_zip.c 			&index, &comment, &comment_len) == FAILURE) {
comment_len      2176 ext/zip/php_zip.c 	PHP_ZIP_SET_FILE_COMMENT(intern, index, comment, comment_len);
comment_len      2338 ext/zip/php_zip.c 	int comment_len = 0;
comment_len      2362 ext/zip/php_zip.c 	comment = zip_get_file_comment(intern, idx, &comment_len, (int)flags);
comment_len      2363 ext/zip/php_zip.c 	RETURN_STRINGL((char *)comment, (long)comment_len, 1);
comment_len      2375 ext/zip/php_zip.c 	int comment_len = 0;
comment_len      2390 ext/zip/php_zip.c 	comment = zip_get_file_comment(intern, index, &comment_len, (int)flags);
comment_len      2391 ext/zip/php_zip.c 	RETURN_STRINGL((char *)comment, (long)comment_len, 1);