Home
last modified time | relevance | path

Searched refs:conn_mod (Results 1 – 9 of 9) sorted by relevance

/dports/databases/elixir-ecto/ecto-2.2.10/lib/ecto/adapters/sql/
H A Dsandbox.ex306 def disconnect(err, {conn_mod, state, _in_transaction?}) do
307 conn_mod.disconnect(err, state)
314 def handle_begin(opts, {conn_mod, state, false}) do
317 case conn_mod.handle_begin(opts, state) do
319 {:ok, value, {conn_mod, state, true}}
321 {kind, err, {conn_mod, state, false}}
324 def handle_commit(opts, {conn_mod, state, true}) do
326 proxy(:handle_commit, {conn_mod, state, false}, [opts])
328 def handle_rollback(opts, {conn_mod, state, true}) do
359 result = apply(conn_mod, fun, args ++ [state])
[all …]
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/lib/common_test/src/
H A Dcth_conn_log.erl65 -type conn_mod() :: ct:conn_log_mod(). type
71 Result :: {ok,[{conn_mod(),{log_type(),[ct:key_or_name()]}}]}.
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/common_test/src/
H A Dcth_conn_log.erl65 -type conn_mod() :: ct:conn_log_mod(). type
71 Result :: {ok,[{conn_mod(),{log_type(),[ct:key_or_name()]}}]}.
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/common_test/src/
H A Dcth_conn_log.erl65 -type conn_mod() :: ct:conn_log_mod(). type
71 Result :: {ok,[{conn_mod(),{log_type(),[ct:key_or_name()]}}]}.
/dports/lang/erlang-wx/otp-OTP-24.1.7/lib/common_test/src/
H A Dcth_conn_log.erl65 -type conn_mod() :: ct:conn_log_mod(). type
71 Result :: {ok,[{conn_mod(),{log_type(),[ct:key_or_name()]}}]}.
/dports/lang/erlang-java/otp-OTP-24.1.7/lib/common_test/src/
H A Dcth_conn_log.erl65 -type conn_mod() :: ct:conn_log_mod(). type
71 Result :: {ok,[{conn_mod(),{log_type(),[ct:key_or_name()]}}]}.
/dports/lang/erlang-runtime21/otp-OTP-21.3.8.24/lib/common_test/src/
H A Dcth_conn_log.erl65 -type conn_mod() :: ct:conn_log_mod(). type
71 Result :: {ok,[{conn_mod(),{log_type(),[ct:key_or_name()]}}]}.
/dports/lang/erlang/otp-OTP-24.1.7/lib/common_test/src/
H A Dcth_conn_log.erl65 -type conn_mod() :: ct:conn_log_mod(). type
71 Result :: {ok,[{conn_mod(),{log_type(),[ct:key_or_name()]}}]}.
/dports/databases/elixir-db_connection/db_connection-1.1.3/lib/
H A Ddb_connection.ex79 defstruct [:pool_mod, :pool_ref, :conn_mod, :conn_ref]
86 conn_mod: any,
486 def start_link(conn_mod, opts) do
488 apply(pool_mod, :start_link, [conn_mod, opts])
498 def child_spec(conn_mod, opts, child_opts \\ []) do
929 {:ok, pool_ref, conn_mod, conn_state} ->
931 conn_mod: conn_mod, conn_ref: make_ref()}
963 defp handle(%DBConnection{conn_mod: conn_mod} = conn, fun, args, opts) do
966 apply(conn_mod, fun, args ++ [opts, conn_state])
1341 %DBConnection{conn_mod: conn_mod} = conn
[all …]