Symbol: add_allocation_function
usr/src/tools/smatch/src/smatch_buf_comparison.c
806
add_allocation_function("malloc", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_buf_comparison.c
807
add_allocation_function("memdup", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_comparison.c
808
add_allocation_function("realloc", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_comparison.c
810
add_allocation_function("kmalloc", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_buf_comparison.c
811
add_allocation_function("kzalloc", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_buf_comparison.c
812
add_allocation_function("vmalloc", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_buf_comparison.c
813
add_allocation_function("__vmalloc", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_buf_comparison.c
814
add_allocation_function("sock_kmalloc", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_comparison.c
815
add_allocation_function("kmemdup", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_comparison.c
816
add_allocation_function("kmemdup_user", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_comparison.c
817
add_allocation_function("dma_alloc_attrs", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_comparison.c
818
add_allocation_function("pci_alloc_consistent", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_comparison.c
819
add_allocation_function("pci_alloc_coherent", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_comparison.c
820
add_allocation_function("devm_kmalloc", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_comparison.c
821
add_allocation_function("devm_kzalloc", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_comparison.c
822
add_allocation_function("kcalloc", &match_calloc, 0);
usr/src/tools/smatch/src/smatch_buf_comparison.c
823
add_allocation_function("devm_kcalloc", &match_calloc, 1);
usr/src/tools/smatch/src/smatch_buf_comparison.c
824
add_allocation_function("kmalloc_array", &match_calloc, 0);
usr/src/tools/smatch/src/smatch_buf_comparison.c
825
add_allocation_function("krealloc", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_size.c
927
add_allocation_function("malloc", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_buf_size.c
928
add_allocation_function("calloc", &match_calloc, 0);
usr/src/tools/smatch/src/smatch_buf_size.c
929
add_allocation_function("memdup", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_size.c
930
add_allocation_function("realloc", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_size.c
932
add_allocation_function("kmalloc", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_buf_size.c
933
add_allocation_function("kmalloc_node", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_buf_size.c
934
add_allocation_function("kzalloc", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_buf_size.c
935
add_allocation_function("kzalloc_node", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_buf_size.c
936
add_allocation_function("vmalloc", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_buf_size.c
937
add_allocation_function("vzalloc", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_buf_size.c
938
add_allocation_function("__vmalloc", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_buf_size.c
939
add_allocation_function("kvmalloc", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_buf_size.c
940
add_allocation_function("kcalloc", &match_calloc, 0);
usr/src/tools/smatch/src/smatch_buf_size.c
941
add_allocation_function("kmalloc_array", &match_calloc, 0);
usr/src/tools/smatch/src/smatch_buf_size.c
942
add_allocation_function("devm_kmalloc_array", &match_calloc, 1);
usr/src/tools/smatch/src/smatch_buf_size.c
943
add_allocation_function("sock_kmalloc", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_size.c
944
add_allocation_function("kmemdup", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_size.c
945
add_allocation_function("kmemdup_user", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_size.c
946
add_allocation_function("dma_alloc_attrs", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_size.c
947
add_allocation_function("pci_alloc_consistent", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_size.c
948
add_allocation_function("pci_alloc_coherent", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_size.c
949
add_allocation_function("devm_kmalloc", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_size.c
950
add_allocation_function("devm_kzalloc", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_size.c
951
add_allocation_function("krealloc", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_size.c
952
add_allocation_function("__alloc_bootmem", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_buf_size.c
953
add_allocation_function("alloc_bootmem", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_buf_size.c
954
add_allocation_function("kmap", &match_page, 0);
usr/src/tools/smatch/src/smatch_buf_size.c
955
add_allocation_function("kmap_atomic", &match_page, 0);
usr/src/tools/smatch/src/smatch_buf_size.c
956
add_allocation_function("get_zeroed_page", &match_page, 0);
usr/src/tools/smatch/src/smatch_buf_size.c
957
add_allocation_function("alloc_page", &match_page, 0);
usr/src/tools/smatch/src/smatch_buf_size.c
958
add_allocation_function("alloc_pages", &match_alloc_pages, 1);
usr/src/tools/smatch/src/smatch_buf_size.c
959
add_allocation_function("alloc_pages_current", &match_alloc_pages, 1);
usr/src/tools/smatch/src/smatch_buf_size.c
960
add_allocation_function("__get_free_pages", &match_alloc_pages, 1);
usr/src/tools/smatch/src/smatch_buf_size.c
961
add_allocation_function("dma_alloc_contiguous", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_size.c
962
add_allocation_function("dma_alloc_coherent", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_buf_size.c
965
add_allocation_function("strndup", match_strndup, 0);
usr/src/tools/smatch/src/smatch_buf_size.c
967
add_allocation_function("kstrndup", match_strndup, 0);
usr/src/tools/smatch/src/smatch_constraints_required.c
471
add_allocation_function("malloc", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_constraints_required.c
472
add_allocation_function("memdup", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_constraints_required.c
473
add_allocation_function("realloc", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_constraints_required.c
474
add_allocation_function("realloc", &match_calloc, 0);
usr/src/tools/smatch/src/smatch_constraints_required.c
476
add_allocation_function("kmalloc", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_constraints_required.c
477
add_allocation_function("kzalloc", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_constraints_required.c
478
add_allocation_function("vmalloc", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_constraints_required.c
479
add_allocation_function("__vmalloc", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_constraints_required.c
480
add_allocation_function("vzalloc", &match_alloc, 0);
usr/src/tools/smatch/src/smatch_constraints_required.c
481
add_allocation_function("sock_kmalloc", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_constraints_required.c
482
add_allocation_function("kmemdup", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_constraints_required.c
483
add_allocation_function("kmemdup_user", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_constraints_required.c
484
add_allocation_function("dma_alloc_attrs", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_constraints_required.c
485
add_allocation_function("pci_alloc_consistent", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_constraints_required.c
486
add_allocation_function("pci_alloc_coherent", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_constraints_required.c
487
add_allocation_function("devm_kmalloc", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_constraints_required.c
488
add_allocation_function("devm_kzalloc", &match_alloc, 1);
usr/src/tools/smatch/src/smatch_constraints_required.c
489
add_allocation_function("kcalloc", &match_calloc, 0);
usr/src/tools/smatch/src/smatch_constraints_required.c
490
add_allocation_function("kmalloc_array", &match_calloc, 0);
usr/src/tools/smatch/src/smatch_constraints_required.c
491
add_allocation_function("devm_kcalloc", &match_calloc, 1);
usr/src/tools/smatch/src/smatch_constraints_required.c
492
add_allocation_function("krealloc", &match_alloc, 1);