Searched refs:ttype (Results 1 - 25 of 38) sorted by relevance

12

/macosx-10.10.1/BerkeleyDB-21/db/build_vxworks/db_stat/
H A Ddb_stat.c51 test_t ttype; local
67 ttype = T_NOTSET;
77 if (ttype != T_NOTSET && ttype != T_LOCK)
79 ttype = T_LOCK;
105 if (ttype != T_NOTSET && ttype != T_DB)
107 ttype = T_DB;
111 if (ttype != T_NOTSET && ttype !
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/db_stat/
H A Ddb_stat.c37 test_t ttype; local
53 ttype = T_NOTSET;
62 if (ttype != T_NOTSET && ttype != T_LOCK)
64 ttype = T_LOCK;
90 if (ttype != T_NOTSET && ttype != T_DB)
92 ttype = T_DB;
96 if (ttype != T_NOTSET && ttype !
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/antlr/
H A DCommonAST.hpp22 , ttype( Token::INVALID_TYPE )
29 , ttype( t->getType() )
36 , ttype(other.ttype)
63 return ttype;
93 ttype = type;
100 int ttype; member in class:antlr::CommonAST
H A DTokenStreamBasicFilter.hpp35 void discard(int ttype);
H A DTreeParser.hpp99 virtual void match(RefAST t, int ttype) argument
101 if (!t || t == ASTNULL || t->getType() != ttype )
103 t, ttype, false ); local
106 virtual void matchNot(RefAST t, int ttype) argument
108 if ( !t || t == ASTNULL || t->getType() == ttype )
110 t, ttype, true ); local
H A DCharScanner.hpp419 virtual int testLiteralsTable(int ttype) const
423 ttype = (*i).second;
424 return ttype;
432 virtual int testLiteralsTable(const ANTLR_USE_NAMESPACE(std)string& txt,int ttype) const
436 ttype = (*i).second;
437 return ttype;
H A DASTNULLType.hpp54 void setType(int ttype);
H A DTokenStreamRewriteEngine.hpp335 void discard(int ttype) { argument
336 discardMask.add(ttype);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/src/
H A DTokenStreamBasicFilter.cpp22 void TokenStreamBasicFilter::discard(int ttype) argument
24 discardMask.add(ttype);
/macosx-10.10.1/uucp-11/uucp/unix/
H A Dstatus.c105 qret->ttype = STATUS_COMPLETE;
120 sscanf (zline, "%d %d %ld %d", &qret->ttype, &qret->cretries,
149 qret->ttype = (enum tstatus_type) istat;
223 istat = (int) qset->ttype;
236 fprintf (e, "\"%s\"", azStatus[(int) qset->ttype]);
238 fprintf (e, "%s", azStatus[(int) qset->ttype]);
/macosx-10.10.1/ncurses-44/ncurses/progs/
H A Dtset.c551 const char *ttype; local
560 ttype = userarg;
565 if ((ttype = getenv("TERM")) != 0)
577 ttype = t->ty_type;
596 ttype = strdup(t);
607 ttype = "unknown";
609 map:ttype = mapped(ttype);
632 * ttype now contains a pointer to the type of the terminal.
635 if (ttype[
1168 const char *ttype; local
[all...]
/macosx-10.10.1/uucp-11/uucp/
H A Dlog.c245 ulog (enum tlog ttype, const char *zmsg, ...)
248 ulog (ttype, zmsg, a, b, c, d, f, g, h, i, j)
249 enum tlog ttype;
310 else if ((int) ttype >= (int) LOG_DEBUG)
430 if ((int) ttype < (int) LOG_DEBUG)
437 switch (ttype)
595 if (ttype == LOG_FATAL)
610 ulog_uuconf (ttype, puuconf, iuuconf)
611 enum tlog ttype;
618 ulog (ttype, "
241 ulog(enum tlog ttype, const char *zmsg, ...) argument
[all...]
H A Duudefs.h87 enum tstatus_type ttype; member in struct:sstatus
302 extern void ulog P((enum tlog ttype, const char *zfmt, ...))
311 extern void ulog_uuconf P((enum tlog ttype, pointer puuconf,
H A Dproti.c96 #define IHDRCON_SET1(ttype, fcaller, cbytes) \
97 (((ttype) << 5) | ((fcaller) ? (1 << 4) : 0) | (((cbytes) >> 8) & 0x0f))
98 #define IHDRCON_SET2(ttype, fcaller, cbytes) ((cbytes) & 0xff)
1129 int ttype;
1207 ttype = THDRCON_GETTYPE (ab[IHDR_CONTENTS1], ab[IHDR_CONTENTS2]);
1208 if (ttype == DATA || ttype == SPOS || ttype == CLOSE)
1504 int ttype;
1506 ttype
1112 int ttype; local
1487 int ttype; local
[all...]
H A Duucico.c916 if ((sstat.ttype == STATUS_COMPLETE
1066 sstat.ttype = STATUS_WRONG_TIME;
1150 qstat->ttype = STATUS_PORT_FAILED;
1222 qstat->ttype = terr;
1313 qstat->ttype = STATUS_TALKING;
1513 qstat->ttype = STATUS_COMPLETE;
1708 qstat->ttype = STATUS_COMPLETE;
2207 sstat.ttype = STATUS_COMPLETE;
2244 sstat.ttype = STATUS_TALKING;
2335 sstat.ttype
[all...]
H A Dconn.c40 standard input port, in which case ttype is the type of port to
44 fconn_init (qport, qconn, ttype)
47 enum uuconf_porttype ttype;
50 switch (qport == NULL ? ttype : qport->uuconf_ttype)
H A Dconn.h174 using type ttype. This function returns FALSE on error. */
177 enum uuconf_porttype ttype));
/macosx-10.10.1/uucp-11/uucp/uuconf/
H A Dtportc.c234 enum uuconf_porttype ttype;
245 ttype = UUCONF_PORTTYPE_MODEM;
259 ttype = (enum uuconf_porttype) i;
262 qport->uuconf_ttype = ttype;
264 switch (ttype)
230 enum uuconf_porttype ttype; local
/macosx-10.10.1/Security-57031.1.35/Security/utilities/src/
H A DSecDb.h119 bool SecDbTransaction(SecDbConnectionRef dbconn, SecDbTransactionType ttype, CFErrorRef *error,
/macosx-10.10.1/Security-57031.1.35/Security/utilities/utilities/
H A DSecDb.h119 bool SecDbTransaction(SecDbConnectionRef dbconn, SecDbTransactionType ttype, CFErrorRef *error,
/macosx-10.10.1/bind9-45.101/bind9/lib/dns/
H A Dncache.c500 dns_rdatatype_t ttype; local
526 ttype = isc_buffer_getuint16(&source);
528 if (ttype == type && dns_name_equal(&tname, name)) {
/macosx-10.10.1/libresolv-57/
H A Dres_send.c439 int n, ttype, tclass; local
447 ttype = ns_get16(cp); cp += NS_INT16SZ;
449 if (ttype == type && tclass == class && ns_samename(tname, name) == 1) return (1);
488 int n, ttype, tclass; local
496 ttype = ns_get16(cp); cp += NS_INT16SZ;
498 if (!res_nameinquery(tname, ttype, tclass, buf2, eom2)) return (0);
/macosx-10.10.1/dtrace-147/libelf/
H A Dxlate.m4784 Elf_Type ttype;
786 ttype = _elf32_mtype(elf, shtype, ver);
787 return ((ttype == ELF_T_BYTE) ? 0 : fmsize[ver - 1][ttype].s_filesz);
H A Dxlate64.m4836 Elf_Type ttype;
838 ttype = _elf64_mtype(elf, shtype, ver);
839 return ((ttype == ELF_T_BYTE) ? 0 : fmsize[ver - 1][ttype].s_filesz);
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dtzfmttst.cpp767 UTimeZoneFormatTimeType ttype = UTZFMT_TIME_TYPE_UNKNOWN; local
770 TimeZone* tz = tzfmt->parse(DATA[i].style, DATA[i].text, pos, parseOptions, &ttype);
780 } else if (ttype != DATA[i].timeType) {
781 errMsg = (UnicodeString)"Time type: " + ttype + " - expected: " + DATA[i].timeType;

Completed in 216 milliseconds

12