Home
last modified time | relevance | path

Searched refs:meta (Results 1 – 25 of 80) sorted by relevance

1234

/titanic_50/usr/src/cmd/sendmail/db/btree/
H A Dbt_open.c210 BTMETA *meta; local
231 memp_fget(dbp->mpf, &pgno, DB_MPOOL_CREATE, (PAGE **)&meta)) != 0) {
241 if (meta->magic != 0) {
242 t->bt_maxkey = meta->maxkey;
243 t->bt_minkey = meta->minkey;
245 (void)memp_fput(dbp->mpf, (PAGE *)meta, 0);
251 memset(meta, 0, sizeof(BTMETA));
252 ZERO_LSN(meta->lsn);
253 meta->pgno = PGNO_METADATA;
254 meta->magic = DB_BTREEMAGIC;
[all …]
H A Dbt_page.c76 BTMETA *meta; local
84 meta = NULL;
91 if ((ret = memp_fget(dbp->mpf, &pgno, 0, (PAGE **)&meta)) != 0)
94 if (meta->free == PGNO_INVALID) {
100 pgno = meta->free;
103 meta->free = h->next_pgno;
109 &meta->lsn, 0, dbp->log_fileid, &meta->lsn, &h->lsn,
110 h->pgno, (u_int32_t)type, meta->free)) != 0)
112 LSN(h) = LSN(meta);
115 (void)memp_fput(dbp->mpf, (PAGE *)meta, DB_MPOOL_DIRTY);
[all …]
H A Dbt_stat.c38 BTMETA *meta; local
87 if ((ret = memp_fget(dbp->mpf, &pgno, 0, (PAGE **)&meta)) != 0)
91 if (F_ISSET(meta, BTM_DUP))
93 if (F_ISSET(meta, BTM_FIXEDLEN))
95 if (F_ISSET(meta, BTM_RECNUM))
97 if (F_ISSET(meta, BTM_RENUMBER))
101 sp->bt_minkey = meta->minkey;
102 sp->bt_maxkey = meta->maxkey;
103 sp->bt_re_len = meta->re_len;
104 sp->bt_re_pad = meta->re_pad;
[all …]
H A Dbt_rec.c45 BTMETA *meta; local
68 if ((ret = memp_fget(mpf, &pgno, 0, &meta)) != 0) {
81 (void)memp_fput(mpf, meta, 0);
99 argp->pgno, PGNO_INVALID, meta->free, 0, P_INVALID);
105 (void)memp_fput(mpf, meta, 0);
111 cmp_n = log_compare(lsnp, &LSN(meta));
112 cmp_p = log_compare(&LSN(meta), &argp->meta_lsn);
115 meta->lsn = *lsnp;
116 meta->free = argp->next;
120 meta->lsn = argp->meta_lsn;
[all …]
/titanic_50/usr/src/uts/common/inet/sctp/
H A Dsctp_output.c694 mblk_t *meta; in sctp_find_fast_rexmit_mblks() local
707 for (meta = sctp->sctp_xmit_head; meta != NULL; meta = meta->b_next) { in sctp_find_fast_rexmit_mblks()
708 msg_hdr = (sctp_msg_hdr_t *)meta->b_rptr; in sctp_find_fast_rexmit_mblks()
709 if (SCTP_IS_MSG_ABANDONED(meta) || in sctp_find_fast_rexmit_mblks()
710 SCTP_MSG_TO_BE_ABANDONED(meta, msg_hdr, sctp)) { in sctp_find_fast_rexmit_mblks()
713 for (mp = meta->b_cont; mp != NULL; mp = mp->b_next) { in sctp_find_fast_rexmit_mblks()
815 sctp_get_msg_to_send(sctp_t *sctp, mblk_t **mp, mblk_t *meta, int *error, in sctp_get_msg_to_send() argument
829 while (meta != NULL) { in sctp_get_msg_to_send()
830 tmp_meta = meta->b_next; in sctp_get_msg_to_send()
831 msg_hdr = (sctp_msg_hdr_t *)meta->b_rptr; in sctp_get_msg_to_send()
[all …]
H A Dsctp_notify.c205 sctp_sendfail_sent(sctp_t *sctp, mblk_t *meta, int error) in sctp_sendfail_sent() argument
213 sctp_free_msg(meta); in sctp_sendfail_sent()
220 nmp = meta->b_cont; in sctp_sendfail_sent()
221 tail = meta; in sctp_sendfail_sent()
245 sctp_sendfail(sctp, meta, flags, error); in sctp_sendfail_sent()
252 sctp_sendfail_event(sctp_t *sctp, mblk_t *meta, int error, boolean_t chunkified) in sctp_sendfail_event() argument
258 if (meta == NULL) in sctp_sendfail_event()
262 sctp_free_msg(meta); in sctp_sendfail_event()
268 sctp_sendfail_sent(sctp, meta, error); in sctp_sendfail_event()
275 mp = meta->b_cont; in sctp_sendfail_event()
[all …]
H A Dsctp_opt_data.c71 mblk_t *meta, *mp; in sctp_get_status() local
114 for (meta = sctp->sctp_xmit_head; meta; meta = meta->b_next) { in sctp_get_status()
115 for (mp = meta->b_cont; mp; mp = mp->b_next) { in sctp_get_status()
131 for (meta = sctp->sctp_instr[i].istr_reass; in sctp_get_status()
132 meta != NULL; meta = meta->b_next) { in sctp_get_status()
133 for (mp = meta->b_cont; mp; mp = mp->b_cont) { in sctp_get_status()
142 for (meta = sctp->sctp_uo_frags; meta != NULL; meta = meta->b_next) in sctp_get_status()
/titanic_50/usr/src/cmd/mandoc/
H A Dman_validate.c139 man->meta.hasbody = 1; in check_root()
141 if (NULL == man->meta.title) { in check_root()
150 man->meta.title = mandoc_strdup(""); in check_root()
151 man->meta.msec = mandoc_strdup(""); in check_root()
152 man->meta.date = man->quick ? mandoc_strdup("") : in check_root()
305 free(man->meta.title); in post_TH()
306 free(man->meta.vol); in post_TH()
307 free(man->meta.source); in post_TH()
308 free(man->meta.msec); in post_TH()
309 free(man->meta.date); in post_TH()
[all …]
H A Dman_term.c51 const struct man_meta *meta
141 const struct man_meta *meta; in terminal_man() local
152 meta = man_meta(man); in terminal_man()
167 n->child->next->child, meta); in terminal_man()
176 term_begin(p, print_man_head, print_man_foot, meta); in terminal_man()
179 print_man_nodelist(p, &mt, n, meta); in terminal_man()
321 print_man_node(p, mt, nn, meta); in pre_alternate()
604 print_man_node(p, mt, n->child, meta); in pre_IP()
691 print_man_node(p, mt, nn, meta); in pre_TP()
912 print_man_node(p, mt, n->child->child, meta); in post_UR()
[all …]
H A Dmdoc_validate.c730 if (mdoc->meta.title != NULL) in pre_dt()
733 else if (mdoc->meta.os != NULL) in pre_dt()
742 if (mdoc->meta.os != NULL) in pre_os()
754 if (mdoc->meta.date != NULL) in pre_dd()
760 else if (mdoc->meta.title != NULL) in pre_dd()
763 else if (mdoc->meta.os != NULL) in pre_dd()
967 if (NULL != mdoc->meta.name) in post_nm()
970 mdoc_deroff(&mdoc->meta.name, n); in post_nm()
972 if (NULL == mdoc->meta.name) in post_nm()
1540 if (mdoc->meta.date == NULL) in post_root()
[all …]
H A Dmdoc_term.c45 const struct mdoc_meta *meta, \
255 const struct mdoc_meta *meta; in terminal_mdoc() local
266 meta = mdoc_meta(mdoc); in terminal_mdoc()
273 meta, n->child->next->child); in terminal_mdoc()
282 term_begin(p, print_mdoc_head, print_mdoc_foot, meta); in terminal_mdoc()
286 print_mdoc_nodelist(p, NULL, meta, n); in terminal_mdoc()
297 print_mdoc_node(p, pair, meta, n); in print_mdoc_nodelist()
359 (p, &npair, meta, n); in print_mdoc_node()
364 print_mdoc_nodelist(p, &npair, meta, n->child); in print_mdoc_node()
379 (void)(*termacts[n->tok].post)(p, &npair, meta, n); in print_mdoc_node()
[all …]
H A Dmdoc_man.c32 #define DECL_ARGS const struct mdoc_meta *meta, struct mdoc_node *n
549 const struct mdoc_meta *meta; in man_mdoc() local
552 meta = mdoc_meta(mdoc); in man_mdoc()
556 meta->title, in man_mdoc()
557 (meta->msec == NULL ? "" : meta->msec), in man_mdoc()
558 meta->date, meta->os, meta->vol); in man_mdoc()
570 print_node(meta, n); in man_mdoc()
617 cond = act->cond == NULL || (*act->cond)(meta, n); in print_node()
619 do_sub = (*act->pre)(meta, n); in print_node()
629 print_node(meta, sub); in print_node()
[all …]
H A Dmdoc.c108 return(&mdoc->meta); in mdoc_meta()
120 free(mdoc->meta.msec); in mdoc_free1()
121 free(mdoc->meta.vol); in mdoc_free1()
122 free(mdoc->meta.arch); in mdoc_free1()
123 free(mdoc->meta.date); in mdoc_free1()
124 free(mdoc->meta.title); in mdoc_free1()
125 free(mdoc->meta.os); in mdoc_free1()
126 free(mdoc->meta.name); in mdoc_free1()
136 memset(&mdoc->meta, 0, sizeof(struct mdoc_meta)); in mdoc_alloc1()
264 if (mdoc->meta.title == NULL) { in mdoc_macro()
[all …]
H A Dmdoc_html.c37 #define MDOC_ARGS const struct mdoc_meta *meta, \
345 print_mdoc_head(meta, n, h); in print_mdoc()
352 print_mdoc_nodelist(meta, n, h); in print_mdoc()
362 bufcat(h, meta->title); in print_mdoc_head()
363 if (meta->msec) in print_mdoc_head()
364 bufcat_fmt(h, "(%s)", meta->msec); in print_mdoc_head()
365 if (meta->arch) in print_mdoc_head()
366 bufcat_fmt(h, " (%s)", meta->arch); in print_mdoc_head()
377 print_mdoc_node(meta, n, h); in print_mdoc_nodelist()
394 child = mdoc_root_pre(meta, n, h); in print_mdoc_node()
[all …]
H A Dman.c76 return(&man->meta); in man_meta()
138 free(man->meta.title); in man_free1()
139 free(man->meta.source); in man_free1()
140 free(man->meta.date); in man_free1()
141 free(man->meta.vol); in man_free1()
142 free(man->meta.msec); in man_free1()
149 memset(&man->meta, 0, sizeof(struct man_meta)); in man_alloc1()
/titanic_50/usr/src/lib/libast/common/regex/
H A Dregdecomp.c32 #define meta(f,c,t,e,d) do { if (ismeta(c,t,e,d)) sfputc(f, '\\'); sfputc(f, c); } while (0) macro
112 meta(sp, '<', type, 1, delimiter); in decomp()
115 meta(sp, '<', type, 1, delimiter); in decomp()
265 meta(sp, e->re.onechar, type, 0, delimiter); in decomp()
278 meta(sp, '+', type, 1, delimiter); in decomp()
281 meta(sp, '{', type, 1, delimiter); in decomp()
283 meta(sp, '}', type, 1, delimiter); in decomp()
288 meta(sp, '{', type, 1, delimiter); in decomp()
290 meta(sp, '}', type, 1, delimiter); in decomp()
293 meta(sp, '?', type, 1, delimiter); in decomp()
[all …]
/titanic_50/usr/src/lib/libsqlite/src/
H A Dmain.c197 int meta[SQLITE_N_BTREE_META]; in sqliteInitOne() local
271 rc = sqliteBtreeGetMeta(db->aDb[iDb].pBt, meta); in sqliteInitOne()
277 db->aDb[iDb].schema_cookie = meta[1]; in sqliteInitOne()
279 db->next_cookie = meta[1]; in sqliteInitOne()
280 db->file_format = meta[2]; in sqliteInitOne()
281 size = meta[3]; in sqliteInitOne()
284 db->safety_level = meta[4]; in sqliteInitOne()
285 if( meta[6]>0 && meta[6]<=2 && db->temp_store==0 ){ in sqliteInitOne()
286 db->temp_store = meta[6]; in sqliteInitOne()
305 }else if( iDb!=1 && (db->file_format!=meta[2] || db->file_format<4) ){ in sqliteInitOne()
[all …]
/titanic_50/usr/src/lib/libsqlite/test/
H A Dtable.test32 SELECT sql FROM sqlite_master WHERE type!='meta'
43 execsql {SELECT name, tbl_name, type FROM sqlite_master WHERE type!='meta'}
52 execsql {SELECT name, tbl_name, type from sqlite_master WHERE type!='meta'}
59 execsql {SELECT * FROM sqlite_master WHERE type!='meta'}
68 execsql {SELECT name FROM sqlite_master WHERE type!='meta'}
75 execsql {SELECT name FROM sqlite_master WHERE type!='meta'}
79 execsql {SELECT name FROM "sqlite_master" WHERE type!='meta'}
83 execsql {SELECT name as "X" FROM sqlite_master WHERE type!='meta'}
87 execsql {SELECT name FROM "sqlite_master" WHERE type!='meta'}
110 execsql {DROP TABLE test2; SELECT name FROM sqlite_master WHERE type!='meta'}
[all …]
H A Dversion.test45 set ::meta [btree_get_meta $::bt]
47 lindex $::meta 2
54 set m2 [lreplace $::meta 2 2 [expr {$::VX+1}]]
66 set m2 [lreplace $::meta 2 2 [expr {$::VX-1}]]
80 set m2 [lreplace $::meta 2 2 2]
90 set ::meta [btree_get_meta $::bt]
91 lindex $::meta 2
152 set m2 [lreplace $::meta 2 2 2]
176 set m2 [lreplace $::meta 2 2 2]
H A Dindex.test27 execsql {SELECT name FROM sqlite_master WHERE type!='meta' ORDER BY name}
42 execsql {SELECT name FROM sqlite_master WHERE type!='meta' ORDER BY name}
49 execsql {SELECT name FROM sqlite_master WHERE type!='meta' ORDER BY name}
117 execsql {SELECT name FROM sqlite_master WHERE type!='meta' ORDER BY name}
158 execsql {SELECT name FROM sqlite_master WHERE type!='meta' ORDER BY name}
169 execsql {SELECT name FROM sqlite_master WHERE type!='meta'}
182 execsql {SELECT name FROM sqlite_master WHERE type!='meta' ORDER BY name}
189 execsql {SELECT name FROM sqlite_master WHERE type!='meta' ORDER BY name}
194 execsql {SELECT name FROM sqlite_master WHERE type!='meta' ORDER BY name}
203 SELECT name FROM sqlite_master WHERE type!='meta' ORDER BY name;
[all …]
/titanic_50/usr/src/lib/libcmd/common/
H A Dcat.c141 unsigned char meta[4]; in vcat() local
144 meta[0] = 'M'; in vcat()
145 meta[1] = '-'; in vcat()
321 meta[2] = '^'; in vcat()
325 meta[3] = printof(n); in vcat()
326 sfwrite(op, (char*)meta, 4); in vcat()
332 meta[2] = c & ~0200; in vcat()
333 sfwrite(op, (char*)meta, 3); in vcat()
/titanic_50/usr/src/lib/libbsm/
H A Daudit_class.txt59 0x00070000:am:administrative (meta-class)
61 0x000f0000:ad:old administrative (meta-class)
64 0x00300000:pc:process (meta-class)
68 0x01c00000:xx:X - all X events (meta-class)
72 0xffffffff:all:all classes (meta-class)
/titanic_50/usr/src/cmd/mdb/common/modules/sctp/
H A Dsctp.c218 dump_msghdr(mblk_t *meta) in dump_msghdr() argument
222 if (mdb_vread(&smh, sizeof (smh), (uintptr_t)meta->b_rptr) == -1) in dump_msghdr()
226 meta->b_rptr, SCTP_CHUNK_DEST(meta)); in dump_msghdr()
274 mblk_t meta, mp; in sctp_sent_list() local
279 if (mdb_vread(&meta, sizeof (meta), (uintptr_t)addr) == -1) in sctp_sent_list()
283 dump_msghdr(&meta); in sctp_sent_list()
285 if (meta.b_cont == NULL) { in sctp_sent_list()
290 (uintptr_t)meta.b_cont) == -1) { in sctp_sent_list()
302 if (meta.b_next == NULL) in sctp_sent_list()
304 if (mdb_vread(&meta, sizeof (meta), in sctp_sent_list()
[all …]
/titanic_50/usr/src/lib/libast/common/misc/
H A Dglob.c231 …lob_t* gp, const char* dir, const char* pat, register const char* rescan, char* endslash, int meta) in addmatch() argument
281 ap->gl_flags = MATCH_RAW|meta; in addmatch()
315 int meta = ((gp->re_flags & REG_ICASE) && *ap->gl_begin != '/') ? MATCH_META : 0; in glob_dir() local
340 if (meta) in glob_dir()
372 meta |= bracket; in glob_dir()
379 meta = MATCH_META; in glob_dir()
392 if (meta) in glob_dir()
402 anymeta |= meta; in glob_dir()
/titanic_50/usr/src/lib/libtnf/
H A Dinfo.c173 tnf_ref32_t *meta; in add_info() local
193 meta = _tnf_get_tag(tnf, tag); in add_info()
194 info->meta = _tnf_get_info(tnf, meta); in add_info()

1234