Searched refs:meta (Results 26 - 50 of 64) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/db/
H A Ddb_rename.c327 PAGE *meta; local
331 meta = NULL;
342 * get the meta-data page number (via MU_OPEN) so that we can
343 * read the meta-data page and obtain a handle lock. Once we've
354 ip, txn, 0, &meta)) != 0)
356 memcpy(dbp->fileid, ((DBMETA *)meta)->uid, DB_FILE_ID_LEN);
361 ret = __memp_fput(mdbp->mpf, ip, meta, dbp->priority);
362 meta = NULL;
374 if (meta != NULL && (t_ret =
375 __memp_fput(mdbp->mpf, ip, meta, db
[all...]
H A Ddb_vrfy.c423 DBMETA *meta; local
434 meta = (DBMETA *)mbuf;
460 if ((ret = __db_chk_meta(env, dbp, meta, 1)) != 0) {
478 if (meta->pgno != PGNO_BASE_MD) {
481 (u_long)PGNO_BASE_MD, (u_long)meta->pgno));
485 if (__db_is_valid_magicno(meta->magic, &dbp->type))
488 M_32_SWAP(meta->magic);
489 if (__db_is_valid_magicno(meta->magic,
496 (u_long)PGNO_BASE_MD, (u_long)meta->magic));
505 M_32_SWAP(meta
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/hash/
H A Dhash_upgrade.c120 HMETA30 *meta; local
129 meta = (HMETA30 *)metabuf;
130 pagesize = meta->dbmeta.pagesize;
144 last_desired = BS_TO_PAGE(meta->high_mask, meta->spares);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/model/
H A DEntityModel.java99 ClassMetadata meta = getClassMetadata(className);
100 if (meta == null) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/squashfs/
H A Dinode.c1390 struct meta_index *meta = NULL; local
1408 meta = &msblk->meta_index[i];
1409 offset = meta->offset;
1412 if (meta)
1413 meta->locked = 1;
1418 return meta;
1425 struct meta_index *meta = NULL; local
1455 TRACE("empty_meta_index: returned meta entry %d, %p\n",
1459 meta = &msblk->meta_index[msblk->next_meta_index];
1463 meta
1475 release_meta_index(struct inode *inode, struct meta_index *meta) argument
1535 struct meta_index *meta; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/btree/
H A Dbt_verify.c35 __bam_vrfy_meta(dbp, vdp, meta, pgno, flags)
38 BTMETA *meta;
63 (ret = __db_vrfy_meta(dbp, vdp, &meta->dbmeta, pgno, flags)) != 0) {
73 ovflsize = meta->minkey > 0 ?
74 B_MINKEY_TO_OVFLSIZE(dbp, meta->minkey, dbp->pgsize) : 0;
76 if (meta->minkey < 2 ||
82 (u_long)pgno, (u_long)meta->minkey));
84 pip->bt_minkey = meta->minkey;
87 pip->re_pad = meta->re_pad;
88 pip->re_len = meta
[all...]
H A Dbt_rec.c771 * Recovery function for setting the root page on the meta-data page.
786 BTMETA *meta; local
793 meta = NULL;
798 0, &meta)) != 0) {
806 cmp_n = LOG_COMPARE(lsnp, &LSN(meta));
807 cmp_p = LOG_COMPARE(&LSN(meta), &argp->meta_lsn);
808 CHECK_LSN(env, op, cmp_p, &LSN(meta), &argp->meta_lsn);
811 REC_DIRTY(mpf, ip, file_dbp->priority, &meta);
812 meta->root = argp->root_pgno;
813 meta
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/persist/
H A DDplDump.java70 } else if (name.equals("-meta")) {
96 "\n [-meta]" +
128 EntityMetadata meta = model.getEntityMetadata(clsName);
129 if (meta != null) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/gfs2/
H A Dtrans.c126 * @meta: True in the case of adding metadata
130 void gfs2_trans_add_bh(struct gfs2_glock *gl, struct buffer_head *bh, int meta) argument
139 gfs2_attach_bufdata(gl, bh, meta);
H A Dmeta_io.h52 int meta);
H A Dmeta_io.c268 * @meta: Flag to indicate whether its metadata or not
272 int meta)
276 if (meta)
280 if (meta)
290 if (meta)
296 if (meta)
271 gfs2_attach_bufdata(struct gfs2_glock *gl, struct buffer_head *bh, int meta) argument
H A Dglops.c235 int meta = (flags & DIO_METADATA); local
237 if (meta) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/impl/
H A DStore.java907 EntityMetadata meta = checkEntityClass(clsName);
908 return getPrimaryConfig(meta).cloneConfig();
911 private synchronized DatabaseConfig getPrimaryConfig(EntityMetadata meta) { argument
912 String clsName = meta.getClassName();
920 setBtreeComparator(config, meta.getPrimaryKey().getClassName());
934 EntityMetadata meta = checkEntityClass(clsName);
935 DatabaseConfig dbConfig = getPrimaryConfig(meta);
1109 EntityMetadata meta = model.getEntityMetadata(clsName);
1110 if (meta == null) {
1115 return meta;
[all...]
H A DFormat.java596 ClassMetadata meta = getClassMetadata();
597 if (meta != null) {
598 return meta.getVersion();
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/wireless/bcm43xx/
H A Dbcm43xx_dma.h217 struct bcm43xx_dmadesc_meta *meta; member in struct:bcm43xx_dmaring
269 struct bcm43xx_dmadesc_meta **meta)
271 *meta = &(ring->meta[slot]);
267 bcm43xx_dma_idx2desc(struct bcm43xx_dmaring *ring, int slot, struct bcm43xx_dmadesc_meta **meta) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A DHTMLtree.c35 * Getting/Setting encoding meta tags *
66 if (xmlStrEqual(cur->name, BAD_CAST"meta"))
82 if (xmlStrEqual(cur->name, BAD_CAST"meta"))
93 * Search the meta elements
98 if (xmlStrEqual(cur->name, BAD_CAST"meta")) {
163 htmlNodePtr cur, meta; local
188 if (xmlStrcasecmp(cur->name, BAD_CAST"meta") == 0)
204 if (xmlStrcasecmp(cur->name, BAD_CAST"meta") == 0)
215 meta = xmlNewDocNode(doc, NULL, BAD_CAST"meta", NUL
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A DHTMLtree.c35 * Getting/Setting encoding meta tags *
66 if (xmlStrEqual(cur->name, BAD_CAST"meta"))
82 if (xmlStrEqual(cur->name, BAD_CAST"meta"))
93 * Search the meta elements
98 if (xmlStrEqual(cur->name, BAD_CAST"meta")) {
163 htmlNodePtr cur, meta; local
188 if (xmlStrcasecmp(cur->name, BAD_CAST"meta") == 0)
204 if (xmlStrcasecmp(cur->name, BAD_CAST"meta") == 0)
215 meta = xmlNewDocNode(doc, NULL, BAD_CAST"meta", NUL
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/qam/
H A Dqam_stub.c301 __qam_vrfy_meta(dbp, vdp, meta, pgno, flags)
304 QMETA *meta;
309 COMPQUIET(meta, NULL);
H A Dqam_files.c501 QMETA *meta; local
522 if ((ret = __memp_fget(mpf, &i, ip, NULL, 0, &meta)) != 0)
525 current = meta->cur_recno;
526 first = meta->first_recno;
528 if ((ret = __memp_fput(mpf, ip, meta, dbp->priority)) != 0)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A DHTMLtree.c35 * Getting/Setting encoding meta tags *
66 if (xmlStrEqual(cur->name, BAD_CAST"meta"))
82 if (xmlStrEqual(cur->name, BAD_CAST"meta"))
93 * Search the meta elements
98 if (xmlStrEqual(cur->name, BAD_CAST"meta")) {
163 htmlNodePtr cur, meta; local
188 if (xmlStrcasecmp(cur->name, BAD_CAST"meta") == 0)
204 if (xmlStrcasecmp(cur->name, BAD_CAST"meta") == 0)
215 meta = xmlNewDocNode(doc, NULL, BAD_CAST"meta", NUL
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/test/
H A Dtest_metaflac.sh131 expect="$testdir/$case-expect.meta"
133 run_metaflac $args $flacfile | filter > $testdir/out.meta || die "ERROR running metaflac"
134 diff -w $expect $testdir/out.meta > /dev/null 2>&1 || die "ERROR: metadata does not match expected $expect"
395 rm -f $testdir/out.flac $testdir/out.meta
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/dbinc_auto/
H A Ddb_auto.h193 db_pgno_t meta; member in struct:___db_pg_sort_args
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/wireless/hostap/
H A Dhostap_main.c1025 struct hostap_skb_tx_data *meta; local
1042 meta = (struct hostap_skb_tx_data *) skb->cb;
1043 memset(meta, 0, sizeof(*meta));
1044 meta->magic = HOSTAP_SKB_TX_DATA_MAGIC;
1045 meta->iface = netdev_priv(dev);
H A Dhostap_ap.c929 struct hostap_skb_tx_data *meta; local
978 meta = (struct hostap_skb_tx_data *) skb->cb;
979 memset(meta, 0, sizeof(*meta));
980 meta->magic = HOSTAP_SKB_TX_DATA_MAGIC;
981 meta->iface = iface;
982 meta->tx_cb_idx = tx_cb_idx;
1839 struct hostap_skb_tx_data *meta; local
1850 meta = (struct hostap_skb_tx_data *) skb->cb;
1851 meta
2689 struct hostap_skb_tx_data *meta; local
2814 struct hostap_skb_tx_data *meta; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/kernel/power/
H A Dsnapshot.c1081 unsigned int free = 0, meta = 0; local
1084 meta += snapshot_additional_pages(zone);
1091 nr_pages, PAGES_FOR_IO, meta, free);
1093 return free > nr_pages + PAGES_FOR_IO + meta;

Completed in 168 milliseconds

123