Home
last modified time | relevance | path

Searched refs:Proplist (Results 1 – 25 of 207) sorted by relevance

123456789

/dports/www/erlang-mochiweb/mochiweb-2.18.0/src/
H A Dmochilists.erl31 set_default({Key, Value}, Proplist) ->
32 case is_defined(Key, Proplist) of
34 Proplist;
36 [{Key, Value} | Proplist]
42 set_defaults(DefaultProps, Proplist) ->
50 is_defined(Key, Proplist) ->
51 lists:keyfind(Key, 1, Proplist) =/= false.
57 get_value(Key, Proplist) ->
58 get_value(Key, Proplist, undefined).
65 get_value(Key, Proplist, Default) ->
[all …]
/dports/www/erlang-mochiweb-basho/mochiweb-4d38821/src/
H A Dmochilists.erl13 set_default({Key, Value}, Proplist) ->
14 case is_defined(Key, Proplist) of
16 Proplist;
18 [{Key, Value} | Proplist]
24 set_defaults(DefaultProps, Proplist) ->
32 is_defined(Key, Proplist) ->
33 lists:keyfind(Key, 1, Proplist) =/= false.
39 get_value(Key, Proplist) ->
40 get_value(Key, Proplist, undefined).
47 get_value(Key, Proplist, Default) ->
[all …]
/dports/databases/couchdb3/apache-couchdb-3.2.1/src/mochiweb/src/
H A Dmochilists.erl31 set_default({Key, Value}, Proplist) ->
32 case is_defined(Key, Proplist) of
34 Proplist;
36 [{Key, Value} | Proplist]
42 set_defaults(DefaultProps, Proplist) ->
50 is_defined(Key, Proplist) ->
51 lists:keyfind(Key, 1, Proplist) =/= false.
57 get_value(Key, Proplist) ->
58 get_value(Key, Proplist, undefined).
65 get_value(Key, Proplist, Default) ->
[all …]
/dports/net/rabbitmq/rabbitmq-server-3.9.11/deps/cuttlefish/src/
H A Dcuttlefish_effective.erl113 proplist_to_kvcpaths(Proplist) ->
114 proplist_to_kvcpaths("", Proplist).
116 proplist_to_kvcpaths(Prefix, Proplist) ->
126 proplists:get_value(K, Proplist)),
135 keys_if_you_got_em(Proplist)
152 keys_if_you_got_em(Proplist) when is_list(Proplist) ->
153 proplists:get_keys(Proplist);
250 Proplist = [{a, [
261 Paths = proplist_to_kvcpaths(Proplist),
271 Proplist = [{riak_core,[
[all …]
H A Dcuttlefish_util.erl73 replace_proplist_value(Key, Value, Proplist) ->
74 lists:keystore(Key, 1, Proplist, {Key, Value}).
138 Proplist = [
144 NewProplist = replace_proplist_value("test2", 8, Proplist),
152 Proplist = [
157 NewProplist = replace_proplist_value("test3", 3, Proplist),
H A Dcuttlefish_variable.erl165 filter_by_prefix([H|_T]=Prefix, Proplist) when is_list(H) ->
166 [ T || {Key,_}=T <- Proplist, lists:prefix(Prefix, Key) ];
167 filter_by_prefix(StringPrefix, Proplist) ->
168 filter_by_prefix(tokenize(StringPrefix), Proplist).
228 Proplist = [
237 FilteredByList = filter_by_prefix(["prefixed"], Proplist),
245 FilteredByString = filter_by_prefix("prefixed", Proplist),
H A Dcuttlefish_mapping.erl72 parse({mapping, Variable, Mapping, Proplist}) ->
74 Datatype = case proplists:get_value(datatype, Proplist, string) of
97 default = proplists:get_value(default, Proplist),
98 commented = proplists:get_value(commented, Proplist),
100 level = proplists:get_value(level, Proplist, basic),
102 doc = proplists:get_value(doc, Proplist, []),
103 see = proplists:get_value(see, Proplist, []),
104 include_default = proplists:get_value(include_default, Proplist),
105 new_conf_value = proplists:get_value(new_conf_value, Proplist),
106 validators = proplists:get_value(validators, Proplist, []),
[all …]
/dports/net/rabbitmq/rabbitmq-server-3.9.11/deps/rabbitmq_shovel/src/
H A DElixir.RabbitMQ.CLI.Ctl.Commands.ShovelStatusCommand.erl106 fmt_status({'running' = St, Proplist}, Map) ->
108 source_protocol => proplists:get_value(src_protocol, Proplist,
110 source => proplists:get_value(src_uri, Proplist),
111 destination_protocol => proplists:get_value(dest_protocol, Proplist, undefined),
112 destination => proplists:get_value(dest_uri, Proplist),
113 termination_reason => <<>>}, details_to_map(Proplist));
125 details_to_map(Proplist) ->
130 maps:from_list([{New, proplists:get_value(Old, Proplist)}
131 || {Old, New} <- Keys, proplists:is_defined(Old, Proplist)]).
/dports/net/rabbitmq/rabbitmq-server-3.9.11/deps/rabbit/src/
H A Drabbit_peer_discovery.erl40 {ok, Proplist} ->
41 proplists:get_value(peer_discovery_backend, Proplist, ?DEFAULT_BACKEND);
52 {ok, Proplist} ->
53 proplists:get_value(node_type, Proplist, ?DEFAULT_NODE_TYPE);
62 {ok, Proplist} ->
63 Retries = proplists:get_value(lock_retry_limit, Proplist, 10),
64 Timeout = proplists:get_value(lock_retry_timeout, Proplist, 30000),
74 {ok, Proplist} ->
75 proplists:get_value(lock_acquisition_failure_mode, Proplist, fail);
150 {ok, Proplist} ->
[all …]
H A Drabbit_definitions_import_https.erl32 {ok, Proplist} ->
33 case proplists:get_value(import_backend, Proplist, undefined) of
40 load(Proplist) ->
41 rabbit_log:debug("Definitions proprties: ~p", [Proplist]),
42 URL = pget(url, Proplist),
51 TLSOptions = pget(ssl_options, Proplist, TLSOptions0),
H A Drabbit_definitions_import_local_filesystem.erl34 load(Proplist) when is_list(Proplist) ->
35 case pget(local_path, Proplist, undefined) of
91 {ok, Proplist} ->
92 case pget(import_backend, Proplist, undefined) of
110 {ok, Proplist} ->
111 pget(local_path, Proplist)
H A Drabbit_credential_validation.erl42 {ok, Proplist} ->
43 proplists:get_value(validation_backend, Proplist, ?DEFAULT_BACKEND)
/dports/lang/spidermonkey60/firefox-60.9.0/media/libcubeb/cubeb-pulse-rs/pulse-rs/src/
H A Dproplist.rs10 pub struct Proplist(*mut ffi::pa_proplist); struct
12 impl Proplist { implementation
29 pub unsafe fn from_raw_ptr(raw: *mut ffi::pa_proplist) -> Proplist { in from_raw_ptr() argument
30 return Proplist(raw); in from_raw_ptr()
/dports/www/firefox/firefox-99.0/third_party/rust/pulse/src/
H A Dproplist.rs10 pub struct Proplist(*mut ffi::pa_proplist); struct
12 impl Proplist { implementation
30 pub unsafe fn from_raw_ptr(raw: *mut ffi::pa_proplist) -> Proplist { in from_raw_ptr() argument
31 return Proplist(raw); in from_raw_ptr()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/pulse/src/
H A Dproplist.rs10 pub struct Proplist(*mut ffi::pa_proplist); struct
12 impl Proplist { impl
29 pub unsafe fn from_raw_ptr(raw: *mut ffi::pa_proplist) -> Proplist { in from_raw_ptr() argument
30 return Proplist(raw); in from_raw_ptr()
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/pulse/src/
H A Dproplist.rs10 pub struct Proplist(*mut ffi::pa_proplist); struct
12 impl Proplist { implementation
29 pub unsafe fn from_raw_ptr(raw: *mut ffi::pa_proplist) -> Proplist { in from_raw_ptr() argument
30 return Proplist(raw); in from_raw_ptr()
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/pulse/src/
H A Dproplist.rs10 pub struct Proplist(*mut ffi::pa_proplist); struct
12 impl Proplist { impl
29 pub unsafe fn from_raw_ptr(raw: *mut ffi::pa_proplist) -> Proplist { in from_raw_ptr() argument
30 return Proplist(raw); in from_raw_ptr()
/dports/net/lambdamoo/MOO-1.8.1/
H A Ddb_private.h38 typedef struct Proplist Proplist; typedef
46 struct Proplist { struct
74 Proplist propdefs;
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/libpulse-binding-2.25.0/src/
H A Dproplist.rs136 pub struct Proplist(pub(crate) ProplistInner); struct
138 unsafe impl Send for Proplist {} implementation
139 unsafe impl Sync for Proplist {} implementation
150 impl std::fmt::Debug for Proplist { implementation
196 impl IntoIterator for Proplist { implementation
209 impl PartialEq for Proplist { implementation
216 impl Proplist { impl
251 Proplist(ProplistInner { ptr: ptr, weak: true }) in from_raw_weak()
496 impl Clone for Proplist { implementation
516 let my_props = Proplist::new().unwrap(); in proplist_iter_lifetime()
[all …]
/dports/databases/couchdb3/apache-couchdb-3.2.1/src/couch_stats/src/
H A Dcouch_stats_httpd.erl59 nest(Proplist) ->
60 nest(Proplist, []).
75 to_ejson([{_, _}|_]=Proplist) ->
78 Proplist
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/observer/src/
H A Dcdv_gen_cb.erl28 Proplist =
30 {Fields,Proplist,TW}.
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/observer/src/
H A Dcdv_gen_cb.erl28 Proplist =
30 {Fields,Proplist,TW}.
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/lib/observer/src/
H A Dcdv_gen_cb.erl28 Proplist =
30 {Fields,Proplist,TW}.
/dports/lang/erlang-wx/otp-OTP-24.1.7/lib/observer/src/
H A Dcdv_gen_cb.erl28 Proplist =
30 {Fields,Proplist,TW}.
/dports/lang/erlang/otp-OTP-24.1.7/lib/observer/src/
H A Dcdv_gen_cb.erl28 Proplist =
30 {Fields,Proplist,TW}.

123456789