Searched refs:tag (Results 351 - 375 of 949) sorted by relevance

<<11121314151617181920>>

/freebsd-10.2-release/sys/boot/common/
H A Dbootstrap.h272 #define COMMAND_SET(tag, key, desc, func) \
274 static struct bootblk_command _cmd_ ## tag = { key, desc, func }; \
275 DATA_SET(Xcommand_set, _cmd_ ## tag)
/freebsd-10.2-release/sys/nfs/
H A Dbootp_subr.c183 struct bootpc_tagcontext tag; member in struct:bootpc_globalcontext
253 struct bootp_packet *bp, int len, int tag);
255 unsigned char *start, int len, int tag);
518 /* Ignore packet unless it gives us a root tag we didn't have */
1300 unsigned char *start, int len, int tag)
1323 if (code == tag) {
1343 struct bootp_packet *bp, int len, int tag)
1355 (unsigned char *) bp + len - &bp->vend[4], tag);
1361 tag);
1366 tag);
1299 bootpc_tag_helper(struct bootpc_tagcontext *tctx, unsigned char *start, int len, int tag) argument
1342 bootpc_tag(struct bootpc_tagcontext *tctx, struct bootp_packet *bp, int len, int tag) argument
[all...]
/freebsd-10.2-release/contrib/binutils/binutils/
H A Dwrstabs.c93 /* The tag name. */
94 const char *tag; member in struct:stab_tag
781 stab_enum_type (void *p, const char *tag, const char **names,
793 assert (tag != NULL);
795 buf = (char *) xmalloc (10 + strlen (tag));
796 sprintf (buf, "xe%s:", tag);
805 if (tag != NULL)
806 len += strlen (tag);
812 if (tag == NULL)
818 sprintf (buf, "%s:T%ld=e", tag, inde
779 stab_enum_type(void *p, const char *tag, const char **names, bfd_signed_vma *vals) argument
1260 stab_get_struct_index(struct stab_write_handle *info, const char *tag, unsigned int id, enum debug_type_kind kind, unsigned int *psize) argument
1308 stab_start_struct_type(void *p, const char *tag, unsigned int id, bfd_boolean structp, unsigned int size) argument
1445 stab_start_class_type(void *p, const char *tag, unsigned int id, bfd_boolean structp, unsigned int size, bfd_boolean vptr, bfd_boolean ownvptr) argument
1932 stab_tag(void *p, const char *tag) argument
[all...]
/freebsd-10.2-release/contrib/ipfilter/tools/
H A Dipscan_y.y56 %type <str> tag
111 cline: tag ':' matchup '=' action { addtag($1, $3, NULL, &$5); }
114 sline: tag ':' '(' ')' ',' matchup '=' action { addtag($1, NULL, $6, &$8); }
117 csline: tag ':' matchup ',' matchup '=' action { addtag($1, $3, $5, &$7); }
124 tag: YY_STR { $$ = $1; } label
/freebsd-10.2-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Ddmu_objset.c484 dmu_objset_hold(const char *name, void *tag, objset_t **osp) argument
490 err = dsl_pool_hold(name, tag, &dp);
493 err = dsl_dataset_hold(dp, name, tag, &ds);
495 dsl_pool_rele(dp, tag);
501 dsl_dataset_rele(ds, tag);
502 dsl_pool_rele(dp, tag);
515 boolean_t readonly, void *tag, objset_t **osp)
524 err = dsl_dataset_own(dp, name, tag, &ds);
533 dsl_dataset_disown(ds, tag);
535 dsl_dataset_disown(ds, tag);
514 dmu_objset_own(const char *name, dmu_objset_type_t type, boolean_t readonly, void *tag, objset_t **osp) argument
545 dmu_objset_rele(objset_t *os, void *tag) argument
564 dmu_objset_refresh_ownership(objset_t *os, void *tag) argument
585 dmu_objset_disown(objset_t *os, void *tag) argument
[all...]
H A Dspa_misc.c423 spa_config_tryenter(spa_t *spa, int locks, void *tag, krw_t rw) argument
433 spa_config_exit(spa, locks ^ (1 << i), tag);
440 spa_config_exit(spa, locks ^ (1 << i), tag);
445 (void) refcount_add(&scl->scl_count, tag);
452 spa_config_enter(spa_t *spa, int locks, void *tag, krw_t rw) argument
478 (void) refcount_add(&scl->scl_count, tag);
485 spa_config_exit(spa_t *spa, int locks, void *tag) argument
493 if (refcount_remove(&scl->scl_count, tag) == 0) {
813 spa_open_ref(spa_t *spa, void *tag) argument
817 (void) refcount_add(&spa->spa_refcount, tag);
825 spa_close(spa_t *spa, void *tag) argument
1115 spa_vdev_config_exit(spa_t *spa, vdev_t *vd, uint64_t txg, int error, char *tag) argument
[all...]
/freebsd-10.2-release/crypto/openssl/crypto/asn1/
H A Dx_name.c72 int tag, int aclass, char opt, ASN1_TLC *ctx);
75 const ASN1_ITEM *it, int tag, int aclass);
176 const ASN1_ITEM *it, int tag, int aclass,
200 tag, aclass, opt, ctx);
241 const ASN1_ITEM *it, int tag, int aclass)
174 x509_name_ex_d2i(ASN1_VALUE **val, const unsigned char **in, long len, const ASN1_ITEM *it, int tag, int aclass, char opt, ASN1_TLC *ctx) argument
240 x509_name_ex_i2d(ASN1_VALUE **val, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass) argument
/freebsd-10.2-release/contrib/expat/lib/
H A Dxmlparse.c181 typedef struct tag { struct
182 struct tag *parent; /* parent of this element */
934 TAG *tag = tStk; local
936 tag->parent = freeTagList;
937 moveToFreeBindingList(parser, tag->bindings);
938 tag->bindings = NULL;
939 freeTagList = tag;
1957 XML_L("mismatched tag"),
2068 /* Initially tag->rawName always points into the parse buffer;
2070 processed, and not yet closed, we need to store tag
2076 TAG *tag = tagStack; local
2404 TAG *tag; local
2519 TAG *tag = tagStack; local
[all...]
/freebsd-10.2-release/sys/powerpc/pseries/
H A Dphyp_vscsi.c87 uint64_t tag; member in struct:vscsi_xfer
132 uint64_t tag; member in struct:srp_login
146 uint8_t tag; member in struct:srp_login_rsp
161 uint64_t tag; member in struct:srp_cmd
174 uint64_t tag; member in struct:srp_rsp
188 uint64_t tag; member in struct:srp_tsk_mgmt
517 login->tag = (uint64_t)(xp);
561 cmd->tag = (uint64_t)xp;
625 cmd->tag = (uint64_t)(xp); /* Let the responder find this again */
661 /* Set handle tag t
737 uint64_t tag; member in struct:__anon11634
[all...]
/freebsd-10.2-release/sys/dev/cxgbe/
H A Dadapter.h83 t4_bus_space_read_8(bus_space_tag_t tag, bus_space_handle_t handle, argument
86 KASSERT(tag == X86_BUS_SPACE_MEM,
93 t4_bus_space_write_8(bus_space_tag_t tag, bus_space_handle_t bsh, argument
96 KASSERT(tag == X86_BUS_SPACE_MEM,
103 t4_bus_space_read_8(bus_space_tag_t tag, bus_space_handle_t handle, argument
106 return (uint64_t)bus_space_read_4(tag, handle, offset) +
107 ((uint64_t)bus_space_read_4(tag, handle, offset + 4) << 32);
111 t4_bus_space_write_8(bus_space_tag_t tag, bus_space_handle_t bsh, argument
114 bus_space_write_4(tag, bsh, offset, value);
115 bus_space_write_4(tag, bs
730 void *tag; member in struct:adapter::irq
[all...]
/freebsd-10.2-release/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dsaioctlcmd.c167 OSSA_WRITE_LE_32(agRoot, pPayload, OSSA_OFFSET_OF(agsaFwProfileIOMB_t, tag), pRequest->HTag);
328 OSSA_OFFSET_OF(agsaFwFlashUpdate_t, tag), pRequest->HTag);
474 OSSA_WRITE_LE_32(agRoot, pPayload, OSSA_OFFSET_OF(agsaFwFlashOpExt_t, tag), pRequest->HTag);
537 bit32 status, tag, len; local
540 OSSA_READ_LE_32(AGROOT, &tag, payload, OSSA_OFFSET_OF(agsaFwProfileRsp_t, tag));
543 pRequest = saRoot->IOMap[tag].IORequest;
547 saRoot->IOMap[tag].Tag = MARK_OFF;
548 saRoot->IOMap[tag].IORequest = agNULL;
549 SA_DBG1(("mpiFwProfileRsp: the request is NULL. Tag=%x\n", tag));
601 bit32 status, tag; local
653 bit32 Command,Status, tag; local
[all...]
/freebsd-10.2-release/sys/contrib/octeon-sdk/
H A Dcvmx-pow.c429 printf("Core %d State: tag=%s,0x%08x", core,
431 dump->sstatus[core][bit_cur].s_sstatus2.tag);
482 printf(" pending tag=%s,0x%08x",
540 /* Print out each of the internal POW entries. Each entry has a tag, group,
545 printf("Entry %d(%-10s): tag=%s,0x%08x grp=%d wqp=0x%016llx", index,
548 dump->smemload[index][0].s_smemload0.tag,
560 printf(" pending tag=%s,0x%08x",
633 int tag = 3; local
637 printf("Core %d State: tag=%s,0x%08x", core,
638 OCT_TAG_TYPE_STRING(dump->sstatus[core][tag]
[all...]
/freebsd-10.2-release/contrib/texinfo/info/
H A Dman.c435 TAG *tag = (TAG *)NULL; local
441 for (i = 0; (tag = file_buffer->tags[i]); i++)
443 if (strcasecmp (pagename, tag->nodename) == 0)
448 if (tag)
452 node->nodename = xstrdup (tag->nodename);
453 node->contents = file_buffer->contents + tag->nodestart;
454 node->nodelen = tag->nodelen;
/freebsd-10.2-release/tools/sched/
H A Dschedgraph.py720 tags=("event", self.type, self.name, self.source.tag))
745 tags=("event", self.type, self.name, self.source.tag))
774 tags=("event", self.type, self.name, self.source.tag))
808 self.tag = group + id
857 tags=("cpubg", cpu, self.tag), state="hidden")
861 canvas.move(self.tag, xpos, ypos)
1071 tag = group + id
1072 if (self.taghash.has_key(tag)):
1073 return self.taghash[tag]
1079 self.taghash[tag]
[all...]
/freebsd-10.2-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Ddwarf.c317 Dwarf_Half tag; local
319 if (dwarf_tag(die, &tag, &dw->dw_err) == DW_DLV_OK)
320 return (tag);
322 terminate("die %llu: failed to get tag for type: %s\n",
965 Dwarf_Half tag = die_tag(dw, mem); local
968 if (tag != DW_TAG_member) {
1064 * tag will always be followed by a proper nested declaration of
1068 * (i.e. die_child of the struct tag won't be null), we'll ignore it.
1197 Dwarf_Half tag; local
1210 if ((tag
1570 Dwarf_Half tag; local
1741 die_tag2ctor(Dwarf_Half tag) argument
1758 Dwarf_Half tag; local
[all...]
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp84 //child_requires_parent_class_union_or_struct_to_be_completed (dw_tag_t tag)
86 // switch (tag)
257 const dw_tag_t tag = die->Tag(); local
261 switch (tag)
360 // dw_tag_t tag = die_info.tag;
361 // if (tag == 0)
364 // tag = die->Tag();
366 // add_type = TagMatchesTypeMask (type_mask, tag);
394 // const dw_tag_t tag
436 dw_tag_t tag = die->Tag(); local
1294 dw_tag_t tag = die->Tag(); local
1411 const dw_tag_t tag = die->Tag(); local
1522 const dw_tag_t tag = die->Tag(); local
1670 dw_tag_t tag = die->Tag(); local
1720 dw_tag_t tag = die->Tag(); local
2394 const dw_tag_t tag = die->Tag(); local
4218 dw_tag_t tag = die->Tag(); local
4390 const dw_tag_t tag = die->Tag(); local
4468 const dw_tag_t tag = die->Tag(); local
5230 const dw_tag_t tag = dwarf_decl_ctx[0].tag; local
5724 const dw_tag_t tag = die->Tag(); local
7324 const dw_tag_t tag = die->Tag(); local
7714 dw_tag_t tag = die->Tag(); local
[all...]
H A DDWARFCompileUnit.cpp201 // but all it contains is a NULL tag. Since we are removing
542 DWARFCompileUnit::AppendDIEsWithTag (const dw_tag_t tag, DWARFDIECollection& dies, uint32_t depth) const argument
549 if (pos->Tag() == tag)
611 const dw_tag_t tag = die.Tag(); local
613 switch (tag)
687 if (tag == DW_TAG_variable)
741 switch (tag)
/freebsd-10.2-release/contrib/unbound/smallapp/
H A Dunbound-anchor.c1168 /** the current tag; malloced; or NULL outside of tags */
1169 char* tag; member in struct:xml_data
1191 /** The BIO for the tag */
1193 xml_selectbio(struct xml_data* data, const char* tag) argument
1196 if(strcasecmp(tag, "KeyTag") == 0)
1198 else if(strcasecmp(tag, "Algorithm") == 0)
1200 else if(strcasecmp(tag, "DigestType") == 0)
1202 else if(strcasecmp(tag, "Digest") == 0)
1220 if(!data->tag)
1226 data->tag
[all...]
/freebsd-10.2-release/sys/dev/isp/
H A Disp_freebsd.h108 uint32_t tag; /* typically f/w RX_ID */ member in struct:atio_private_data
373 #define ISP_GET_PC(isp, chan, tag, rslt) \
375 rslt = ISP_SPI_PC(isp, chan)-> tag; \
377 rslt = ISP_FC_PC(isp, chan)-> tag; \
379 #define ISP_GET_PC_ADDR(isp, chan, tag, rp) \
381 rp = &ISP_SPI_PC(isp, chan)-> tag; \
383 rp = &ISP_FC_PC(isp, chan)-> tag; \
385 #define ISP_SET_PC(isp, chan, tag, val) \
387 ISP_SPI_PC(isp, chan)-> tag = val; \
389 ISP_FC_PC(isp, chan)-> tag
[all...]
/freebsd-10.2-release/sys/fs/udf/
H A Dudf_vfsops.c281 * Check the descriptor tag for both the correct id and correct checksum.
285 udf_checktag(struct desc_tag *tag, uint16_t id) argument
290 itag = (uint8_t *)tag;
292 if (le16toh(tag->id) != id)
299 if (cksum == tag->cksum)
414 if (!udf_checktag(&lvd->tag, TAGID_LOGVOL)) {
425 if (!udf_checktag(&pd->tag, TAGID_PARTITION)) {
461 if (!udf_checktag(&fsd->tag, TAGID_FSD)) {
487 if ((error = udf_checktag(&root_fentry->tag, TAGID_FENTRY))) {
660 if (udf_checktag(&fe->tag, TAGID_FENTR
[all...]
/freebsd-10.2-release/sys/dev/netmap/
H A Dnetmap_kern.h1264 bus_dma_tag_t tag, bus_dmamap_t map, void *buf)
1267 bus_dmamap_load(tag, map, buf, NETMAP_BUF_SIZE(na),
1273 bus_dma_tag_t tag, bus_dmamap_t map)
1276 bus_dmamap_unload(tag, map);
1282 bus_dma_tag_t tag, bus_dmamap_t map, void *buf)
1285 bus_dmamap_unload(tag, map);
1286 bus_dmamap_load(tag, map, buf, NETMAP_BUF_SIZE(na),
1299 bus_dma_tag_t tag, bus_dmamap_t map, void *buf)
1309 bus_dma_tag_t tag, bus_dmamap_t map)
1321 bus_dma_tag_t tag, bus_dmamap_
1263 netmap_load_map(struct netmap_adapter *na, bus_dma_tag_t tag, bus_dmamap_t map, void *buf) argument
1272 netmap_unload_map(struct netmap_adapter *na, bus_dma_tag_t tag, bus_dmamap_t map) argument
1281 netmap_reload_map(struct netmap_adapter *na, bus_dma_tag_t tag, bus_dmamap_t map, void *buf) argument
1298 netmap_load_map(struct netmap_adapter *na, bus_dma_tag_t tag, bus_dmamap_t map, void *buf) argument
1308 netmap_unload_map(struct netmap_adapter *na, bus_dma_tag_t tag, bus_dmamap_t map) argument
1320 netmap_reload_map(struct netmap_adapter *na, bus_dma_tag_t tag, bus_dmamap_t map, void *buf) argument
[all...]
/freebsd-10.2-release/sys/dev/patm/
H A Dif_patm_tx.c469 /* limit the number of outstanding packets to the tag space */
604 (scd->tag << IDT_TBD_TAG_SHIFT);
630 KASSERT(scd->on_card[scd->tag] == NULL,
631 ("scd on_card wedged %u%s", scd->tag, dump_scd(a->sc, scd)));
632 scd->on_card[scd->tag] = a->mbuf;
635 NEXT_TAG(scd->tag);
660 u_int cid, tag, last; local
674 tag = IDT_TSQE_TAG(stamp);
677 if (tag == last) {
678 patm_printf(sc, "same tag
[all...]
/freebsd-10.2-release/sys/dev/oce/
H A Doce_if.c612 bus_dmamap_sync(eq->ring->dma.tag, eq->ring->dma.map,
619 bus_dmamap_sync(eq->ring->dma.tag, eq->ring->dma.map,
760 oce_fast_isr, NULL, ii, &ii->tag);
773 if (sc->intrs[i].tag != NULL)
775 sc->intrs[i].tag);
783 sc->intrs[i].tag = NULL;
910 rc = bus_dmamap_load_mbuf_sg(wq->tag,
921 bus_dmamap_unload(wq->tag, pd->map);
927 bus_dmamap_sync(wq->tag, pd->map, BUS_DMASYNC_PREWRITE);
998 bus_dmamap_sync(wq->ring->dma.tag, w
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerManager.h166 CheckerTag tag = getTag<CHECKER>(); local
167 CheckerRef &ref = CheckerTags[tag];
180 CheckerTag tag = getTag<CHECKER>(); local
181 CheckerRef &ref = CheckerTags[tag];
560 static void *getTag() { static int tag; return &tag; } local
/freebsd-10.2-release/sys/dev/mpr/
H A Dmprvar.h603 #define MPR_PRINTFIELD_START(sc, tag...) \
604 mpr_dprint((sc), MPR_INFO, ##tag); \
606 #define MPR_PRINTFIELD_END(sc, tag) \
607 mpr_dprint((sc), MPR_INFO, tag "\n")
611 #define MPR_EVENTFIELD_START(sc, tag...) \
612 mpr_dprint((sc), MPR_EVENT, ##tag); \

Completed in 244 milliseconds

<<11121314151617181920>>