Lines Matching refs:manifest

292 	zend_hash_init(&mydata->manifest, PHAR_GET_16(locator.count),  in phar_parse_zipfile()
303 zend_hash_destroy(&mydata->manifest); \ in phar_parse_zipfile()
304 mydata->manifest.arBuckets = 0; \ in phar_parse_zipfile()
327 zend_hash_destroy(&mydata->manifest); \ in phar_parse_zipfile()
328 mydata->manifest.arBuckets = 0; \ in phar_parse_zipfile()
649 …zend_hash_add(&mydata->manifest, entry.filename, entry.filename_len, (void *)&entry,sizeof(phar_en… in phar_parse_zipfile()
654 if (zend_hash_exists(&(mydata->manifest), ".phar/stub.php", sizeof(".phar/stub.php")-1)) { in phar_parse_zipfile()
1219 …if (SUCCESS != zend_hash_update(&phar->manifest, entry.filename, entry.filename_len, (void*)&entry… in phar_zip_flush()
1226 zend_hash_del(&phar->manifest, ".phar/alias.txt", sizeof(".phar/alias.txt")-1); in phar_zip_flush()
1303 …if (SUCCESS != zend_hash_update(&phar->manifest, entry.filename, entry.filename_len, (void*)&entry… in phar_zip_flush()
1336 if (!zend_hash_exists(&phar->manifest, ".phar/stub.php", sizeof(".phar/stub.php")-1)) { in phar_zip_flush()
1337 …if (SUCCESS != zend_hash_add(&phar->manifest, entry.filename, entry.filename_len, (void*)&entry, s… in phar_zip_flush()
1350 …if (SUCCESS != zend_hash_update(&phar->manifest, entry.filename, entry.filename_len, (void*)&entry… in phar_zip_flush()
1399 PHAR_SET_16(eocd.counthere, zend_hash_num_elements(&phar->manifest) + 1); in phar_zip_flush()
1400 PHAR_SET_16(eocd.count, zend_hash_num_elements(&phar->manifest) + 1); in phar_zip_flush()
1402 PHAR_SET_16(eocd.counthere, zend_hash_num_elements(&phar->manifest)); in phar_zip_flush()
1403 PHAR_SET_16(eocd.count, zend_hash_num_elements(&phar->manifest)); in phar_zip_flush()
1405 zend_hash_apply_with_argument(&phar->manifest, phar_zip_changed_apply, (void *) &pass TSRMLS_CC); in phar_zip_flush()