You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
33 lines
1.0 KiB
(*
|
|
* Copyright (c) 2013 - present Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*)
|
|
|
|
val is_cf_non_null_alloc : Procname.t option -> bool
|
|
|
|
val is_alloc : Procname.t option -> bool
|
|
|
|
val is_alloc_model : Sil.typ -> Procname.t option -> bool
|
|
|
|
val is_objc_memory_model_controlled : string -> bool
|
|
|
|
val builtin_predefined_model : Clang_ast_t.stmt -> Sil.exp -> Sil.exp * bool
|
|
|
|
val is_assert_log : Sil.exp -> bool
|
|
|
|
val is_handleFailureInMethod : string -> bool
|
|
|
|
val is_modeled_builtin : string -> bool
|
|
|
|
val is_toll_free_bridging : Procname.t option -> bool
|
|
|
|
val get_predefined_model_method_signature : string -> string ->
|
|
(string -> string -> Procname.objc_method_kind -> Procname.t) ->
|
|
CFrontend_config.lang -> CMethod_signature.method_signature option
|
|
|
|
val is_dispatch_function_name : string -> (string * int) option
|