Home
last modified time | relevance | path

Searched refs:funs (Results 1 – 12 of 12) sorted by relevance

/third_party/FreeBSD/sys/dev/usb/net/
Dusb_ethernet.c179 drv_sc->funs = (struct eth_hwr_funs*)zalloc(sizeof(struct eth_hwr_funs)); in if_alloc()
180 if (drv_sc->funs == NULL) { in if_alloc()
201 if (drv_sc->funs) { in if_free()
202 free(drv_sc->funs); in if_free()
203 drv_sc->funs = NULL; in if_free()
308 drv_sc->funs->send = ue_start; in ue_attach_post_task()
309 drv_sc->funs->can_send = ue_can_send; in ue_attach_post_task()
310 drv_sc->funs->start = ue_init; in ue_attach_post_task()
311 drv_sc->funs->recv = ue_recv; in ue_attach_post_task()
312 drv_sc->funs->eth_drv = &eth_drv_funs_usb; in ue_attach_post_task()
[all …]
Dusb_eth_drv.c85 (drv_sc->funs->start)(sc, NULL, 0); in eth_drv_init()
155 (drv_sc->funs->recv)(sc, sg_list, sg_len); in eth_drv_recv()
172 while (!(drv_sc->funs->can_send)(sc)); in eth_drv_send()
179 (drv_sc->funs->send) (sc, sg_list, sg_len, p ? p->tot_len : 0, (UINTPTR)p); in eth_drv_send()
Dusb_eth_drv.h62 struct eth_hwr_funs *funs; member
/third_party/typescript/tests/baselines/reference/
DcorrelatedUnions.js149 const funs: { [P in Keys]: (...args: ArgMap[P]) => void } = {
154 const fn = funs[funKey];
309 var funs = { variable
318 var fn = funs[funKey];
DcorrelatedUnions.types491 const funs: { [P in Keys]: (...args: ArgMap[P]) => void } = {
492 >funs : { concat: (a: string, b: string, c: string) => void; sum: (a: number, b: number) => void; }
522 const fn = funs[funKey];
524 >funs[funKey] : { concat: (a: string, b: string, c: string) => void; sum: (a: number, b: number) =>…
525 >funs : { concat: (a: string, b: string, c: string) => void; sum: (a: number, b: number) => void; }
DcorrelatedUnions.symbols524 const funs: { [P in Keys]: (...args: ArgMap[P]) => void } = {
525 >funs : Symbol(funs, Decl(correlatedUnions.ts, 147, 9))
558 const fn = funs[funKey];
560 >funs : Symbol(funs, Decl(correlatedUnions.ts, 147, 9))
/third_party/typescript/tests/cases/compiler/
DcorrelatedUnions.ts151 const funs: { [P in Keys]: (...args: ArgMap[P]) => void } = { constant
156 const fn = funs[funKey];
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/
Dconformance_testing.h114 EquivalenceClassType<Funs...> EquivalenceClass(GeneratorType<Funs>... funs) { in EquivalenceClass() argument
115 return {std::make_tuple(absl::move(funs)...)}; in EquivalenceClass()
1225 equivalence_class(GeneratorType<Funs>... funs) && {
1228 std::make_tuple((EquivalenceClass)(absl::move(funs)...)))},
/third_party/mksh/
Dexec.c1042 tp = ktsearch(&l->funs, name, h); in findfunc()
1046 tp = ktenter(&l->funs, name, h); in findfunc()
Dvar.c86 ktinit(&l->area, &l->funs, 0); in newblock()
2102 for (p = ktsort(&l->funs); (vp = *p++); ) { in c_typeset()
Dsh.h1889 struct table funs; /* local functions */ member
Dedit.c502 glob_table(pat, &w, &l->funs); in x_command_glob()