Searched refs:cur_env (Results 1 - 3 of 3) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/db_codegen/
H A Dcode_capi.c28 ENV_OBJ *cur_env; local
46 TAILQ_FOREACH(cur_env, &env_tree, q)
47 TAILQ_FOREACH(cur_db, &cur_env->dbq, q)
52 TAILQ_FOREACH(cur_env, &env_tree, q)
53 TAILQ_FOREACH(cur_db, &cur_env->dbq, q)
100 ENV_OBJ *cur_env; local
111 TAILQ_FOREACH(cur_env, &env_tree, q) {
112 if (!cur_env->standalone)
115 cur_env->prefix);
116 TAILQ_FOREACH(cur_db, &cur_env
138 ENV_OBJ *cur_env; local
[all...]
H A Dcode_parse.c13 static ENV_OBJ *cur_env; /* Current objects */ variable
85 if (__os_calloc(NULL, 1, sizeof(*cur_env), &cur_env) ||
86 __os_strdup(NULL, argv[1], &cur_env->prefix))
88 TAILQ_INIT(&cur_env->dbq);
90 TAILQ_INSERT_TAIL(&env_tree, cur_env, q);
95 cur_env->home = ".";
103 if (__os_strdup(NULL, argv[1], &cur_env->home))
111 cur_env->gbytes = uv;
113 cur_env
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_cxx/excxx_repquote/
H A DRepQuoteExample.cpp89 DbEnv cur_env; member in class:RepQuoteExample
221 RepQuoteExample::RepQuoteExample() : app_config(0), cur_env(0) {
228 cur_env.set_app_private(&app_data);
229 cur_env.set_errfile(stderr);
230 cur_env.set_errpfx(progname);
231 cur_env.set_event_notify(event_callback);
232 cur_env.repmgr_set_ack_policy(DB_REPMGR_ACKS_ALL);
234 cur_env.repmgr_set_local_site(app_config->this_host.host,
239 cur_env.repmgr_add_remote_site(cur->host, cur->port,
244 cur_env
[all...]

Completed in 53 milliseconds