Home
last modified time | relevance | path

Searched refs:find_function (Results 1 – 4 of 4) sorted by relevance

/external/llvm/test/Bindings/Ocaml/
Dexecutionengine.ml81 (* find_function *)
82 match ExecutionEngine.find_function "dne" ee with
83 | Some _ -> raise (Failure "find_function 'dne' failed")
86 match ExecutionEngine.find_function "plus" ee with
87 | None -> raise (Failure "find_function 'plus' failed")
/external/dbus/dbus/
Ddbus-hash.c201 DBusFindEntryFunction find_function; /**< Function for finding entries */ member
332 table->find_function = find_direct_function; in _dbus_hash_table_new()
335 table->find_function = find_string_function; in _dbus_hash_table_new()
339 table->find_function = find_two_strings_function; in _dbus_hash_table_new()
787 entry = (* table->find_function) (table, key, create_if_not_found, &bucket, NULL); in _dbus_hash_iter_lookup()
1158 entry = (* table->find_function) (table, (char*) key, FALSE, NULL, NULL); in _dbus_hash_table_lookup_string()
1184 entry = (* table->find_function) (table, (char*) key, FALSE, NULL, NULL); in _dbus_hash_table_lookup_two_strings()
1210 entry = (* table->find_function) (table, _DBUS_INT_TO_POINTER (key), FALSE, NULL, NULL); in _dbus_hash_table_lookup_int()
1237 entry = (* table->find_function) (table, key, FALSE, NULL, NULL); in _dbus_hash_table_lookup_pointer()
1263 entry = (* table->find_function) (table, (void*) key, FALSE, NULL, NULL); in _dbus_hash_table_lookup_uintptr()
[all …]
/external/llvm/bindings/ocaml/executionengine/
Dllvm_executionengine.ml71 external find_function: string -> t -> Llvm.llvalue option
Dllvm_executionengine.mli123 (** [find_function n ee] finds the function named [n] defined in any of the
126 val find_function : string -> t -> Llvm.llvalue option val