Searched refs:tag (Results 126 - 150 of 808) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/wpa/src/wps/
H A Dhttp_server.h29 char * http_request_get_hdr_line(struct http_request *req, const char *tag);
/freebsd-9.3-release/crypto/heimdal/lib/asn1/
H A Dasn1_print.c58 unsigned int tag; local
65 ret = der_get_tag (buf, len, &class, &type, &tag, &sz);
79 tagname = der_get_tag_name(tag);
83 printf ("tag %d = ", tag);
88 errx (1, "unreasonable tag length (%u) > %u",
93 if ((class == ASN1_C_UNIV && type == PRIM && tag == UT_OctetString) ||
95 (class == ASN1_C_UNIV && type == CONS && tag == UT_Sequence) ||
96 (class == ASN1_C_UNIV && type == CONS && tag == UT_Set)) {
115 printf ("%lu bytes [%u]", (unsigned long)length, tag);
[all...]
H A Dasn1_gen.c74 char *ptr, *class, *type, *tag, *length, *data, *foo; local
93 tag = strtok_r(NULL, " \t\n", &foo);
94 if (tag == NULL) errx(1, "tag missing on line %lu", line);
103 ta = der_get_tag_num(tag);
105 ta = atoi(tag);
110 "tag: %3d length: %3d %s\n",
124 err(1, "fwrite length/tag failed");
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Dzfs_debug.h83 extern void zfs_dbgmsg_print(const char *tag);
H A Ddmu_objset.h136 int dmu_objset_hold(const char *name, void *tag, objset_t **osp);
138 boolean_t readonly, void *tag, objset_t **osp);
139 void dmu_objset_refresh_ownership(objset_t *os, void *tag);
140 void dmu_objset_rele(objset_t *os, void *tag);
141 void dmu_objset_disown(objset_t *os, void *tag);
/freebsd-9.3-release/sys/dev/isci/scil/
H A Dscic_task_request.h101 * @param[in] io_tag This parameter specifies the IO tag to be associated
105 * memory when the IO tag is allocated internally during the
169 #define scic_task_request_construct(controller, dev, tag, task, mem, handle) \
/freebsd-9.3-release/sys/netgraph/
H A Dng_ipfw.c230 struct m_tag *tag; local
238 tag = m_tag_locate(m, MTAG_IPFW_RULE, 0, NULL);
239 if (tag == NULL) {
250 r = (struct ipfw_rule_ref *)(tag + 1);
303 * We have two modes: in normal mode we add a tag to packet, which is
305 * a copy of a packet and forward it into netgraph without a tag.
308 struct m_tag *tag; local
313 tag = m_tag_alloc(MTAG_IPFW_RULE, 0, sizeof(*r),
315 if (tag == NULL) {
319 r = (struct ipfw_rule_ref *)(tag
[all...]
H A Dng_ksocket.h100 /* Structure for sockaddr tag */
102 struct m_tag tag; member in struct:sa_tag
/freebsd-9.3-release/contrib/ntp/scripts/monitoring/
H A Dntptrap326 local($tag) = @_;
327 $tag = pack("H*",$tag);
328 $RETRY{$tag} = 0 if (!defined($RETRY{$tag}));
330 if (++$RETRY{$tag} > $MAX_TRY)
333 &hostname(substr($tag,$[,4)),
334 unpack("x4SC",$tag)));
338 &hostname(substr($tag,$[,4)),
339 unpack("x4SC",$tag)));
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/asn1/
H A Dtasn_enc.c68 const ASN1_ITEM *it, int tag, int aclass);
73 const ASN1_TEMPLATE *tt, int tag, int aclass);
127 const ASN1_ITEM *it, int tag, int aclass)
148 tag, aclass);
149 return asn1_i2d_ex_primitive(pval, out, it, tag, aclass);
174 return ef->asn1_ex_i2d(pval, out, it, tag, aclass);
183 * Fixup for IMPLICIT tag: note this messes up for tags > 30, but so
186 if (out && (tag != -1))
187 *p = aclass | tag | (*p & V_ASN1_CONSTRUCTED);
207 if (tag
126 ASN1_item_ex_i2d(ASN1_VALUE **pval, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass) argument
262 asn1_template_ex_i2d(ASN1_VALUE **pval, unsigned char **out, const ASN1_TEMPLATE *tt, int tag, int iclass) argument
481 asn1_i2d_ex_primitive(ASN1_VALUE **pval, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass) argument
[all...]
/freebsd-9.3-release/contrib/wpa/src/tls/
H A Dx509v3.c202 hdr.tag != ASN1_TAG_SEQUENCE) {
204 "(AlgorithmIdentifier) - found class %d tag 0x%x",
205 hdr.class, hdr.tag);
244 hdr.tag != ASN1_TAG_SEQUENCE) {
246 "(SubjectPublicKeyInfo) - found class %d tag 0x%x",
247 hdr.class, hdr.tag);
263 hdr.tag != ASN1_TAG_BITSTRING) {
265 "(subjectPublicKey) - found class %d tag 0x%x",
266 hdr.class, hdr.tag);
320 hdr.tag !
[all...]
/freebsd-9.3-release/contrib/sendmail/libsm/
H A Dheap.c350 ** tag -- tag for debugging.
359 sm_malloc_tagged(size, tag, num, group)
361 char *tag;
383 if (ptr != NULL && !sm_heap_register(ptr, size, tag, num, group))
401 ** tag -- tag for debugging.
413 sm_malloc_tagged_x(size, tag, num, group)
415 char *tag;
440 if (ptr != NULL && !sm_heap_register(ptr, size, tag, nu
[all...]
/freebsd-9.3-release/sys/net80211/
H A Dieee80211_ddb.c70 static void _db_show_node_table(const char *tag,
72 static void _db_show_channel(const char *tag, const struct ieee80211_channel *);
73 static void _db_show_ssid(const char *tag, int ix, int len, const uint8_t *);
74 static void _db_show_appie(const char *tag, const struct ieee80211_appie *);
75 static void _db_show_key(const char *tag, int ix, const struct ieee80211_key *);
76 static void _db_show_roamparams(const char *tag, const void *arg,
78 static void _db_show_txparams(const char *tag, const void *arg,
80 static void _db_show_ageq(const char *tag, const struct ieee80211_ageq *q);
668 _db_show_node_table(const char *tag, const struct ieee80211_node_table *nt) argument
672 db_printf("%s%s@%p:\n", tag, n
688 _db_show_channel(const char *tag, const struct ieee80211_channel *c) argument
704 _db_show_ssid(const char *tag, int ix, int len, const uint8_t *ssid) argument
731 _db_show_appie(const char *tag, const struct ieee80211_appie *ie) argument
745 _db_show_key(const char *tag, int ix, const struct ieee80211_key *wk) argument
802 printrate(const char *tag, int v) argument
815 _db_show_roamparams(const char *tag, const void *arg, const struct ieee80211_roamparam *rp) argument
828 _db_show_txparams(const char *tag, const void *arg, const struct ieee80211_txparam *tp) argument
840 _db_show_ageq(const char *tag, const struct ieee80211_ageq *q) argument
[all...]
/freebsd-9.3-release/contrib/cvs/src/
H A Dlogmsg.c56 static char *tag; variable
74 if (tag != NULL)
76 free (tag);
77 tag = NULL;
87 if (tag != NULL)
89 free (tag);
90 tag = NULL;
100 if (tag != NULL)
102 free (tag);
103 tag
[all...]
/freebsd-9.3-release/lib/libstand/
H A Dbootp.c356 u_char tag; local
370 tag = *cp++;
372 if (tag == TAG_END)
375 if (tag == TAG_SUBNET_MASK) {
378 if (tag == TAG_GATEWAY) {
381 if (tag == TAG_SWAPSERVER) {
385 if (tag == TAG_ROOTPATH) {
389 if (tag == TAG_HOSTNAME) {
394 if (tag == TAG_DHCP_MSGTYPE) {
399 if (tag
456 uint8_t tag; member in struct:dhcp_opt
609 u_char tag; local
[all...]
/freebsd-9.3-release/sys/isa/
H A Dpnpparse.c61 pnp_parse_desc(device_t dev, u_char tag, u_char *res, int len, argument
71 if (PNP_RES_TYPE(tag) == 0) {
74 switch (PNP_SRES_NUM(tag)) {
85 pnp_printf(id, "unexpected small tag %d\n",
86 PNP_SRES_NUM(tag));
210 pnp_printf(id, "unexpected small tag %d\n",
211 PNP_SRES_NUM(tag));
216 switch (PNP_LRES_NUM(tag)) {
333 pnp_printf(id, "unexpected large tag %d\n",
334 PNP_SRES_NUM(tag));
414 u_char tag; local
573 u_char tag; local
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/scripts/
H A Ddtest.pl225 # ensure that a matching error tag was produced. If the file is named
227 # that a matching drop tag was produced. If any *.out or *.err files are found
256 $tag = 0;
264 $tag = $1;
279 if ($opt_a && ($status != 0 || $tag != 0 || $droptag != 0 ||
323 push(@dtrace_argv, '-xerrtags') if ($tag);
334 if ($tag == 0 && $status == $0 && $opt_a) {
357 if ($tag == 0 && $status == $0 && $opt_a) {
473 if ($tag) {
478 unless ($tsterr =~ /: \[$tag\] lin
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Dholds.py60 fields = ("name", "tag", "timestamp")
67 for tag, tm in ds.get_holds().iteritems():
68 val = {"name": ds.name, "tag": tag,
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dtask_api.c167 void *tag, isc_eventlist_t *events)
171 return (task->methods->unsend(task, sender, type, tag, events));
190 isc_task_setname(isc_task_t *task, const char *name, void *tag) { argument
193 task->methods->setname(task, name, tag);
197 isc_task_purge(isc_task_t *task, void *sender, isc_eventtype_t type, void *tag) argument
201 return (task->methods->purgeevents(task, sender, type, tag));
250 isc_eventtype_t last, void *tag)
254 return (task->methods->purgerange(task, sender, first, last, tag));
166 isc_task_unsend(isc_task_t *task, void *sender, isc_eventtype_t type, void *tag, isc_eventlist_t *events) argument
249 isc_task_purgerange(isc_task_t *task, void *sender, isc_eventtype_t first, isc_eventtype_t last, void *tag) argument
/freebsd-9.3-release/contrib/wpa/src/crypto/
H A Daes_wrap.h38 u8 *data, size_t data_len, u8 *tag);
42 u8 *data, size_t data_len, const u8 *tag);
/freebsd-9.3-release/lib/libc/posix1e/
H A Dacl_id_to_name.c57 _posix1e_acl_id_to_name(acl_tag_t tag, uid_t id, ssize_t buf_len, char *buf, argument
64 switch(tag) {
/freebsd-9.3-release/sys/boot/powerpc/ps3/
H A Dlv1call.h75 uint64_t sector_count, uint64_t flags, uint64_t buf, uint64_t *tag);
76 int lv1_storage_check_async_status(uint64_t dev_id, uint64_t tag,
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_debug.c99 zfs_dbgmsg_print(const char *tag) argument
103 (void) printf("ZFS_DBGMSG(%s):\n", tag);
/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-npi.h78 uint64_t tag : 32; /**< POW 32 bit tag */ member in struct:__anon6537::__anon6538
80 uint64_t tag : 32;
/freebsd-9.3-release/contrib/ntp/lib/isc/
H A Dtask_api.c167 void *tag, isc_eventlist_t *events)
171 return (task->methods->unsend(task, sender, type, tag, events));
190 isc_task_setname(isc_task_t *task, const char *name, void *tag) { argument
193 task->methods->setname(task, name, tag);
197 isc_task_purge(isc_task_t *task, void *sender, isc_eventtype_t type, void *tag) argument
201 return (task->methods->purgeevents(task, sender, type, tag));
239 isc_eventtype_t last, void *tag)
243 return (task->methods->purgerange(task, sender, first, last, tag));
166 isc_task_unsend(isc_task_t *task, void *sender, isc_eventtype_t type, void *tag, isc_eventlist_t *events) argument
238 isc_task_purgerange(isc_task_t *task, void *sender, isc_eventtype_t first, isc_eventtype_t last, void *tag) argument

Completed in 160 milliseconds

1234567891011>>