Searched refs:funs (Results 1 – 12 of 12) sorted by relevance
/third_party/FreeBSD/sys/dev/usb/net/ |
D | usb_ethernet.c | 179 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 = ð_drv_funs_usb; in ue_attach_post_task() [all …]
|
D | usb_eth_drv.c | 85 (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()
|
D | usb_eth_drv.h | 62 struct eth_hwr_funs *funs; member
|
/third_party/typescript/tests/baselines/reference/ |
D | correlatedUnions.js | 149 const funs: { [P in Keys]: (...args: ArgMap[P]) => void } = { 154 const fn = funs[funKey]; 309 var funs = { variable 318 var fn = funs[funKey];
|
D | correlatedUnions.types | 491 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; }
|
D | correlatedUnions.symbols | 524 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/ |
D | correlatedUnions.ts | 151 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/ |
D | conformance_testing.h | 114 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/ |
D | exec.c | 1042 tp = ktsearch(&l->funs, name, h); in findfunc() 1046 tp = ktenter(&l->funs, name, h); in findfunc()
|
D | var.c | 86 ktinit(&l->area, &l->funs, 0); in newblock() 2102 for (p = ktsort(&l->funs); (vp = *p++); ) { in c_typeset()
|
D | sh.h | 1889 struct table funs; /* local functions */ member
|
D | edit.c | 502 glob_table(pat, &w, &l->funs); in x_command_glob()
|