Home
last modified time | relevance | path

Searched refs:re_source (Results 1 – 25 of 38) sorted by relevance

12

/dports/textproc/htdig/htdig-3.2.0b6/db/
H A Dbt_method.c95 if (t->re_source != NULL)
96 CDB___os_freestr(t->re_source);
375 CDB___ram_set_re_source(dbp, re_source) in CDB___ram_set_re_source() argument
377 const char *re_source;
386 return (CDB___os_strdup(re_source, &t->re_source));
H A Dbt_recno.c106 if (t->re_source == NULL)
140 if (t->re_source != NULL)
141 CDB___os_freestr(t->re_source);
848 DB_APP_DATA, NULL, t->re_source, 0, NULL, &t->re_source)) != 0)
857 ret = CDB___os_open(t->re_source,
860 ret = CDB___os_open(t->re_source, DB_OSO_RDONLY, 0, &t->re_fh);
862 CDB___db_err(dbp->dbenv, "%s: %s", t->re_source, CDB_db_strerror(ret));
874 if ((ret = CDB___os_ioinfo(t->re_source,
885 if ((ret = CDB___os_mapfile(dbp->dbenv, t->re_source,
920 if (t->re_source == NULL) {
[all …]
H A Dbtree.h216 char *re_source; /* Source file name. */ member
H A Ddb_pr.c192 bt->re_source == NULL ? "" : bt->re_source);
/dports/textproc/mifluz/mifluz-0.26.0/db/
H A Dbt_method.c95 if (t->re_source != NULL)
96 CDB___os_freestr(t->re_source);
378 __ram_set_re_source(dbp, re_source) in __ram_set_re_source() argument
380 const char *re_source;
389 return (CDB___os_strdup(dbp->dbenv, re_source, &t->re_source));
H A Dbt_recno.c104 if (t->re_source != NULL && (ret = __ram_source(dbp)) != 0)
135 if (t->re_source != NULL)
136 CDB___os_freestr(t->re_source);
872 source = t->re_source;
880 DB_APP_DATA, NULL, source, 0, NULL, &t->re_source);
893 ret = CDB___os_open(dbp->dbenv, t->re_source,
897 t->re_source, DB_OSO_RDONLY, 0, &t->re_fh);
911 if ((ret = CDB___os_ioinfo(dbp->dbenv, t->re_source,
920 if ((ret = CDB___os_mapfile(dbp->dbenv, t->re_source,
958 if (t->re_source == NULL) {
[all …]
H A Dbtree.h236 char *re_source; /* Source file name. */ member
H A Ddb_pr.c183 bt->re_source == NULL ? "" : bt->re_source);
/dports/lang/qscheme/qscheme-0.5.1/
H A Dregex.c114 static SOBJ re_source; /* source string */ variable
136 re_source = str; in scm_re_match()
153 return( scm_substring(re_source, in scm_re_sub()
207 scm_gc_protect(&re_source); in scm_init_regex()
/dports/databases/db18/db-18.1.40/src/btree/
H A Dbt_method.c113 if (t->re_source != NULL)
114 __os_free(dbp->env, t->re_source);
735 *re_sourcep = t->re_source;
744 __ram_set_re_source(dbp, re_source) in __ram_set_re_source() argument
746 const char *re_source;
755 return (__os_strdup(dbp->env, re_source, &t->re_source));
H A Dbt_recno.c1059 DB_APP_DATA, t->re_source, NULL, &source)) != 0)
1061 __os_free(env, t->re_source);
1062 t->re_source = source;
1070 if ((t->re_fp = fopen(t->re_source, "rb")) == NULL) {
1072 __db_err(env, ret, "%s", t->re_source);
1110 if (t->re_source == NULL) {
1163 __db_err(env, ret, "%s", t->re_source);
1168 if ((fp = fopen(t->re_source, "wb")) == NULL) {
1170 __db_err(env, ret, "%s", t->re_source);
1209 t->re_source);
[all …]
/dports/databases/db5/db-5.3.28/src/btree/
H A Dbt_method.c113 if (t->re_source != NULL)
114 __os_free(dbp->env, t->re_source);
724 *re_sourcep = t->re_source;
733 __ram_set_re_source(dbp, re_source) in __ram_set_re_source() argument
735 const char *re_source;
744 return (__os_strdup(dbp->env, re_source, &t->re_source));
H A Dbt_recno.c1061 DB_APP_DATA, t->re_source, NULL, &source)) != 0)
1063 __os_free(env, t->re_source);
1064 t->re_source = source;
1072 if ((t->re_fp = fopen(t->re_source, "rb")) == NULL) {
1074 __db_err(env, ret, "%s", t->re_source);
1112 if (t->re_source == NULL) {
1165 __db_err(env, ret, "%s", t->re_source);
1170 if ((fp = fopen(t->re_source, "wb")) == NULL) {
1172 __db_err(env, ret, "%s", t->re_source);
1211 t->re_source);
[all …]
/dports/www/apache24/httpd-2.4.53/server/
H A Dutil_expr_eval.c197 if (!ctx->re_pmatch || !ctx->re_source || !*ctx->re_source in ap_expr_eval_re_backref()
198 || **ctx->re_source == '\0' || ctx->re_nmatch < n + 1) in ap_expr_eval_re_backref()
205 return apr_pstrndup(ctx->p, *ctx->re_source + ctx->re_pmatch[n].rm_so, len); in ap_expr_eval_re_backref()
305 *ctx->re_source = result ? word : NULL; in ap_expr_eval_comp()
833 AP_DEBUG_ASSERT(ctx->re_source != NULL); in ap_expr_exec_ctx()
894 ctx.re_source = source; in ap_expr_exec_re()
901 ctx.re_source = &tmp_source; in ap_expr_exec_re()
941 ctx.re_source = source; in ap_expr_str_exec_re()
949 ctx.re_source = &tmp_source; in ap_expr_str_exec_re()
/dports/www/htdigest/httpd-2.4.6/server/
H A Dutil_expr_eval.c167 if (!ctx->re_pmatch || !ctx->re_source || *ctx->re_source == '\0' || in ap_expr_eval_re_backref()
175 return apr_pstrndup(ctx->p, *ctx->re_source + ctx->re_pmatch[n].rm_so, len); in ap_expr_eval_re_backref()
277 *ctx->re_source = result ? word : NULL; in ap_expr_eval_comp()
805 AP_DEBUG_ASSERT(ctx->re_source != NULL); in ap_expr_exec_ctx()
866 ctx.re_source = source; in ap_expr_exec_re()
873 ctx.re_source = &tmp_source; in ap_expr_exec_re()
910 ctx.re_source = source; in ap_expr_str_exec_re()
918 ctx.re_source = &tmp_source; in ap_expr_str_exec_re()
/dports/www/htdigest/httpd-2.4.6/include/
H A Dap_expr.h123 const char **re_source; member
/dports/www/apache24/httpd-2.4.53/include/
H A Dap_expr.h123 const char **re_source; member
/dports/databases/db5/db-5.3.28/lang/cxx/
H A Dcxx_db.cpp757 DB_METHOD(get_re_source, (const char **re_source),
758 (db, re_source), DB_RETOK_STD)
759 DB_METHOD(set_re_source, (const char *re_source),
760 (db, re_source), DB_RETOK_STD)
/dports/databases/db18/db-18.1.40/lang/cxx/
H A Dcxx_db.cpp920 DB_METHOD(get_re_source, (const char **re_source),
921 (db, re_source), DB_RETOK_STD)
922 DB_METHOD(set_re_source, (const char *re_source),
923 (db, re_source), DB_RETOK_STD)
/dports/databases/db18/db-18.1.40/src/dbinc/
H A Dbtree.h508 char *re_source; /* Source file name. */ member
/dports/databases/db5/db-5.3.28/src/dbinc/
H A Dbtree.h493 char *re_source; /* Source file name. */ member
/dports/lang/perl5.32/perl-5.32.1/cpan/DB_File/
H A DDB_File.xs301 #define db_RE_bfname re_source
1163 info->re_source = name ;
/dports/lang/perl5.34/perl-5.34.0/cpan/DB_File/
H A DDB_File.xs301 #define db_RE_bfname re_source
1163 info->re_source = name ;
/dports/lang/perl5.30/perl-5.30.3/cpan/DB_File/
H A DDB_File.xs301 #define db_RE_bfname re_source
1148 info->re_source = name ;
/dports/databases/db18/db-18.1.40/lang/perl/DB_File/
H A DDB_File.xs301 #define db_RE_bfname re_source
1146 info->re_source = name ;

12