Searched refs:compression_type (Results 1 - 2 of 2) sorted by relevance

/darwin-on-arm/xnu/bsd/sys/
H A Ddecmpfs.h46 uint32_t compression_type; /* see the enum below */ member in struct:__anon468
55 uint32_t compression_type; member in struct:__anon469
60 /* compression_type values */
66 CMP_MAX = 255 /* Highest compression_type supported */
156 errno_t register_decmpfs_decompressor(uint32_t compression_type, decmpfs_registration *registration);
157 errno_t unregister_decmpfs_decompressor(uint32_t compression_type, decmpfs_registration *registration);
/darwin-on-arm/xnu/bsd/kern/
H A Ddecmpfs.c462 hdr->compression_type = cp->cmp_type;
497 hdr->compression_type = OSSwapLittleToHostInt32(hdr->compression_type);
507 if (hdr->compression_type >= CMP_MAX) {
512 ErrorLog("compression_type %d out of range\n", hdr->compression_type);
600 decmpfs_validate_compressed_file_func validate = decmp_get_func(hdr->compression_type, validate);
604 } else if (decmp_get_func(hdr->compression_type, fetch) == NULL) {
740 decmpfs_cnode_set_vnode_cmp_type(cp, hdr->compression_type, 1);
751 decmpfs_get_decompression_flags_func get_flags = decmp_get_func(hdr->compression_type, get_flag
910 register_decmpfs_decompressor(uint32_t compression_type, decmpfs_registration *registration) argument
940 unregister_decmpfs_decompressor(uint32_t compression_type, decmpfs_registration *registration) argument
[all...]

Completed in 14 milliseconds