Home
last modified time | relevance | path

Searched refs:shared_object (Results 1 – 25 of 170) sorted by relevance

1234567

/dports/databases/cppdb/cppdb-0.3.1/src/
H A Dshared_object.cpp49 shared_object::shared_object(std::string name,void *h) : in shared_object() function in cppdb::shared_object
54 shared_object::~shared_object() in ~shared_object()
58 ref_ptr<shared_object> shared_object::open(std::string const &name) in open()
60 ref_ptr<shared_object> dl; in open()
66 dl.reset(new shared_object(name,h)); in open()
77 void *shared_object::sym(std::string const &s) in sym()
81 void *shared_object::safe_sym(std::string const &s) in safe_sym()
/dports/databases/cppdb/cppdb-0.3.1/cppdb/
H A Dshared_object.h29 class CPPDB_API shared_object : public ref_counted {
30 shared_object() : handle_(0) {} in shared_object() function
31 shared_object(std::string name,void *h);
32 shared_object(shared_object const &);
33 void operator=(shared_object const &);
35 ~shared_object();
39 static ref_ptr<shared_object> open(std::string const &name);
/dports/devel/cpp-hocon/cpp-hocon-0.3.0/lib/inc/internal/
H A Dresolve_source.hpp26 resolve_source(shared_object root);
27 resolve_source(shared_object root, node path_from_root);
43 shared_object _root;
46 static value_with_path find_in_object(shared_object obj, path the_path);
47 … static result_with_path find_in_object(shared_object obj, resolve_context context, path the_path);
48 static value_with_path find_in_object(shared_object obj, path the_path, node parents);
51 shared_object root_must_be_obj(std::shared_ptr<const container> value) const;
H A Dsimple_includer.hpp18 shared_object include(shared_include_context context, std::string what) const override;
20shared_object include_without_fallback(shared_include_context context, std::string what) const;
22 shared_object include_file(shared_include_context context, std::string what) const override;
24 …static shared_object include_file_without_fallback(shared_include_context context, std::string wha…
28 static shared_object from_basename(std::shared_ptr<name_source> source,
46 shared_object include(shared_include_context context, std::string what) const;
48 shared_object include_file(shared_include_context context, std::string what) const;
H A Dconfig_parser.hpp45 static shared_object create_value_under_path(path p, shared_value value);
50 shared_object parse_object(shared_node_object n);
/dports/net/rclone/rclone-1.57.0/librclone/python/
H A Dtest_rclone.py13 shared_object = "librclone.so" variable in TestRclone
18 cls.shared_object = "./librclone.so"
19 Rclone.build(cls.shared_object)
20 cls.rclone = Rclone(shared_object=cls.shared_object)
25 os.remove(cls.shared_object)
H A Drclone.py63 def __init__(self, shared_object=f"./librclone{'.dll' if os.name == 'nt' else '.so'}"): argument
64 self.rclone = CDLL(shared_object)
99 def build(cls, shared_object): argument
105 if os.path.exists(shared_object):
107 print("Building "+shared_object)
108 …subprocess.check_call(["go", "build", "--buildmode=c-shared", "-o", shared_object, "github.com/rcl…
/dports/devel/cpp-hocon/cpp-hocon-0.3.0/lib/inc/hocon/
H A Dconfig_object.hpp31 virtual shared_object with_value(path raw_path, shared_value value) const = 0;
32 virtual shared_object with_value(std::string key, shared_value value) const = 0;
67 … virtual shared_object new_copy(resolve_status const& status, shared_origin origin) const = 0;
73 virtual shared_object without_path(path raw_path) const = 0;
74 virtual shared_object with_only_path(path raw_path) const = 0;
75 virtual shared_object with_only_path_or_null(path raw_path) const = 0;
H A Dconfig.hpp248 virtual shared_object root() const;
597 virtual std::vector<shared_object> get_object_list(std::string const& path) const;
681 config(shared_object object);
683 static shared_object env_variables_as_config_object();
717 path parent, shared_object obj);
719 static shared_value find_key(shared_object self, std::string const& key,
721 static shared_value find_key_or_null(shared_object self, std::string const& key,
723 static shared_value find_or_null(shared_object self, path desired_path,
728 shared_object _object;
/dports/devel/cpp-hocon/cpp-hocon-0.3.0/lib/inc/internal/values/
H A Dsimple_config_object.hpp40 shared_value merged_with_object(shared_object fallback) const override;
42 shared_object with_value(path raw_path, shared_value value) const override;
43 shared_object with_value(std::string key, shared_value value) const override;
44 shared_object without_path(path raw_path) const override;
45 shared_object with_only_path(path raw_path) const override;
54 shared_object with_only_path_or_null(path raw_path) const override;
98shared_object new_copy(resolve_status const& new_status, shared_origin new_origin) const override;
H A Dconfig_delayed_merge_object.hpp18 shared_object with_value(path raw_path, shared_value value) const override;
19 shared_object with_value(std::string key, shared_value value) const override;
44 shared_object without_path(path raw_path) const override;
45 shared_object with_only_path(path raw_path) const override;
46 shared_object with_only_path_or_null(path raw_path) const override;
47 shared_object new_copy(resolve_status const& status, shared_origin origin) const override;
/dports/devel/cpp-hocon/cpp-hocon-0.3.0/lib/src/
H A Dsimple_includer.cc32 shared_object simple_includer::include(shared_include_context context, string what) const { in include()
43shared_object simple_includer::include_without_fallback(shared_include_context context, std::strin… in include_without_fallback()
49 shared_object simple_includer::include_file(shared_include_context context, string what) const { in include_file()
61shared_object simple_includer::include_file_without_fallback(shared_include_context context, std::… in include_file_without_fallback()
80shared_object simple_includer::from_basename(std::shared_ptr<name_source> source, std::string name, in from_basename()
82 shared_object obj; in from_basename()
189shared_object simple_includer::proxy::include(shared_include_context context, string what) const { in include()
193shared_object simple_includer::proxy::include_file(shared_include_context context, std::string wha… in include_file()
H A Dresolve_source.cc17 resolve_source::resolve_source(shared_object root) in resolve_source()
20 resolve_source::resolve_source(shared_object root, node path_from_root) in resolve_source()
109 …resolve_source::result_with_path resolve_source::find_in_object(shared_object obj, resolve_context… in find_in_object()
133 … resolve_source::value_with_path resolve_source::find_in_object(shared_object obj, path the_path) { in find_in_object()
141 …resolve_source::value_with_path resolve_source::find_in_object(shared_object obj, path the_path, n… in find_in_object()
160 shared_object resolve_source::root_must_be_obj(shared_ptr<const container> value) const { in root_must_be_obj()
H A Dconfig.cc51 config::config(shared_object object) : _object(move(object)) { } in config()
53 shared_object config::root() const { in root()
112 shared_object obj) { in find_paths()
145 … shared_value config::find_key(shared_object self, string const& key, config_value::type expected, in find_key()
150 …shared_value config::find_key_or_null(shared_object self, string const& key, config_value::type ex… in find_key_or_null()
170 shared_value config::find_or_null(shared_object self, path desired_path, in find_or_null()
178 shared_object o = dynamic_pointer_cast<const config_object>( in find_or_null()
271 std::vector<shared_object> config::get_object_list(std::string const& path) const { in get_object_list()
273 vector<shared_object> object_list; in get_object_list()
275 shared_object obj = dynamic_pointer_cast<const config_object>(item); in get_object_list()
[all …]
/dports/devel/dotconf/dotconf-1.3/examples/duplicates/
H A Dduplicate.c203 void *shared_object = 0; in DOTCONF_CB() local
225 shared_object = handles[handle_idx]; in DOTCONF_CB()
238 module_options = dlsym(shared_object, "options"); in DOTCONF_CB()
243 cmd->data.list[1], shared_object, error); in DOTCONF_CB()
244 dlclose(shared_object); in DOTCONF_CB()
278 scope_options[0].info = shared_object; in DOTCONF_CB()
285 scope_options[1].context = (long)shared_object; in DOTCONF_CB()
296 module_options[opt_idx].context = (long)shared_object; in DOTCONF_CB()
/dports/devel/cpp-hocon/cpp-hocon-0.3.0/lib/src/values/
H A Dconfig_delayed_merge_object.cc45 shared_object config_delayed_merge_object::with_value(path raw_path, shared_value value) const { in with_value()
49 shared_object config_delayed_merge_object::with_value(string key, shared_value value) const { in with_value()
53shared_object config_delayed_merge_object::new_copy(resolve_status const& status, shared_origin or… in new_copy()
144 shared_object config_delayed_merge_object::without_path(path raw_path) const { in without_path()
148 shared_object config_delayed_merge_object::with_only_path(path raw_path) const { in with_only_path()
152 shared_object config_delayed_merge_object::with_only_path_or_null(path raw_path) const { in with_only_path_or_null()
H A Dsimple_config_object.cc83 shared_object simple_config_object::with_value(path raw_path, shared_value value) const { in with_value()
104 shared_object simple_config_object::without_path(path raw_path) const { in without_path()
133 shared_object simple_config_object::with_only_path(path raw_path) const { in with_only_path()
134 shared_object o = with_only_path_or_null(raw_path); in with_only_path()
143 shared_object simple_config_object::with_only_path_or_null(path raw_path) const { in with_only_path_or_null()
148 shared_object o; in with_only_path_or_null()
163 shared_object simple_config_object::with_value(std::string key, shared_value value) const { in with_value()
218shared_object simple_config_object::new_copy(resolve_status const &new_status, shared_origin new_o… in new_copy()
358 shared_value simple_config_object::merged_with_object(shared_object abstract_fallback) const { in merged_with_object()
/dports/math/polymake/polymake-4.5/lib/core/include/internal/
H A Dshared_object.h284 class shared_object
402 shared_object* o=static_cast<shared_object*>(al); in divorce()
411 shared_object() in shared_object() function
420 shared_object(const shared_object& s) in shared_object() function
424 shared_object(shared_object& s) in shared_object() function
425 : shared_object(const_cast<const shared_object&>(s)) {} in shared_object()
428 shared_object(shared_object&& s) = delete;
433 shared_object& operator= (const shared_object& s)
441 shared_object& operator= (shared_object&& s) = delete;
458 shared_object& assign_copy(const shared_object& s) in assign_copy()
[all …]
/dports/math/py-pymc3/pymc-3.11.4/pymc3/
H A Ddata.py527 shared_object = theano.shared(pm.model.pandas_to_array(value), name)
531 if not (dims is None or len(dims) == shared_object.ndim):
535 expected=shared_object.ndim,
545 shared_object.dshape = tuple(shared_object.shape.eval())
548 if shared_object.dshape != shape_dims:
551 actual=shared_object.dshape,
555 model.add_random_variable(shared_object, dims=dims)
557 return shared_object
/dports/databases/soci/soci-4.0.1/src/core/
H A Dbackend-loader.cpp195 void do_register_backend(std::string const & name, std::string const & shared_object) in do_register_backend() argument
204 if (shared_object.empty() == false) in do_register_backend()
206 h = DLOPEN(shared_object.c_str()); in do_register_backend()
290 std::string const& name, std::string const& shared_object) in register_backend() argument
294 do_register_backend(name, shared_object); in register_backend()
/dports/devel/cpp-hocon/cpp-hocon-0.3.0/lib/tests/
H A Dconfig_substitution_test.cc20 static shared_object simple_object() { in simple_object()
37 static shared_object subst_cycle_object() { in subst_cycle_object()
53 static shared_object subst_cycle_object_optional_link() { in subst_cycle_object_optional_link()
69 static shared_object subst_chain_object() { in subst_chain_object()
81 static shared_object subst_complex_object() { in subst_complex_object()
100 static shared_object subst_env_var_object() { in subst_env_var_object()
115 static shared_config resolve_without_fallbacks (shared_object v) { in resolve_without_fallbacks()
120 static shared_value resolve_without_fallbacks (shared_value s, shared_object root) { in resolve_without_fallbacks()
125 static shared_config resolve (shared_object v) { in resolve()
/dports/devel/make++/makepp-2.0/Mpp/Signature/
H A Dshared_object.pm3 package Mpp::Signature::shared_object;
22 our $shared_object = bless \@ISA; # Make the singleton object.
/dports/devel/etl/synfig-1.2.2/ETL/ETL/
H A D_handle.h67 class shared_object
76 shared_object():refcount(0) { } in shared_object() function
77 shared_object(const shared_object&):refcount(0) { } in shared_object() argument
78 shared_object& operator= (const shared_object&) { return *this; }
81 virtual ~shared_object() { } in ~shared_object()
83 ~shared_object() { } in ~shared_object()
367 class rshared_object : public shared_object
378 …rshared_object(const rshared_object &other): shared_object(other), rrefcount(0),front_(0),back_(0)… in rshared_object()
/dports/graphics/synfig/synfig-1.2.2/ETL/ETL/
H A D_handle.h67 class shared_object
76 shared_object():refcount(0) { } in shared_object() function
77 shared_object(const shared_object&):refcount(0) { } in shared_object() function
78 shared_object& operator= (const shared_object&) { return *this; }
81 virtual ~shared_object() { } in ~shared_object()
83 ~shared_object() { } in ~shared_object()
367 class rshared_object : public shared_object
378 …rshared_object(const rshared_object &other): shared_object(other), rrefcount(0),front_(0),back_(0)… in rshared_object()
/dports/graphics/synfigstudio/synfig-1.2.2/ETL/ETL/
H A D_handle.h67 class shared_object
76 shared_object():refcount(0) { } in shared_object() function
77 shared_object(const shared_object&):refcount(0) { } in shared_object() function
78 shared_object& operator= (const shared_object&) { return *this; }
81 virtual ~shared_object() { } in ~shared_object()
83 ~shared_object() { } in ~shared_object()
367 class rshared_object : public shared_object
378 …rshared_object(const rshared_object &other): shared_object(other), rrefcount(0),front_(0),back_(0)… in rshared_object()

1234567