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()
641 …zend_hash_add(&mydata->manifest, entry.filename, entry.filename_len, (void *)&entry,sizeof(phar_en… in phar_parse_zipfile()
646 if (zend_hash_exists(&(mydata->manifest), ".phar/stub.php", sizeof(".phar/stub.php")-1)) { in phar_parse_zipfile()
1211 …if (SUCCESS != zend_hash_update(&phar->manifest, entry.filename, entry.filename_len, (void*)&entry… in phar_zip_flush()
1218 zend_hash_del(&phar->manifest, ".phar/alias.txt", sizeof(".phar/alias.txt")-1); in phar_zip_flush()
1295 …if (SUCCESS != zend_hash_update(&phar->manifest, entry.filename, entry.filename_len, (void*)&entry… in phar_zip_flush()
1328 if (!zend_hash_exists(&phar->manifest, ".phar/stub.php", sizeof(".phar/stub.php")-1)) { in phar_zip_flush()
1329 …if (SUCCESS != zend_hash_add(&phar->manifest, entry.filename, entry.filename_len, (void*)&entry, s… in phar_zip_flush()
1342 …if (SUCCESS != zend_hash_update(&phar->manifest, entry.filename, entry.filename_len, (void*)&entry… in phar_zip_flush()
1391 PHAR_SET_16(eocd.counthere, zend_hash_num_elements(&phar->manifest) + 1); in phar_zip_flush()
1392 PHAR_SET_16(eocd.count, zend_hash_num_elements(&phar->manifest) + 1); in phar_zip_flush()
1394 PHAR_SET_16(eocd.counthere, zend_hash_num_elements(&phar->manifest)); in phar_zip_flush()
1395 PHAR_SET_16(eocd.count, zend_hash_num_elements(&phar->manifest)); in phar_zip_flush()
1397 zend_hash_apply_with_argument(&phar->manifest, phar_zip_changed_apply, (void *) &pass TSRMLS_CC); in phar_zip_flush()