Home
last modified time | relevance | path

Searched refs:ttype (Results 1 – 25 of 30) sorted by relevance

12

/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/pppoe/
H A Dcommon.c199 poe_tag_insert(poep_t *poep, uint16_t ttype, const void *data, size_t dlen) in poe_tag_insert() argument
210 POET_SET_TYPE(dp, ttype); in poe_tag_insert()
223 poe_add_str(poep_t *poep, uint16_t ttype, const char *str) in poe_add_str() argument
225 return (poe_tag_insert(poep, ttype, str, strlen(str))); in poe_add_str()
233 poe_add_long(poep_t *poep, uint16_t ttype, uint32_t val) in poe_add_long() argument
236 return (poe_tag_insert(poep, ttype, &val, sizeof (val))); in poe_add_long()
244 poe_two_longs(poep_t *poep, uint16_t ttype, uint32_t val1, uint32_t val2) in poe_two_longs() argument
250 return (poe_tag_insert(poep, ttype, vals, sizeof (vals))); in poe_two_longs()
H A Dcommon.h77 extern int poe_add_str(poep_t *poep, uint16_t ttype, const char *str);
78 extern int poe_add_long(poep_t *poep, uint16_t ttype, uint32_t val);
79 extern int poe_two_longs(poep_t *poep, uint16_t ttype, uint32_t val1,
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppd/plugins/
H A Dpppoe.c200 int ttype; in handle_motm_hurl() local
209 ttype = POET_GET_TYPE(tagp); in handle_motm_hurl()
210 if (ttype == POETT_END) in handle_motm_hurl()
215 if (ttype == POETT_HURL || ttype == POETT_MOTM) { in handle_motm_hurl()
230 *argv++ = ttype == POETT_HURL ? "hurl" : "motm"; in handle_motm_hurl()
246 int ttype; in handle_ip_route_add() local
259 ttype = POET_GET_TYPE(tagp); in handle_ip_route_add()
260 if (ttype == POETT_END) in handle_ip_route_add()
265 if (ttype == POETT_RTEADD && tlen >= sizeof (poer) && in handle_ip_route_add()
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DSLPV1SAttrMsg.java205 ServiceType ttype = new ServiceType(stype); in makeReply() local
207 if (ttype.isAbstractType() && in makeReply()
208 type.equals(ttype.getAbstractTypeName())) { in makeReply()
216 ttype}); in makeReply()
H A DSLPV1SSrvMsg.java845 if (tk.ttype == StreamTokenizer.TT_WORD) { in parseTag()
848 } else if ((char)tk.ttype == SPACE) { in parseTag()
851 } else if ((char)tk.ttype == AND_OP) { in parseTag()
868 int tok = tk.ttype; in parseOperator()
/illumos-gate/usr/src/cmd/mdb/common/kmdb/
H A Dkmdb_main.c313 const char *ttype; in kmdb_startup() local
315 if ((ttype = kmdb_prom_term_type()) == NULL) { in kmdb_startup()
316 ttype = KMDB_DEF_TERM_TYPE; in kmdb_startup()
318 "assuming `%s'\n", ttype); in kmdb_startup()
322 mdb.m_termtype = strdup(ttype); in kmdb_startup()
/illumos-gate/usr/src/uts/i86pc/ml/
H A Dsyscall_asm_amd64.S337 #define SYSCALL_TRAPTRACE(ttype) \ argument
338 TRACE_PTR(%rdi, %rbx, %ebx, %rcx, ttype); \
348 #define SYSCALL_TRAPTRACE32(ttype) \ argument
349 SYSCALL_TRAPTRACE(ttype); \
357 #define SYSCALL_TRAPTRACE(ttype) argument
358 #define SYSCALL_TRAPTRACE32(ttype) argument
/illumos-gate/usr/src/lib/libresolv2/common/resolv/
H A Dres_send.c235 int n, ttype, tclass; in res_nameinquery() local
243 ttype = ns_get16(cp); cp += INT16SZ; in res_nameinquery()
245 if (ttype == type && tclass == class && in res_nameinquery()
286 int n, ttype, tclass; in res_queriesmatch() local
294 ttype = ns_get16(cp); cp += INT16SZ; in res_queriesmatch()
296 if (!res_nameinquery(tname, ttype, tclass, buf2, eom2)) in res_queriesmatch()
/illumos-gate/usr/src/cmd/ldap/ns_ldap/
H A Dldapaddent.c64 char *ttype; /* type tag */ member
4269 char *ttype, *authmech = 0, *etcfile = 0; in main() local
4480 ttype = argv[optind++]; in main()
4482 if (ttype == NULL) { in main()
4495 for (tt = ttypelist; tt->ttype; tt++) { in main()
4496 if (strcmp(tt->ttype, ttype) == 0) in main()
4499 strncmp(ttype, NS_LDAP_TYPE_AUTOMOUNT, in main()
4504 if (tt->ttype == 0) { in main()
4507 " supported databases are:\n"), ttype); in main()
4508 for (tt = ttypelist; tt->ttype; tt++) in main()
[all …]
/illumos-gate/usr/src/cmd/tabs/
H A Dtabs.c80 char *ttype; /* -Tttype */ member
506 for (t = termtab; t->ttype; t++) { in termadj()
507 if (EQ(terminal, t->ttype)) in termadj()
/illumos-gate/usr/src/tools/smatch/src/
H A Devaluate.c2926 struct symbol *ttype, *stype; in evaluate_cast() local
2979 if (ttype == &void_ctype) in evaluate_cast()
3002 if (ttype != stype) { in evaluate_cast()
3005 show_typename(ttype)); in evaluate_cast()
3007 if (ttype == &bool_ctype) { in evaluate_cast()
3018 if ((ttype == &ulong_ctype || ttype == uintptr_ctype) && !Wcast_from_as) in evaluate_cast()
3022 tas = ttype->ctype.as; in evaluate_cast()
3054 if (ttype == &bool_ctype) in evaluate_cast()
3059 tclass = classify_type(ttype->ctype.base_type, &ttype); in evaluate_cast()
3061 if (ttype == stype) in evaluate_cast()
[all …]
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/sh/
H A Dnvtype.c76 Namtype_t *ttype; member
241 Namval_t *mp = (Namval_t*)((char*)pp->ttype+offset); in put_chtype()
243 if(mp->nvalue.cp >= pp->ttype->data && mp->nvalue.cp < (char*)pp+pp->ttype->fun.dsize) in put_chtype()
310 nq->nvalue.nrp->np = nv_namptr(pp->childfun.ttype->nodes,i); in fixnode()
339 else if(!nq->nvfun && pp->childfun.ttype!=pp->childfun.ptype) in fixnode()
341 Namval_t *nr = nv_namptr( pp->childfun.ttype->nodes,i); in fixnode()
402 dp->childfun.ttype = (Namtype_t*)nv_hasdisc(dp->fun.type,&type_disc); in clone_type()
941 pp->childfun.ttype = pp; in nv_mktype()
1478 pp->childfun.ttype = pp; in nv_mkstruct()
/illumos-gate/usr/src/test/libc-tests/tests/
H A Dutimes.c52 enum ttype { enum
138 runtest(enum ttype fn, char *dir, timespec_t *atim, timespec_t *mtim) in runtest()
/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dltable.c98 switch (ttype(key)) { in mainposition()
482 switch (ttype(key)) { in luaH_get()
H A Dlobject.h123 #define ttype(o) (rttype(o) & 0x3F) macro
176 #define righttt(obj) (ttype(obj) == gcvalue(obj)->gch.tt)
H A Dlapi.c444 switch (ttype(o)) { in lua_topointer()
1189 switch (ttype(fi)) { in aux_upvalue()
1258 switch (ttype(fi)) { in lua_upvalueid()
H A Dldo.c305 switch (ttype(func)) { in luaD_precall()
/illumos-gate/usr/src/cmd/sgs/libld/common/
H A Drelocate.c239 uchar_t rtype, ttype; in disp_scansyms() local
293 ttype = ELF_ST_TYPE(tsym->st_info); in disp_scansyms()
302 if ((rlocal == TRUE) && (ttype != STT_OBJECT) && in disp_scansyms()
303 (ttype != STT_SECTION)) in disp_scansyms()
310 (ttype != STT_OBJECT) && (ttype != STT_SECTION)) in disp_scansyms()
/illumos-gate/usr/src/uts/i86pc/os/
H A Dtrap.c1082 int ttype = ct->t_ontrap->ot_prot & in trap() local
1085 if (ttype != 0) { in trap()
1086 ct->t_ontrap->ot_trap |= ttype; in trap()
/illumos-gate/usr/src/uts/i86pc/sys/
H A Dimmu.h461 #define CONT_SET_TTYPE(hcent, ttype) ((hcent)->lo |= (((ttype) & 0x3) << 0x2)) argument
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dtypegraph.c2934 mdb_ctf_id_t ttype; in findlocks_findmutex() local
2952 ttype = typegraph_resolve(node->tgn_type); in findlocks_findmutex()
2954 if (!mdb_ctf_type_valid(ttype)) in findlocks_findmutex()
2957 if (mdb_ctf_type_cmp(ttype, thread) != 0) in findlocks_findmutex()
/illumos-gate/usr/src/cmd/vgrind/
H A Dvgrindefs.src88 stjoin sub1 t times tnull tokno ttype:
/illumos-gate/usr/src/cmd/sgs/libelf/common/
H A Dxlate.m4788 Elf_Type ttype;
790 ttype = _elf32_mtype(elf, shtype, ver);
791 return ((ttype == ELF_T_BYTE) ? 0 : fmsize[ver - 1][ttype].s_filesz);
H A Dxlate64.m4840 Elf_Type ttype;
842 ttype = _elf64_mtype(elf, shtype, ver);
843 return ((ttype == ELF_T_BYTE) ? 0 : fmsize[ver - 1][ttype].s_filesz);
/illumos-gate/usr/src/uts/sun4u/cpu/
H A Dspitfire.c1246 ushort_t sdbh, sdbl, ttype, tl; in cpu_async_error() local
1282 ttype = (ushort_t)((t_afsr >> 53) & 0x1FF); in cpu_async_error()
1314 switch (ttype) { in cpu_async_error()

12