Searched defs:comment_len (Results 1 - 6 of 6) sorted by relevance
| /PHP_TRUNK/ext/zip/lib/ |
| H A D | zipint.h | 234 unsigned short comment_len; /* (c) length of file comment */ 250 unsigned short comment_len; /* length of zip archive comment */ 230 unsigned short comment_len; /* (c) length of file comment */ member in struct:zip_dirent 246 unsigned short comment_len; /* length of 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 326 *comment_len = data_len + 7; 328 *comment = xmlMalloc(*comment_len + 1); 333 (*comment)[*comment_len] = '\0';
|
| /PHP_TRUNK/ext/phar/ |
| H A D | pharzip.h | 164 char comment_len[2]; /* file comment length 2 bytes */ member in struct:_phar_zip_central_dir_file 233 char comment_len[2]; /* .ZIP file comment length 2 bytes */ member in struct:_phar_zip_dir_end
|
| /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) \ 83 if (comment_len == 0) { \ 88 } else if (zip_set_file_comment(intern, index, comment, comment_len) < 0) { \ 1998 int comment_len; 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)) { 2026 int comment_len = 0; local 2038 comment = zip_get_archive_comment(intern, &comment_len, (int)flags); 2042 RETURN_STRINGL((char *)comment, (long)comment_len, 2052 int comment_len, name_len; local 2086 int comment_len; local 2114 int comment_len = 0; local 2151 int comment_len = 0; local [all...] |
| /PHP_TRUNK/Zend/ |
| H A D | zend_compile.c | 5283 int comment_len = 0; local 5312 comment_len = CG(doc_comment_len); 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);
|
| /PHP_TRUNK/ext/wddx/ |
| H A D | wddx.c | 369 void php_wddx_packet_start(wddx_packet *packet, char *comment, int comment_len) argument 375 php_wddx_add_chunk_ex(packet, comment, comment_len); 1163 int comment_len = 0; 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); 1244 int comment_len = 0; local 1249 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s", &comment, &comment_len) == FAILURE) { 1255 php_wddx_packet_start(packet, comment, comment_len);
|
Completed in 29 milliseconds