Lines Matching refs:map
370 add_mlist(struct mlist *mlp, struct magic_map *map, size_t idx) in add_mlist() argument
377 ml->map = idx == 0 ? map : NULL; in add_mlist()
378 ml->magic = map->magic[idx]; in add_mlist()
379 ml->nmagic = map->nmagic[idx]; in add_mlist()
395 struct magic_map *map; in apprentice_1() local
400 (unsigned long)sizeof(*map->magic[0]), in apprentice_1()
406 map = apprentice_load(ms, fn, action); in apprentice_1()
407 if (map == NULL) in apprentice_1()
409 return apprentice_compile(ms, map, fn); in apprentice_1()
412 map = apprentice_map(ms, fn); in apprentice_1()
413 if (map == NULL) { in apprentice_1()
417 map = apprentice_load(ms, fn, action); in apprentice_1()
419 if (map == NULL) in apprentice_1()
424 if (add_mlist(ms->mlist[i], map, i) == -1) { in apprentice_1()
426 apprentice_unmap(map); in apprentice_1()
497 apprentice_unmap(struct magic_map *map) in apprentice_unmap() argument
499 if (map == NULL) in apprentice_unmap()
501 if (map->p != php_magic_database) { in apprentice_unmap()
502 if (map->p == NULL) { in apprentice_unmap()
505 if (map->magic[j]) { in apprentice_unmap()
506 efree(map->magic[j]); in apprentice_unmap()
510 efree(map->p); in apprentice_unmap()
513 efree(map); in apprentice_unmap()
537 if (ml->map) in mlist_free()
538 apprentice_unmap(ml->map); in mlist_free()
1149 struct magic_map *map; in apprentice_load() local
1160 if ((map = CAST(struct magic_map *, ecalloc(1, sizeof(*map)))) == NULL) in apprentice_load()
1162 file_oomem(ms, sizeof(*map)); in apprentice_load()
1239 &map->magic[j], &map->nmagic[j]) == -1) { in apprentice_load()
1251 if (map->magic[j]) in apprentice_load()
1252 efree(map->magic[j]); in apprentice_load()
1254 efree(map); in apprentice_load()
1257 return map; in apprentice_load()
2604 struct magic_map *map; in apprentice_map() local
2612 if ((map = CAST(struct magic_map *, ecalloc(1, sizeof(*map)))) == NULL) { in apprentice_map()
2613 file_oomem(ms, sizeof(*map)); in apprentice_map()
2618 map->p = (void *)&php_magic_database; in apprentice_map()
2652 map->len = (size_t)st.sb.st_size; in apprentice_map()
2653 if ((map->p = CAST(void *, emalloc(map->len))) == NULL) { in apprentice_map()
2654 file_oomem(ms, map->len); in apprentice_map()
2657 if (php_stream_read(stream, map->p, (size_t)st.sb.st_size) != (size_t)st.sb.st_size) { in apprentice_map()
2661 map->len = 0; in apprentice_map()
2668 ptr = (uint32_t *)(void *)map->p; in apprentice_map()
2692 map->p = emalloc(sizeof(php_magic_database)); in apprentice_map()
2693 map->p = memcpy(map->p, php_magic_database, sizeof(php_magic_database)); in apprentice_map()
2706 map->magic[0] = CAST(struct magic *, map->p) + 1; in apprentice_map()
2710 map->nmagic[i] = swap4(ptr[i + 2]); in apprentice_map()
2712 map->nmagic[i] = ptr[i + 2]; in apprentice_map()
2714 map->magic[i + 1] = map->magic[i] + map->nmagic[i]; in apprentice_map()
2715 nentries += map->nmagic[i]; in apprentice_map()
2725 byteswap(map->magic[i], map->nmagic[i]); in apprentice_map()
2730 return map; in apprentice_map()
2736 apprentice_unmap(map); in apprentice_map()
2751 apprentice_compile(struct magic_set *ms, struct magic_map *map, const char *fn) in apprentice_compile() argument
2753 static const size_t nm = sizeof(*map->nmagic) * MAGIC_SETS; in apprentice_compile()
2754 static const size_t m = sizeof(**map->magic); in apprentice_compile()
2782 if (php_stream_write(stream, (const char *)map->nmagic, nm) != (ssize_t)nm) { in apprentice_compile()
2795 len = m * map->nmagic[i]; in apprentice_compile()
2796 if (php_stream_write(stream, (const char *)map->magic[i], len) != (ssize_t)len) { in apprentice_compile()