Searched defs:comment_len (Results 1 - 6 of 6) sorted by relevance
| /PHP_5_3/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_5_3/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);
|
| /PHP_5_3/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_5_3/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_5_3/Zend/ |
| H A D | zend_compile.c | 3633 int comment_len = 0; local 3664 comment_len = CG(doc_comment_len); 3669 zend_declare_property_ex(CG(active_class_entry), var_name->u.constant.value.str.val, var_name->u.constant.value.str.len, property, access_type, comment, comment_len TSRMLS_CC);
|
| /PHP_5_3/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) { \ 2002 int comment_len; local 2011 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &comment, &comment_len) == FAILURE) { 2014 if (zip_set_archive_comment(intern, (const char *)comment, (int)comment_len)) { 2030 int comment_len = 0; local 2042 comment = zip_get_archive_comment(intern, &comment_len, (int)flags); 2046 RETURN_STRINGL((char *)comment, (long)comment_len, 2056 int comment_len, name_len; local 2090 int comment_len; local 2118 int comment_len = 0; local 2155 int comment_len = 0; local [all...] |
Completed in 37 milliseconds