| /src/external/bsd/am-utils/dist/conf/transp/ |
| transp_tli.c | 101 struct t_bind *treq, *tret; local 104 treq = (struct t_bind *) t_alloc(td, T_BIND, T_ADDR); 105 if (!treq) { 111 t_free((char *) treq, T_BIND); 115 memset((char *) treq->addr.buf, 0, treq->addr.len); 116 sin = (struct sockaddr_in *) treq->addr.buf; 118 treq->qlen = 64; /* 0 is ok for udp, for tcp you need qlen>0 */ 119 treq->addr.len = treq->addr.maxlen 314 struct t_bind *treq, *tret; local 474 struct t_bind *treq; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| declaration.h | 715 Type *treq; // target of return type inference member in class:FuncLiteralDeclaration
|
| dsymbolsem.d | 3022 if (fld.treq) 3024 Type treq = fld.treq; 3025 assert(treq.nextOf().ty == Tfunction); 3026 if (treq.ty == Tdelegate) 3028 else if (treq.isPtrToFunction()) 3032 funcdecl._linkage = treq.nextOf().toTypeFunction().linkage;
|
| expressionsem.d | 3996 if (exp.fd.treq) 3997 printf(" treq = %s\n", exp.fd.treq.toChars()); 4013 /* fd.treq might be incomplete type, 4016 * foo(a=>a); // in IFTI, treq == T delegate(int) 4018 //if (fd.treq) 4019 // fd.treq = fd.treq.dsymbolSemantic(loc, sc); 4024 if (exp.fd.treq && !exp.fd.type.nextOf()) 4027 if (exp.fd.treq.ty == Tdelegate || exp.fd.treq.isPtrToFunction() [all...] |
| func.d | 3671 Type treq; // target of return type inference 3693 f.treq = treq; // don't need to copy
|
| statementsem.d | 2873 else if (fld && fld.treq) 2874 rs.exp = inferType(rs.exp, fld.treq.nextOf().nextOf());
|
| dtemplate.d | 4847 e.fd.treq = tparam; 4853 e.fd.treq = null;
|
| expression.d | 3939 fd.treq = to; 3945 fd.treq = null;
|
| dcast.d | 2715 fe.fd.treq = t;
|