HomeSort by: relevance | last modified time | path
    Searched refs:taa (Results 1 - 19 of 19) sorted by relevancy

  /src/sys/arch/usermode/dev/
mainbus.c 74 struct thunkbus_attach_args taa; local
82 taa.taa_type = THUNKBUS_TYPE_CPU;
83 config_found(self, &taa, mainbus_print, CFARGS_NONE);
85 taa.taa_type = THUNKBUS_TYPE_TTYCONS;
86 config_found(self, &taa, mainbus_print, CFARGS_NONE);
89 taa.taa_type = THUNKBUS_TYPE_VNCFB;
90 taa.u.vnc.width = usermode_vnc_width;
91 taa.u.vnc.height = usermode_vnc_height;
92 taa.u.vnc.port = usermode_vnc_port;
93 config_found(self, &taa, mainbus_print, CFARGS_NONE)
    [all...]
clock.c 83 struct thunkbus_attach_args *taa = opaque; local
85 if (taa->taa_type != THUNKBUS_TYPE_CLOCK)
if_veth.c 91 struct thunkbus_attach_args *taa = opaque; local
93 if (taa->taa_type != THUNKBUS_TYPE_VETH)
103 struct thunkbus_attach_args *taa = opaque; local
110 sc->sc_tapfd = thunk_open_tap(taa->u.veth.device);
113 taa->u.veth.device, thunk_geterrno());
117 taa->u.veth.eaddr) != 0) {
119 taa->u.veth.eaddr);
124 aprint_normal(": Virtual Ethernet (device = %s)\n", taa->u.veth.device);
vaudio.c 134 struct thunkbus_attach_args *taa = opaque; local
136 if (taa->taa_type != THUNKBUS_TYPE_VAUDIO)
146 struct thunkbus_attach_args *taa = opaque; local
149 aprint_normal(": Virtual Audio (device = %s)\n", taa->u.vaudio.device);
155 sc->sc_audiopath = taa->u.vaudio.device;
ld_thunkbus.c 86 struct thunkbus_attach_args *taa = opaque; local
88 if (taa->taa_type != THUNKBUS_TYPE_DISKIMAGE)
99 struct thunkbus_attach_args *taa = opaque; local
100 const char *path = taa->u.diskimage.path;
vatapi.c 114 struct thunkbus_attach_args *taa = opaque; local
116 if (taa->taa_type != THUNKBUS_TYPE_VATAPI)
126 struct thunkbus_attach_args *taa = opaque; local
132 sc->sc_fd = thunk_open(taa->u.vdev.path, O_RDWR, 0);
vncfb.c 187 struct thunkbus_attach_args *taa = priv; local
189 return taa->taa_type == THUNKBUS_TYPE_VNCFB;
196 struct thunkbus_attach_args *taa = priv; local
204 sc->sc_width = taa->u.vnc.width;
205 sc->sc_height = taa->u.vnc.height;
209 sc->sc_sockfd = thunk_vnc_open_socket(taa->u.vnc.port);
222 sc->sc_width, sc->sc_height, sc->sc_depth, taa->u.vnc.port);
233 if (thunk_rfb_open(&sc->sc_rfb, taa->u.vnc.port) != 0)
cpu.c 101 struct thunkbus_attach_args *taa = opaque; local
103 if (taa->taa_type != THUNKBUS_TYPE_CPU)
ttycons.c 115 struct thunkbus_attach_args *taa = opaque; local
117 if (taa->taa_type != THUNKBUS_TYPE_TTYCONS)
  /src/sys/arch/evbarm/tsarm/
tskp.c 129 struct tspld_attach_args *taa = aux; local
132 sc->sc_iot = taa->ta_iot;
tslcd.c 139 struct tspld_attach_args *taa = aux; local
142 sc->sc_iot = taa->ta_iot;
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
statementsem.d 840 TypeAArray taa = null;
902 if (taa)
903 ec = applyAssocArray(fs, flde, taa);
1168 taa = cast(TypeAArray)tab;
1502 private static extern(D) Expression applyAssocArray(ForeachStatement fs, Expression flde, TypeAArray taa)
1512 Type ti = (isRef ? taa.index.addMod(MODFlags.const_) : taa.index);
1523 Type taav = taa.nextOf();
1557 auto keysize = taa.index.size();
opover.d 1628 TypeAArray taa = tab.isTypeAArray();
1633 p.type = taa.index; // key type
1642 p.type = taa.next; // value type
dcast.d 787 auto taa = t.toBasetype().isTypeAArray();
790 if (!(taa && typeb.ty == Taarray))
796 MATCH m = el.implicitConvTo(taa.index);
802 m = el.implicitConvTo(taa.nextOf());
2686 if (auto taa = tb.isTypeAArray())
2688 Type ti = taa.index;
2689 Type tv = taa.nextOf();
dtemplate.d 1998 TypeAArray taa = cast(TypeAArray)tb;
2001 size_t i = templateParameterLookup(taa.index, parameters);
2016 taa.index.resolve(instLoc, sco, e, t, s);
2020 taa.index.resolve(instLoc, sco, e, t, s);
3841 TypeAArray taa = cast(TypeAArray)tparam;
3842 i = templateParameterLookup(taa.index, parameters);
3850 taa.index.resolve(Loc.initial, sc, e, tx, s);
4778 TypeAArray taa = cast(TypeAArray)tparam;
4782 MATCH m1 = deduceType(key, sc, taa.index, parameters, dedtypes, wm);
4787 MATCH m2 = deduceType((*e.values)[i], sc, taa.next, parameters, dedtypes, wm)
    [all...]
dtoh.d 1717 if (auto taa = type.isTypeAArray())
1721 if (auto ti = taa.index.isTypeIdentifier())
1739 type = taa.next; // visit the element type, length is written below
expressionsem.d 523 TypeAArray taa = t.isTypeAArray();
524 key = key.implicitCastTo(sc, taa.index);
529 semanticTypeInfo(sc, taa.index);
8417 TypeAArray taa = cast(TypeAArray)t1b;
8423 if (!arrayTypeCompatibleWithoutCasting(exp.e2.type, taa.index))
8425 exp.e2 = exp.e2.implicitCastTo(sc, taa.index); // type checking
8430 semanticTypeInfo(sc, taa);
8432 exp.type = taa.next;
mtype.d 4013 if (auto taa = to.isTypeAArray())
4015 MATCH mindex = index.constConv(taa.index);
4016 MATCH mkey = next.constConv(taa.next);
parse.d 9268 AST.TypeAArray taa = cast(AST.TypeAArray)t;
9269 AST.Type index = taa.index;
9276 t = new AST.TypeSArray(taa.next, edim);

Completed in 82 milliseconds